bit               632 Zend/zend_alloc.c static zend_always_inline int zend_mm_bitset_is_set(zend_mm_bitset *bitset, int bit)
bit               634 Zend/zend_alloc.c 	return (bitset[bit / ZEND_MM_BITSET_LEN] & (Z_L(1) << (bit & (ZEND_MM_BITSET_LEN-1)))) != 0;
bit               637 Zend/zend_alloc.c static zend_always_inline void zend_mm_bitset_set_bit(zend_mm_bitset *bitset, int bit)
bit               639 Zend/zend_alloc.c 	bitset[bit / ZEND_MM_BITSET_LEN] |= (Z_L(1) << (bit & (ZEND_MM_BITSET_LEN-1)));
bit               642 Zend/zend_alloc.c static zend_always_inline void zend_mm_bitset_reset_bit(zend_mm_bitset *bitset, int bit)
bit               644 Zend/zend_alloc.c 	bitset[bit / ZEND_MM_BITSET_LEN] &= ~(Z_L(1) << (bit & (ZEND_MM_BITSET_LEN-1)));
bit               654 Zend/zend_alloc.c 		int bit = start & (ZEND_MM_BITSET_LEN - 1);
bit               659 Zend/zend_alloc.c 			tmp = (zend_mm_bitset)-1 << bit;
bit               672 Zend/zend_alloc.c 			tmp = (zend_mm_bitset)-1 << bit;
bit               686 Zend/zend_alloc.c 		int bit = start & (ZEND_MM_BITSET_LEN - 1);
bit               691 Zend/zend_alloc.c 			tmp = ~((Z_L(1) << bit) - 1);
bit               704 Zend/zend_alloc.c 			tmp = (zend_mm_bitset)-1 << bit;
bit               718 Zend/zend_alloc.c 		int bit = start & (ZEND_MM_BITSET_LEN - 1);
bit               723 Zend/zend_alloc.c 			tmp = (zend_mm_bitset)-1 << bit;
bit               740 Zend/zend_alloc.c 			tmp = (zend_mm_bitset)-1 << bit;
bit                45 ext/gd/libgd/gd_gif_in.c #define BitSet(byte, bit)      (((byte) & (bit)) == (bit))
bit                45 ext/gd/libgd/xbm.c 	int bit, x = 0, y = 0;
bit               139 ext/gd/libgd/xbm.c 		for (bit = 1; bit <= max_bit; bit = bit << 1) {
bit               140 ext/gd/libgd/xbm.c 			gdImageSetPixel(im, x++, y, (b & bit) ? 1 : 0);
bit              1519 ext/mysqlnd/mysqlnd_wireprotocol.c 	zend_uchar *null_ptr, bit;
bit              1534 ext/mysqlnd/mysqlnd_wireprotocol.c 	bit	= 4;					/* first 2 bits are reserved */
bit              1544 ext/mysqlnd/mysqlnd_wireprotocol.c 		if (*null_ptr & bit) {
bit              1590 ext/mysqlnd/mysqlnd_wireprotocol.c 		if (!((bit<<=1) & 255)) {
bit              1591 ext/mysqlnd/mysqlnd_wireprotocol.c 			bit = 1;	/* to the following byte */
bit              2414 ext/pcre/pcrelib/pcre_jit_compile.c unsigned int c, oc, bit;
bit              2446 ext/pcre/pcrelib/pcre_jit_compile.c bit = c ^ oc;
bit              2448 ext/pcre/pcrelib/pcre_jit_compile.c if (c <= 127 && bit == 0x20)
bit              2452 ext/pcre/pcrelib/pcre_jit_compile.c if (!is_powerof2(bit))
bit              2461 ext/pcre/pcrelib/pcre_jit_compile.c   while ((bit & 0x3f) == 0)
bit              2464 ext/pcre/pcrelib/pcre_jit_compile.c     bit >>= 6;
bit              2466 ext/pcre/pcrelib/pcre_jit_compile.c   return (n << 8) | bit;
bit              2469 ext/pcre/pcrelib/pcre_jit_compile.c return (0 << 8) | bit;
bit              2476 ext/pcre/pcrelib/pcre_jit_compile.c   if (bit >= (1 << 10))
bit              2477 ext/pcre/pcrelib/pcre_jit_compile.c     bit >>= 10;
bit              2479 ext/pcre/pcrelib/pcre_jit_compile.c     return (bit < 256) ? ((2 << 8) | bit) : ((3 << 8) | (bit >> 8));
bit              2482 ext/pcre/pcrelib/pcre_jit_compile.c return (bit < 256) ? ((0 << 8) | bit) : ((1 << 8) | (bit >> 8));
bit              3823 ext/pcre/pcrelib/pcre_jit_compile.c pcre_uchar oc, bit;
bit              3849 ext/pcre/pcrelib/pcre_jit_compile.c   bit = first_char ^ oc;
bit              3850 ext/pcre/pcrelib/pcre_jit_compile.c   if (is_powerof2(bit))
bit              3852 ext/pcre/pcrelib/pcre_jit_compile.c     OP2(SLJIT_OR, TMP2, 0, TMP1, 0, SLJIT_IMM, bit);
bit              3853 ext/pcre/pcrelib/pcre_jit_compile.c     found = CMP(SLJIT_EQUAL, TMP2, 0, SLJIT_IMM, first_char | bit);
bit              4050 ext/pcre/pcrelib/pcre_jit_compile.c pcre_uint32 oc, bit;
bit              4080 ext/pcre/pcrelib/pcre_jit_compile.c   bit = req_char ^ oc;
bit              4081 ext/pcre/pcrelib/pcre_jit_compile.c   if (is_powerof2(bit))
bit              4083 ext/pcre/pcrelib/pcre_jit_compile.c     OP2(SLJIT_OR, TMP2, 0, TMP2, 0, SLJIT_IMM, bit);
bit              4084 ext/pcre/pcrelib/pcre_jit_compile.c     found = CMP(SLJIT_EQUAL, TMP2, 0, SLJIT_IMM, req_char | bit);
bit              4252 ext/pcre/pcrelib/pcre_jit_compile.c pcre_uint8 bit, cbit, all;
bit              4255 ext/pcre/pcrelib/pcre_jit_compile.c bit = bits[0] & 0x1;
bit              4257 ext/pcre/pcrelib/pcre_jit_compile.c all = -bit;
bit              4267 ext/pcre/pcrelib/pcre_jit_compile.c     if (cbit != bit)
bit              4273 ext/pcre/pcrelib/pcre_jit_compile.c       bit = cbit;
bit              4280 ext/pcre/pcrelib/pcre_jit_compile.c if (((bit == 0) && nclass) || ((bit == 1) && !nclass))
bit              4291 ext/pcre/pcrelib/pcre_jit_compile.c bit = bits[0] & 0x1;
bit              4292 ext/pcre/pcrelib/pcre_jit_compile.c if (invert) bit ^= 0x1;
bit              4295 ext/pcre/pcrelib/pcre_jit_compile.c if (length == 0 && bit == 0)
bit              4305 ext/pcre/pcrelib/pcre_jit_compile.c   add_jump(compiler, backtracks, CMP(bit == 0 ? SLJIT_LESS : SLJIT_GREATER_EQUAL, TMP1, 0, SLJIT_IMM, ranges[0]));
bit              4312 ext/pcre/pcrelib/pcre_jit_compile.c     add_jump(compiler, backtracks, CMP(bit != 0 ? SLJIT_LESS : SLJIT_GREATER_EQUAL, TMP1, 0, SLJIT_IMM, ranges[1] - ranges[0]));
bit              4315 ext/pcre/pcrelib/pcre_jit_compile.c     add_jump(compiler, backtracks, CMP(bit != 0 ? SLJIT_EQUAL : SLJIT_NOT_EQUAL, TMP1, 0, SLJIT_IMM, ranges[0]));
bit              4319 ext/pcre/pcrelib/pcre_jit_compile.c   if (bit != 0)
bit              4353 ext/pcre/pcrelib/pcre_jit_compile.c       add_jump(compiler, backtracks, CMP(bit != 0 ? SLJIT_LESS : SLJIT_GREATER_EQUAL, TMP1, 0, SLJIT_IMM, ranges[3] - ranges[2]));
bit              4356 ext/pcre/pcrelib/pcre_jit_compile.c       add_jump(compiler, backtracks, CMP(bit != 0 ? SLJIT_EQUAL : SLJIT_NOT_EQUAL, TMP1, 0, SLJIT_IMM, ranges[2]));
bit              4360 ext/pcre/pcrelib/pcre_jit_compile.c   if (bit != 0)
bit              5289 ext/pcre/pcrelib/pcre_jit_compile.c unsigned int c, oc, bit;
bit              5702 ext/pcre/pcrelib/pcre_jit_compile.c   bit = c ^ oc;
bit              5703 ext/pcre/pcrelib/pcre_jit_compile.c   if (is_powerof2(bit))
bit              5705 ext/pcre/pcrelib/pcre_jit_compile.c     OP2(SLJIT_OR, TMP1, 0, TMP1, 0, SLJIT_IMM, bit);
bit              5706 ext/pcre/pcrelib/pcre_jit_compile.c     add_jump(compiler, backtracks, CMP(SLJIT_NOT_EQUAL, TMP1, 0, SLJIT_IMM, c | bit));
bit              5761 ext/pcre/pcrelib/pcre_jit_compile.c     bit = c ^ oc;
bit              5762 ext/pcre/pcrelib/pcre_jit_compile.c     if (is_powerof2(bit))
bit              5764 ext/pcre/pcrelib/pcre_jit_compile.c       OP2(SLJIT_OR, TMP1, 0, TMP1, 0, SLJIT_IMM, bit);
bit              5765 ext/pcre/pcrelib/pcre_jit_compile.c       add_jump(compiler, backtracks, CMP(SLJIT_EQUAL, TMP1, 0, SLJIT_IMM, c | bit));
bit              5780 ext/pcre/pcrelib/pcre_jit_compile.c   bit = (common->utf && is_char7_bitset((const pcre_uint8 *)cc, type == OP_NCLASS)) ? 127 : 255;
bit              5781 ext/pcre/pcrelib/pcre_jit_compile.c   read_char_range(common, 0, bit, type == OP_NCLASS);
bit              5793 ext/pcre/pcrelib/pcre_jit_compile.c     jump[0] = CMP(SLJIT_GREATER, TMP1, 0, SLJIT_IMM, bit);
bit              2207 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c #define GET_CR_BIT(bit, dst) \
bit              2209 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c 	FAIL_IF(push_inst(compiler, RLWINM | S(dst) | A(dst) | ((1 + (bit)) << 11) | (31 << 6) | (31 << 1)));