Searched refs:bs (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_3/Zend/ |
| H A D | zend_strtod.c | 2053 Bigint *bb, *bb1, *bd, *bd0, *bs, *delta, *tmp; local 2324 bs = i2b(1); 2363 bs = pow5mult(bs, bb5); 2364 bb1 = mult(bs, bb); 2375 bs = lshift(bs, bs2); 2379 i = cmp(delta, bs); 2387 if (cmp(delta, bs) > 0) 2447 if ((aadj = ratio(delta, bs)) < [all...] |
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 63201 } bs; member in union:vdbeExecUnion [all...] |
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 99 bitset_is_empty(BitSetRef bs) argument 103 if (bs[i] != 0) return 0; 110 bitset_on_num(BitSetRef bs) argument 116 if (BITSET_AT(bs, i)) n++; 267 add_bitset(regex_t* reg, BitSetRef bs) argument 269 BBUF_ADD(reg, bs, SIZE_BITSET); 570 if (ONIGENC_MBC_MINLEN(reg->enc) > 1 || bitset_is_empty(cc->bs)) { 603 r = add_bitset(reg, cc->bs); 606 if (ONIGENC_MBC_MINLEN(reg->enc) > 1 || bitset_is_empty(cc->bs)) { 620 r = add_bitset(reg, cc->bs); [all...] |
| H A D | regerror.c | 316 UChar bs[6]; local 349 sprintf((char* )bs, "\\%03o", *p++ & 0377); 350 blen = onigenc_str_bytelen_null(ONIG_ENCODING_ASCII, bs); 351 bp = bs; 358 sprintf((char* )bs, "\\%03o", *p++ & 0377); 359 len = onigenc_str_bytelen_null(ONIG_ENCODING_ASCII, bs); 360 bp = bs;
|
| H A D | regexec.c | 1388 found = (BITSET_AT(cc->bs, code) == 0 ? 0 : 1);
|
| H A D | regint.h | 437 #define BITSET_CLEAR(bs) do {\ 439 for (i = 0; i < BITSET_SIZE; i++) { (bs)[i] = 0; }\ 442 #define BS_ROOM(bs,pos) (bs)[pos / BITS_IN_ROOM] 445 #define BITSET_AT(bs, pos) (BS_ROOM(bs,pos) & BS_BIT(pos)) 446 #define BITSET_SET_BIT(bs, pos) BS_ROOM(bs,pos) |= BS_BIT(pos) 447 #define BITSET_CLEAR_BIT(bs, pos) BS_ROOM(bs,po 797 BitSet bs; member in struct:__anon223 [all...] |
| H A D | regparse.c | 139 #define BITSET_IS_EMPTY(bs,empty) do {\ 143 if ((bs)[i] != 0) {\ 150 bitset_set_range(BitSetRef bs, int from, int to) argument 154 BITSET_SET_BIT(bs, i); 160 bitset_set_all(BitSetRef bs) 164 bs[i] = ~((Bits )0); 170 bitset_invert(BitSetRef bs) argument 174 bs[i] = ~(bs[i]); 188 bitset_and(BitSetRef dest, BitSetRef bs) argument 197 bitset_or(BitSetRef dest, BitSetRef bs) argument 206 bitset_copy(BitSetRef dest, BitSetRef bs) argument 5027 BitSetRef bs = cc->bs; local [all...] |
| H A D | regparse.h | 116 BitSet bs;
|
Completed in 181 milliseconds