Searched refs:MODMASK (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbitvect.c113 static N_word MODMASK; /* = BITS - 1 (mask for calculating modulo BITS) */ variable
151 *(address+(index>>LOGBITS)) &= NOT BITMASKTAB[index AND MODMASK];
154 *(address+(index>>LOGBITS)) |= BITMASKTAB[index AND MODMASK];
157 ((*(address+(index>>LOGBITS)) AND BITMASKTAB[index AND MODMASK]) != 0)
160 (mask = BITMASKTAB[index AND MODMASK]), \
366 MODMASK = BITS - 1;
368 MSB = (LSB << MODMASK);
379 LOG10 = (N_word) (MODMASK * 0.30103); /* = (BITS - 1) * ( ln 2 / ln 10 ) */
395 if (bits AND MODMASK) size++;
403 mask = bits AND MODMASK;
[all...]

Completed in 116 milliseconds