Searched refs:pow2 (Results 1 – 6 of 6) sorted by relevance
/titanic_50/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(x); [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(x); [all …]
|
/titanic_50/usr/src/cmd/spell/ |
H A D | hash.c | 50 static long pow2[NC*2]; variable 74 for (lp = pow2; (c = *s++) != 0; ) { in hash() 91 pow2[0] = 1L<<(HASHWIDTH-CHARWIDTH-2); in hashinit() 93 pow2[i+1] = (pow2[i]<<LOCHWIDTH) % hashsize; in hashinit() 94 pow2[i+2] = (pow2[i+1]<<HICHWIDTH) % hashsize; in hashinit()
|
/titanic_50/usr/src/tools/ctf/cvt/ |
H A D | ctfmerge.c | 439 tdata_t *pow1, *pow2; in worker_runphase2() local 470 pow2 = fifo_remove(wq->wq_queue); in worker_runphase2() 478 (void *)pow1, (void *)pow2); in worker_runphase2() 479 merge_into_master(pow1, pow2, NULL, 0); in worker_runphase2() 494 fifo_add(wq->wq_queue, pow2); in worker_runphase2() 496 pthread_self(), (void *)pow2, fifo_len(wq->wq_queue), in worker_runphase2()
|
/titanic_50/usr/src/psm/stand/bootblks/zfs/common/ |
H A D | zfs.fth | 104 : pow2 ( n -- 2**n ) 1 swap lshift ; 110 d# 16 mbits - pow2 1- constant mmask 139 0 7 pow2 2swap ( map mask dend dst r: src ) 144 dup 8 pow2 = if 758 : dn-indsize ( dn -- indsize ) dn_indblkshift pow2 ;
|
/titanic_50/usr/src/lib/libast/common/ |
H A D | RELEASE | 643 features/float,comp/frexp.c,comp/frexpl.c: add pow2() table alternative
|