Searched refs:pow2 (Results 1 - 4 of 4) sorted by relevance
/illumos-gate/usr/src/lib/libast/common/comp/ |
H A D | frexp.c | 41 #define pow2(i) (_pow_.f=1,_pow_.e[_ast_dbl_exp_index]+=((i)<<_ast_dbl_exp_shift),_pow_.f) 64 #define pow2(i) pow2tab[i] 90 if (g < pow2(x)) 92 else if (k == 1 && g < pow2(x+1)) 97 if (g == pow2(x)) 106 if (f > pow2(x)) 108 else if (k == 1 && f > pow2(x-1)) 113 if (f == pow2(x)) 126 f /= pow2(-x); 128 f *= pow2( [all...] |
H A D | frexpl.c | 45 #define pow2(i) (_pow_.f=1,_pow_.e[_ast_fltmax_exp_index]+=((i)<<_ast_fltmax_exp_shift),_pow_.f) 68 #define pow2(i) (pow2tab[i]) 96 if (g < pow2(x)) 98 else if (k == 1 && g < pow2(x+1)) 103 if (g == pow2(x)) 112 if (f > pow2(x)) 114 else if (k == 1 && f > pow2(x-1)) 119 if (f == pow2(x)) 132 f /= pow2(-x); 134 f *= pow2( [all...] |
/illumos-gate/usr/src/cmd/spell/ |
H A D | hash.c | 50 static long pow2[NC*2]; variable 74 for (lp = pow2; (c = *s++) != 0; ) { 91 pow2[0] = 1L<<(HASHWIDTH-CHARWIDTH-2); 93 pow2[i+1] = (pow2[i]<<LOCHWIDTH) % hashsize; 94 pow2[i+2] = (pow2[i+1]<<HICHWIDTH) % hashsize;
|
/illumos-gate/usr/src/tools/ctf/cvt/ |
H A D | ctfmerge.c | 439 tdata_t *pow1, *pow2; local 470 pow2 = fifo_remove(wq->wq_queue); 478 (void *)pow1, (void *)pow2); 479 merge_into_master(pow1, pow2, NULL, 0); 494 fifo_add(wq->wq_queue, pow2); 496 pthread_self(), (void *)pow2, fifo_len(wq->wq_queue),
|
Completed in 105 milliseconds