Home | History | Annotate | Download | only in libyasm

Lines Matching refs:FACTOR

115 static N_word FACTOR;   /* = ld(BITS / 8) (ld of # of bytes)                 */
367 FACTOR = LOGBITS - 3; /* ld(BITS / 8) = ld(BITS) - ld(8) = ld(BITS) - 3 */
370 BITMASKTAB = (wordptr) yasm_xmalloc((size_t) (BITS << FACTOR));
474 bytes = (size + BIT_VECTOR_HIDDEN_WORDS) << FACTOR;
544 bytes = (newsize + BIT_VECTOR_HIDDEN_WORDS) << FACTOR;
2065 N_word factor;
2079 factor = 1;
2083 length += ++digits * factor * 6; /* 9,90,900,9000,... (9*2/3 = 6) */
2084 factor = power;
2087 if (sample > --factor)
2089 sample -= factor;
2090 factor = (N_word) ( sample / 3 );
2091 factor = (factor << 1) + (sample - (factor * 3));
2092 length += ++digits * factor;
3278 *length = size << FACTOR;
3518 bytes = size_(addr) << FACTOR;