Home
last modified time | relevance | path

Searched refs:HEXCHUNKSZ (Results 1 – 1 of 1) sorted by relevance

/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
Dlibbitmask.c113 #define HEXCHUNKSZ 32 /* hex binary format shows 32 bits per chunk */ macro
136 for (chunk = howmany(bmp->size, HEXCHUNKSZ) - 1; chunk >= 0; chunk--) { in bitmask_displayhex()
140 for (bit = HEXCHUNKSZ - 1; bit >= 0; bit--) in bitmask_displayhex()
141 val = val << 1 | _getbit(bmp, chunk * HEXCHUNKSZ + bit); in bitmask_displayhex()
253 for (bit = HEXCHUNKSZ - 1; bit >= 0; bit--) { in bitmask_parsehex()
254 unsigned int n = chunk * HEXCHUNKSZ + bit; in bitmask_parsehex()