Home
last modified time | relevance | path

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

/openbmc/u-boot/common/
H A Ddlmalloc.c661 #define BINBLOCKWIDTH 4 /* bins per block */ macro
668 #define idx2binblock(ix) ((unsigned)1 << (ix / BINBLOCKWIDTH))
1375 idx = (idx & ~(BINBLOCKWIDTH - 1)) + BINBLOCKWIDTH;
1379 idx += BINBLOCKWIDTH;
1424 } while ((++idx & (BINBLOCKWIDTH - 1)) != 0);
1430 if ((startidx & (BINBLOCKWIDTH - 1)) == 0)
1445 idx += BINBLOCKWIDTH;
H A Ddlmalloc.src1524 one-word bitvector recording whether groups of BINBLOCKWIDTH bins
1531 #define BINBLOCKWIDTH 4 /* bins per block */
1537 #define idx2binblock(ix) ((unsigned)1 << (ix / BINBLOCKWIDTH))
2229 idx = (idx & ~(BINBLOCKWIDTH - 1)) + BINBLOCKWIDTH;
2233 idx += BINBLOCKWIDTH;
2278 } while ((++idx & (BINBLOCKWIDTH - 1)) != 0);
2284 if ((startidx & (BINBLOCKWIDTH - 1)) == 0)
2299 idx += BINBLOCKWIDTH;