Lines Matching full:slices
152 XX_MallocSmartMapCheck(unsigned int start, unsigned int slices) in XX_MallocSmartMapCheck() argument
157 for (i = start; i < start + slices; i++) in XX_MallocSmartMapCheck()
164 XX_MallocSmartMapSet(unsigned int start, unsigned int slices) in XX_MallocSmartMapSet() argument
170 for (i = start; i < start + slices; i++) in XX_MallocSmartMapSet()
171 XX_MallocSmartMap[i] = ((i == start) ? slices : -1); in XX_MallocSmartMapSet()
175 XX_MallocSmartMapClear(unsigned int start, unsigned int slices) in XX_MallocSmartMapClear() argument
181 for (i = start; i < start + slices; i++) in XX_MallocSmartMapClear()
217 /* Convert alignment and size to number of slices */ in XX_MallocSmart()
243 unsigned int start, slices; in XX_FreeSmart() local
256 slices = XX_MallocSmartMap[start]; in XX_FreeSmart()
257 XX_MallocSmartMapClear(start, slices); in XX_FreeSmart()