Home
last modified time | relevance | path

Searched refs:BC_LONG_BIT (Results 1 – 7 of 7) sorted by relevance

/external/bc/include/
Dbcl.h61 #ifndef BC_LONG_BIT
62 #define BC_LONG_BIT LONG_BIT macro
65 #if BC_LONG_BIT > LONG_BIT
66 #error BC_LONG_BIT cannot be greater than LONG_BIT
69 #if BC_LONG_BIT >= 64
74 #elif BC_LONG_BIT >= 32
81 #error BC_LONG_BIT must be at least 32
Dnum.h60 #if BC_LONG_BIT >= 64
71 #elif BC_LONG_BIT >= 32
84 #error BC_LONG_BIT must be at least 32
Drand.h57 #if BC_LONG_BIT >= 64
/external/bc/src/
Drand.c217 r->inc.hi |= (r->inc.lo & (1UL << (BC_LONG_BIT - 1))) >> (BC_LONG_BIT - 1); in bc_rand_setInc()
225 *state = ((BcRandState) val1) | ((BcRandState) val2) << (BC_LONG_BIT); in bc_rand_seedState()
377 res.lo |= (res.hi & 1) << (BC_LONG_BIT - 1); in bc_rand_getInc()
Ddata.c951 #if BC_LONG_BIT >= 64
Dbc_parse.c1084 bc_vm_printf("BC_LONG_BIT = %lu\n", (ulong) BC_LONG_BIT); in bc_parse_stmt()
/external/bc/
DMakefile.in138 BC_LONG_BIT = %%LONG_BIT%%