Searched refs:is_right (Results 1 - 4 of 4) sorted by relevance
/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitNativePPC_common.c | 1737 sljit_s32 is_right; in sljit_emit_shift_into() local 1749 is_right = (GET_OPCODE(op) == SLJIT_LSHR || GET_OPCODE(op) == SLJIT_MLSHR); in sljit_emit_shift_into() 1753 return sljit_emit_op2(compiler, (is_right ? SLJIT_ROTR : SLJIT_ROTL) | (op & SLJIT_32), src_dst, 0, src_dst, 0, src2, src2w); in sljit_emit_shift_into() 1780 if (is_right) { in sljit_emit_shift_into() 1792 if (is_right) { in sljit_emit_shift_into() 1808 FAIL_IF(push_inst(compiler, (is_right ? SRD : SLD) | S(src_dst) | A(src_dst) | B(src2))); in sljit_emit_shift_into() 1809 FAIL_IF(push_inst(compiler, (is_right ? SLDI(1) : SRDI(1)) | S(src1) | A(TMP_REG1))); in sljit_emit_shift_into() 1811 FAIL_IF(push_inst(compiler, (is_right ? SLD : SRD) | S(TMP_REG1) | A(TMP_REG1) | B(TMP_REG2))); in sljit_emit_shift_into() 1821 FAIL_IF(push_inst(compiler, (is_right ? SRW : SLW) | S(src_dst) | A(src_dst) | B(src2))); in sljit_emit_shift_into() 1822 FAIL_IF(push_inst(compiler, (is_right in sljit_emit_shift_into() [all...] |
H A D | sljitNativeS390X.c | 2938 sljit_s32 is_right; in sljit_emit_shift_into() local 2948 is_right = (GET_OPCODE(op) == SLJIT_LSHR || GET_OPCODE(op) == SLJIT_MLSHR); in sljit_emit_shift_into() 2952 return sljit_emit_op2(compiler, (is_right ? SLJIT_ROTR : SLJIT_ROTL) | (op & SLJIT_32), src_dst, 0, src_dst, 0, src2, src2w); in sljit_emit_shift_into() 2977 ins = is_right ? 0x88000000 /* srl */ : 0x89000000 /* sll */; in sljit_emit_shift_into() 2980 ins = is_right ? 0xeb000000000c /* srlg */ : 0xeb000000000d /* sllg */; in sljit_emit_shift_into() 2986 if (is_right) { in sljit_emit_shift_into() 3004 ins = is_right ? 0x88000000 /* srl */ : 0x89000000 /* sll */; in sljit_emit_shift_into() 3014 ins = is_right ? 0x89000000 /* sll */ : 0x88000000 /* srl */; in sljit_emit_shift_into() 3017 ins = is_right ? 0xeb00000000df /* sllk */ : 0xeb00000000de /* srlk */; in sljit_emit_shift_into() 3024 ins = is_right in sljit_emit_shift_into() [all...] |
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/ |
H A D | ecma-builtin-typedarray-prototype.c | 514 * And we use 'is_right' to distinguish between them. 523 bool is_right) /**< choose order, true is reduceRight */ in ecma_builtin_typedarray_prototype_reduce_with_direction() 560 uint32_t index = is_right ? (info.length - 1) : 0; in ecma_builtin_typedarray_prototype_reduce_with_direction() 570 if (is_right) in ecma_builtin_typedarray_prototype_reduce_with_direction() 623 if (is_right) in ecma_builtin_typedarray_prototype_reduce_with_direction() 520 ecma_builtin_typedarray_prototype_reduce_with_direction(ecma_value_t this_arg, ecma_value_t cb_func_val, ecma_value_t initial_val, bool is_right) ecma_builtin_typedarray_prototype_reduce_with_direction() argument
|
/third_party/rust/crates/either/src/ |
H A D | lib.rs | 174 /// assert_eq!(values[0].is_right(), false); 175 /// assert_eq!(values[1].is_right(), true); 177 pub fn is_right(&self) -> bool { in is_right() functions
|
Completed in 14 milliseconds