/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | gen_overlay_widgets.py | 200 is_left = coord >= 0 201 return coord, is_left 205 is_left = coord_split[1] == smaller_coord_side 209 other_widget_coord_index = axis + (0 if is_left else 2) 212 return offset, is_left == is_align
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | arg.h | 143 bool is_left = conv.has_left_flag(); in FormatConvertImpl() local 157 if (space_remaining > 0 && !is_left) sink->Append(space_remaining, ' '); in FormatConvertImpl() 172 if (space_remaining > 0 && is_left) sink->Append(space_remaining, ' '); in FormatConvertImpl()
|
/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitNativeARM_64.c | 1488 sljit_s32 is_left; in sljit_emit_shift_into() local 1494 is_left = (GET_OPCODE(op) == SLJIT_SHL || GET_OPCODE(op) == SLJIT_MSHL); in sljit_emit_shift_into() 1498 return sljit_emit_op2(compiler, (is_left ? SLJIT_ROTL : SLJIT_ROTR) | (op & SLJIT_32), src_dst, 0, src_dst, 0, src2, src2w); in sljit_emit_shift_into() 1526 if (is_left) in sljit_emit_shift_into() 1530 | RN(is_left ? src_dst : src1) | RM(is_left ? src1 : src_dst) | ((sljit_ins)src2w << 10)); in sljit_emit_shift_into() 1533 FAIL_IF(push_inst(compiler, ((is_left ? LSLV : LSRV) ^ inv_bits) | RD(src_dst) | RN(src_dst) | RM(src2))); in sljit_emit_shift_into() 1537 if (is_left) in sljit_emit_shift_into() 1552 FAIL_IF(push_inst(compiler, ((is_left ? LSRV : LSLV) ^ inv_bits) | RD(TMP_REG1) | RN(src1) | RM(TMP_REG2))); in sljit_emit_shift_into()
|
H A D | sljitNativeARM_T2_32.c | 1823 sljit_s32 is_left; in sljit_emit_shift_into() local 1829 is_left = (op == SLJIT_SHL || op == SLJIT_MSHL); in sljit_emit_shift_into() 1833 return sljit_emit_op2(compiler, is_left ? SLJIT_ROTL : SLJIT_ROTR, src_dst, 0, src_dst, 0, src2, src2w); in sljit_emit_shift_into() 1859 FAIL_IF(push_inst16(compiler, (is_left ? LSLSI : LSRSI) | RD3(src_dst) | RN3(src_dst) | ((sljit_ins)src2w << 6))); in sljit_emit_shift_into() 1861 FAIL_IF(push_inst32(compiler, (is_left ? LSL_WI : LSR_WI) | RD4(src_dst) | RM4(src_dst) | IMM5(src2w))); in sljit_emit_shift_into() 1864 return push_inst32(compiler, ORR_W | RD4(src_dst) | RN4(src_dst) | RM4(src1) | (is_left ? 0x10 : 0x0) | IMM5(src2w)); in sljit_emit_shift_into() 1873 FAIL_IF(push_inst16(compiler, (is_left ? LSLS : LSRS) | RD3(src_dst) | RN3(src2))); in sljit_emit_shift_into() 1875 FAIL_IF(push_inst32(compiler, (is_left ? LSL_W : LSR_W) | RD4(src_dst) | RN4(src_dst) | RM4(src2))); in sljit_emit_shift_into() 1877 FAIL_IF(push_inst32(compiler, (is_left ? LSR_WI : LSL_WI) | RD4(TMP_REG1) | RM4(src1) | (1 << 6))); in sljit_emit_shift_into() 1879 FAIL_IF(push_inst32(compiler, (is_left in sljit_emit_shift_into() [all...] |
H A D | sljitNativeARM_32.c | 2233 sljit_s32 is_left; in sljit_emit_shift_into() local 2239 is_left = (op == SLJIT_SHL || op == SLJIT_MSHL); in sljit_emit_shift_into() 2243 return sljit_emit_op2(compiler, is_left ? SLJIT_ROTL : SLJIT_ROTR, src_dst, 0, src_dst, 0, src2, src2w); in sljit_emit_shift_into() 2269 FAIL_IF(push_inst(compiler, MOV | RD(src_dst) | RM(src_dst) | ((sljit_uw)(is_left ? 0 : 1) << 5) | ((sljit_uw)src2w << 7))); in sljit_emit_shift_into() 2271 return push_inst(compiler, ORR | RD(src_dst) | RN(src_dst) | RM(src1) | ((sljit_uw)(is_left ? 1 : 0) << 5) | ((sljit_uw)src2w << 7)); in sljit_emit_shift_into() 2279 FAIL_IF(push_inst(compiler, MOV | RD(src_dst) | RM8(src2) | ((sljit_uw)(is_left ? 0 : 1) << 5) | 0x10 | RM(src_dst))); in sljit_emit_shift_into() 2280 FAIL_IF(push_inst(compiler, MOV | RD(TMP_REG1) | RM(src1) | ((sljit_uw)(is_left ? 1 : 0) << 5) | (1 << 7))); in sljit_emit_shift_into() 2282 return push_inst(compiler, ORR | RD(src_dst) | RN(src_dst) | RM(TMP_REG1) | ((sljit_uw)(is_left ? 1 : 0) << 5) | 0x10 | RM8(TMP_REG2)); in sljit_emit_shift_into()
|
H A D | sljitNativeX86_common.c | 2522 sljit_s32 is_rotate, is_left; local 2554 is_left = (GET_OPCODE(op) == SLJIT_SHL || GET_OPCODE(op) == SLJIT_MSHL); 2560 return emit_shift(compiler, is_left ? ROL : ROR, src_dst, dstw, src1, src1w, src2, src2w); 2610 inst[1] = U8((is_left ? SHLD : SHRD) - 1); 2618 inst[1] = U8(is_left ? SHLD : SHRD);
|
H A D | sljitNativeRISCV_common.c | 1838 sljit_s32 is_left; in sljit_emit_shift_into() local 1854 is_left = (GET_OPCODE(op) == SLJIT_SHL || GET_OPCODE(op) == SLJIT_MSHL); in sljit_emit_shift_into() 1858 return sljit_emit_op2(compiler, (is_left ? SLJIT_ROTL : SLJIT_ROTR) | (op & SLJIT_32), src_dst, 0, src_dst, 0, src2, src2w); in sljit_emit_shift_into() 1883 if (is_left) { in sljit_emit_shift_into() 1898 if (is_left) { in sljit_emit_shift_into()
|
H A D | sljitNativeMIPS_common.c | 2406 sljit_s32 is_left; in sljit_emit_shift_into() local 2419 is_left = (GET_OPCODE(op) == SLJIT_SHL || GET_OPCODE(op) == SLJIT_MSHL); in sljit_emit_shift_into() 2423 return sljit_emit_op2(compiler, (is_left ? SLJIT_ROTL : SLJIT_ROTR) | (op & SLJIT_32), src_dst, 0, src_dst, 0, src2, src2w); in sljit_emit_shift_into() 2448 if (is_left) { in sljit_emit_shift_into() 2463 if (is_left) { in sljit_emit_shift_into()
|
/third_party/rust/crates/either/src/ |
H A D | lib.rs | 158 /// assert_eq!(values[0].is_left(), true); 159 /// assert_eq!(values[1].is_left(), false); 161 pub fn is_left(&self) -> bool { in is_left() functions 178 !self.is_left() in is_right()
|