Symbol: rf_make_2d_array
sys/dev/raidframe/rf_chaindecluster.c
79
info->stripeIdentifier = rf_make_2d_array(raidPtr->numCol, 2, raidPtr->cleanupList);
sys/dev/raidframe/rf_decluster.c
235
info->LayoutTable = rf_make_2d_array(b, k, raidPtr->cleanupList);
sys/dev/raidframe/rf_decluster.c
238
info->OffsetTable = rf_make_2d_array(b, k, raidPtr->cleanupList);
sys/dev/raidframe/rf_decluster.c
241
info->BlockTable = rf_make_2d_array(info->TableDepthInPUs * layoutPtr->SUsPerPU, raidPtr->numCol, raidPtr->cleanupList);
sys/dev/raidframe/rf_declusterPQ.c
213
info->LayoutTable = rf_make_2d_array(b, k, raidPtr->cleanupList);
sys/dev/raidframe/rf_declusterPQ.c
216
info->OffsetTable = rf_make_2d_array(b, k, raidPtr->cleanupList);
sys/dev/raidframe/rf_declusterPQ.c
219
info->BlockTable = rf_make_2d_array(info->TableDepthInPUs * layoutPtr->SUsPerPU, raidPtr->numCol, raidPtr->cleanupList);
sys/dev/raidframe/rf_evenodd.c
80
info->stripeIdentifier = rf_make_2d_array(raidPtr->numCol, raidPtr->numCol, raidPtr->cleanupList);
sys/dev/raidframe/rf_interdecluster.c
83
info->stripeIdentifier = rf_make_2d_array(SUs_per_region, 2, raidPtr->cleanupList);
sys/dev/raidframe/rf_paritylogging.c
107
info->stripeIdentifier = rf_make_2d_array((raidPtr->numCol),
sys/dev/raidframe/rf_raid1.c
80
info->stripeIdentifier = rf_make_2d_array(raidPtr->numCol / 2, 2, raidPtr->cleanupList);
sys/dev/raidframe/rf_raid5.c
73
info->stripeIdentifier = rf_make_2d_array(raidPtr->numCol, raidPtr->numCol, raidPtr->cleanupList);
sys/dev/raidframe/rf_raid5_rotatedspare.c
76
info->stripeIdentifier = rf_make_2d_array(raidPtr->numCol, raidPtr->numCol, raidPtr->cleanupList);
sys/dev/raidframe/rf_utils.h
45
RF_RowCol_t **rf_make_2d_array(int b, int k, RF_AllocListElem_t * allocList);