Lines Matching refs:bbuf2
1822 #define SWAP_BBUF_NOT(bbuf1, not1, bbuf2, not2) do {\ argument
1826 tbuf = bbuf1; bbuf1 = bbuf2; bbuf2 = tbuf; \
1831 BBuf* bbuf2, int not2, BBuf** pbuf) in or_code_range_buf() argument
1838 if (IS_NULL(bbuf1) && IS_NULL(bbuf2)) { in or_code_range_buf()
1845 if (IS_NULL(bbuf2)) in or_code_range_buf()
1846 SWAP_BBUF_NOT(bbuf1, not1, bbuf2, not2); in or_code_range_buf()
1854 return bbuf_clone(pbuf, bbuf2); in or_code_range_buf()
1857 return not_code_range_buf(enc, bbuf2, pbuf); in or_code_range_buf()
1863 SWAP_BBUF_NOT(bbuf1, not1, bbuf2, not2); in or_code_range_buf()
1870 r = bbuf_clone(pbuf, bbuf2); in or_code_range_buf()
1873 r = not_code_range_buf(enc, bbuf2, pbuf); in or_code_range_buf()
1927 and_code_range_buf(BBuf* bbuf1, int not1, BBuf* bbuf2, int not2, BBuf** pbuf) in and_code_range_buf() argument
1935 if (not1 != 0 && IS_NOT_NULL(bbuf2)) /* not1 != 0 -> not2 == 0 */ in and_code_range_buf()
1936 return bbuf_clone(pbuf, bbuf2); in and_code_range_buf()
1939 else if (IS_NULL(bbuf2)) { in and_code_range_buf()
1946 SWAP_BBUF_NOT(bbuf1, not1, bbuf2, not2); in and_code_range_buf()
1949 data2 = (OnigCodePoint* )(bbuf2->p); in and_code_range_buf()