Home
last modified time | relevance | path

Searched refs:init_value (Results 1 – 25 of 31) sorted by relevance

12

/third_party/pcre2/pcre2/src/sljit/
DsljitNativeRISCV_32.c46 …32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value, sljit_ins last_… 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()
DsljitNativeRISCV_64.c129 …32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value, sljit_ins last_… 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()
DsljitNativeMIPS_64.c121 …IT_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()
DsljitNativeMIPS_32.c41 …IT_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()
DsljitNativePPC_64.c557 …IT_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()
DsljitNativePPC_32.c322 …IT_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()
DsljitNativeS390X.c134 sljit_sw init_value; /* required to build literal pool */ member
1562 *(pool_ptr++) = (sljit_uw)const_->init_value; in sljit_generate_code()
3665 …ljit_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()
DsljitLir.h1643 …jit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value);
DsljitNativeX86_common.c3310 …ljit_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))
DsljitNativeARM_64.c2351 …ljit_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()
DsljitLir.c2250 …ljit_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()
DsljitNativeARM_32.c3637 …ljit_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()
DsljitNativePPC_common.c2799 …ljit_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()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dloop_descriptor.cpp723 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()
756 int64_t init_value, int64_t step_value) const { in GetIterations() argument
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 - condition_value; in GetIterations()
796 if (!(init_value >= condition_value)) return 0; in GetIterations()
[all …]
Dloop_descriptor.h251 int64_t* init_value = nullptr) const;
403 int64_t init_value, int64_t step_value) const;
/third_party/spirv-tools/source/opt/
Dloop_descriptor.cpp724 int64_t init_value = 0; in FindNumberOfIterations() local
725 if (!GetInductionInitValue(induction, &init_value)) return false; in FindNumberOfIterations()
729 init_value, step_value); in FindNumberOfIterations()
746 *init_value_out = init_value; in FindNumberOfIterations()
757 int64_t init_value, int64_t step_value) const { in GetIterations() argument
768 if (!(init_value < condition_value)) return 0; in GetIterations()
770 diff = condition_value - init_value; in GetIterations()
784 if (!(init_value > condition_value)) return 0; in GetIterations()
786 diff = init_value - condition_value; in GetIterations()
801 if (!(init_value >= condition_value)) return 0; in GetIterations()
[all …]
Dloop_descriptor.h251 int64_t* init_value = nullptr) const;
404 int64_t init_value, int64_t step_value) const;
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dloop_descriptor.cpp723 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()
756 int64_t init_value, int64_t step_value) const { in GetIterations() argument
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 - condition_value; in GetIterations()
796 if (!(init_value >= condition_value)) return 0; in GetIterations()
[all …]
Dloop_descriptor.h251 int64_t* init_value = nullptr) const;
403 int64_t init_value, int64_t step_value) const;
/third_party/node/deps/v8/src/compiler/
Dloop-variable-optimizer.h26 Node* init_value() const { return init_value_; } in init_value() function
47 Node* init_value, Zone* zone, ArithmeticType arithmeticType) in InductionVariable() argument
52 init_value_(init_value), in InductionVariable()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-iter.hh488 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/
Dhevc_cabac.c496 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/
Dwasm-js.cc1999 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()
Dwasm-objects.h174 uint32_t count, Handle<Object> init_value);
/third_party/python/Modules/
D_ssl.c450 PyObject *init_value, *msg, *key; in fill_and_set_sslerror() local
537 init_value = Py_BuildValue("iN", ERR_GET_REASON(ssl_errno), msg); in fill_and_set_sslerror()
538 if (init_value == NULL) in fill_and_set_sslerror()
541 err_value = PyObject_CallObject(type, init_value); in fill_and_set_sslerror()
542 Py_DECREF(init_value); in fill_and_set_sslerror()

12