/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitNativeRISCV_32.c | 46 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value, sljit_ins last_ins) in emit_const() argument 48 if ((init_value & 0x800) != 0) in emit_const() 49 init_value += 0x1000; in emit_const() 51 FAIL_IF(push_inst(compiler, LUI | RD(dst) | (sljit_ins)(init_value & ~0xfff))); in emit_const() 52 return push_inst(compiler, last_ins | RS1(dst) | IMM_I(init_value)); in emit_const()
|
H A D | sljitNativeRISCV_64.c | 129 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value, sljit_ins last_ins) in emit_const() argument 133 if ((init_value & 0x800) != 0) in emit_const() 134 init_value += 0x1000; in emit_const() 136 high = init_value >> 32; in emit_const() 138 if ((init_value & 0x80000000l) != 0) in emit_const() 146 FAIL_IF(push_inst(compiler, LUI | RD(dst) | (sljit_ins)(init_value & ~0xfff))); in emit_const() 149 return push_inst(compiler, last_ins | RS1(dst) | IMM_I(init_value)); in emit_const()
|
H A D | sljitNativeMIPS_64.c | 121 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value) in emit_const() argument 123 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 48), DR(dst))); in emit_const() 124 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 32), DR(dst))); in emit_const() 126 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 16), DR(dst))); in emit_const() 128 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst)); in emit_const()
|
H A D | sljitNativePPC_64.c | 557 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value) in emit_const() argument 559 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 48))); in emit_const() 560 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value >> 32))); in emit_const() 562 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | IMM(init_value >> 16))); in emit_const() 563 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value)); in emit_const()
|
H A D | sljitNativeMIPS_32.c | 41 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value) in emit_const() argument 43 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 16), DR(dst))); in emit_const() 44 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst)); in emit_const()
|
H A D | sljitNativePPC_32.c | 322 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value) in emit_const() argument 324 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 16))); in emit_const() 325 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value)); in emit_const()
|
H A D | sljitNativeS390X.c | 134 sljit_sw init_value; /* required to build literal pool */ member 1562 *(pool_ptr++) = (sljit_uw)const_->init_value; in sljit_generate_code() 3665 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 3671 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 3677 const_->init_value = init_value; in sljit_emit_const()
|
H A D | sljitNativeX86_common.c | 3310 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) argument 3319 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); 3332 if (emit_load_imm64(compiler, reg, init_value)) 3335 if (emit_mov(compiler, dst, dstw, SLJIT_IMM, init_value))
|
H A D | sljitLir.h | 1643 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value);
|
H A D | sljitNativePPC_common.c | 2799 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 2805 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 2813 PTR_FAIL_IF(emit_const(compiler, dst_r, init_value)); in sljit_emit_const()
|
H A D | sljitLir.c | 2250 static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in check_sljit_emit_const() argument 2252 SLJIT_UNUSED_ARG(init_value); in check_sljit_emit_const() 2261 fprintf(compiler->verbose, ", #%" SLJIT_PRINT_D "d\n", init_value); in check_sljit_emit_const()
|
H A D | sljitNativeARM_64.c | 2351 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 2357 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 2365 PTR_FAIL_IF(emit_imm64_const(compiler, dst_r, (sljit_uw)init_value)); in sljit_emit_const()
|
H A D | sljitNativeARM_32.c | 3637 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 3643 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 3650 EMIT_DATA_TRANSFER(WORD_SIZE | LOAD_DATA, 1, dst_r, TMP_PC, 0), (sljit_uw)init_value)); in sljit_emit_const() 3653 PTR_FAIL_IF(emit_imm(compiler, dst_r, init_value)); in sljit_emit_const()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | loop_descriptor.cpp | 723 int64_t init_value = 0; in FindNumberOfIterations() local 724 if (!GetInductionInitValue(induction, &init_value)) return false; in FindNumberOfIterations() 728 init_value, step_value); in FindNumberOfIterations() 745 *init_value_out = init_value; in FindNumberOfIterations() 753 // |condition| and uses the |condition_value| and |init_value|. If diff / 756 int64_t init_value, int64_t step_value) const { in GetIterations() 763 if (!(init_value < condition_value)) return 0; in GetIterations() 765 diff = condition_value - init_value; in GetIterations() 779 if (!(init_value > condition_value)) return 0; in GetIterations() 781 diff = init_value in GetIterations() 755 GetIterations(SpvOp condition, int64_t condition_value, int64_t init_value, int64_t step_value) const GetIterations() argument [all...] |
H A D | loop_descriptor.h | 247 // |init_value|. 251 int64_t* init_value = nullptr) const; 399 // iterations using the |condition_value|, |init_value|, and |step_values| of 403 int64_t init_value, int64_t step_value) const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | loop_descriptor.cpp | 723 int64_t init_value = 0; in FindNumberOfIterations() local 724 if (!GetInductionInitValue(induction, &init_value)) return false; in FindNumberOfIterations() 728 init_value, step_value); in FindNumberOfIterations() 745 *init_value_out = init_value; in FindNumberOfIterations() 753 // |condition| and uses the |condition_value| and |init_value|. If diff / 756 int64_t init_value, int64_t step_value) const { in GetIterations() 763 if (!(init_value < condition_value)) return 0; in GetIterations() 765 diff = condition_value - init_value; in GetIterations() 779 if (!(init_value > condition_value)) return 0; in GetIterations() 781 diff = init_value in GetIterations() 755 GetIterations(SpvOp condition, int64_t condition_value, int64_t init_value, int64_t step_value) const GetIterations() argument [all...] |
H A D | loop_descriptor.h | 247 // |init_value|. 251 int64_t* init_value = nullptr) const; 399 // iterations using the |condition_value|, |init_value|, and |step_values| of 403 int64_t init_value, int64_t step_value) const;
|
/third_party/spirv-tools/source/opt/ |
H A D | loop_descriptor.cpp | 717 int64_t init_value = 0; in FindNumberOfIterations() local 718 if (!GetInductionInitValue(induction, &init_value)) return false; in FindNumberOfIterations() 722 init_value, step_value); in FindNumberOfIterations() 739 *init_value_out = init_value; in FindNumberOfIterations() 747 // |condition| and uses the |condition_value| and |init_value|. If diff / 750 int64_t init_value, int64_t step_value) const { in GetIterations() 761 if (!(init_value < condition_value)) return 0; in GetIterations() 763 diff = condition_value - init_value; in GetIterations() 777 if (!(init_value > condition_value)) return 0; in GetIterations() 779 diff = init_value in GetIterations() 749 GetIterations(spv::Op condition, int64_t condition_value, int64_t init_value, int64_t step_value) const GetIterations() argument [all...] |
H A D | loop_descriptor.h | 247 // |init_value|. 251 int64_t* init_value = nullptr) const; 399 // iterations using the |condition_value|, |init_value|, and |step_values| of 404 int64_t init_value, int64_t step_value) const;
|
/third_party/node/deps/v8/src/compiler/ |
H A D | loop-variable-optimizer.h | 26 Node* init_value() const { return init_value_; } in init_value() function in v8::internal::compiler::InductionVariable 47 Node* init_value, Zone* zone, ArithmeticType arithmeticType) in InductionVariable() 52 init_value_(init_value), in InductionVariable() 46 InductionVariable(Node* phi, Node* effect_phi, Node* arith, Node* increment, Node* init_value, Zone* zone, ArithmeticType arithmeticType) InductionVariable() argument
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-iter.hh | 488 hb_reduce_t (Redu r, InitT init_value) : r (r), init_value (init_value) {} in hb_reduce_t() 496 AccuT value = init_value; in operator ()() 504 InitT init_value; member 510 operator () (Redu&& r, InitT init_value) const in operator ()() 511 { return hb_reduce_t<Redu, InitT> (r, init_value); } in operator ()()
|
/third_party/ffmpeg/libavcodec/ |
H A D | hevc_cabac.c | 496 int init_value = init_values[init_type][i]; in cabac_init_state() local 497 int m = (init_value >> 4) * 5 - 45; in cabac_init_state() 498 int n = ((init_value & 15) << 3) - 16; in cabac_init_state()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-js.cc | 1985 // WebAssembly.Table.grow(num, init_value = null) -> num 1999 i::Handle<i::Object> init_value; in WebAssemblyTableGrow() local 2002 init_value = Utils::OpenHandle(*args[1]); in WebAssemblyTableGrow() 2003 if (!i::WasmTableObject::IsValidElement(i_isolate, receiver, init_value)) { in WebAssemblyTableGrow() 2008 init_value = DefaultReferenceValue(i_isolate, receiver->type()); in WebAssemblyTableGrow() 2014 if (has_function_type && !init_value->IsNull()) { in WebAssemblyTableGrow() 2015 init_value = i::WasmInternalFunction::FromExternal(init_value, i_isolate) in WebAssemblyTableGrow() 2020 i::WasmTableObject::Grow(i_isolate, receiver, grow_by, init_value); in WebAssemblyTableGrow()
|
H A D | wasm-objects.h | 174 uint32_t count, Handle<Object> init_value);
|
/third_party/python/Modules/ |
H A D | _ssl.c | 448 PyObject *init_value, *msg, *key; in fill_and_set_sslerror() local 531 init_value = Py_BuildValue("iN", ERR_GET_REASON(ssl_errno), msg); in fill_and_set_sslerror() 532 if (init_value == NULL) in fill_and_set_sslerror() 535 err_value = PyObject_CallObject(type, init_value); in fill_and_set_sslerror() 536 Py_DECREF(init_value); in fill_and_set_sslerror()
|