Home
last modified time | relevance | path

Searched refs:init_value (Results 1 - 25 of 29) sorted by relevance

12

/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeRISCV_32.c46 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 DsljitNativeRISCV_64.c129 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 DsljitNativeMIPS_64.c121 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 DsljitNativePPC_64.c557 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 DsljitNativeMIPS_32.c41 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 DsljitNativePPC_32.c322 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 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 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 DsljitNativeX86_common.c3310 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 DsljitLir.h1643 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 DsljitNativePPC_common.c2799 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 DsljitLir.c2250 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 DsljitNativeARM_64.c2351 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 DsljitNativeARM_32.c3637 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 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()
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 Dloop_descriptor.h247 // |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 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()
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 Dloop_descriptor.h247 // |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 Dloop_descriptor.cpp717 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 Dloop_descriptor.h247 // |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 Dloop-variable-optimizer.h26 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 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/
H A 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/
H A Dwasm-js.cc1985 // 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 Dwasm-objects.h174 uint32_t count, Handle<Object> init_value);
/third_party/python/Modules/
H A D_ssl.c448 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()

Completed in 70 milliseconds

12