Home
last modified time | relevance | path

Searched refs:idx (Results 3976 - 4000 of 4523) sorted by relevance

1...<<151152153154155156157158159160>>...181

/arkcompiler/ets_runtime/ecmascript/interpreter/
H A Dinterpreter-inl.cpp124 #define GET_VREG(idx) (sp[idx]) // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
126 #define GET_VREG_VALUE(idx) (JSTaggedValue(sp[idx])) // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
128 #define SET_VREG(idx, val) (sp[idx] = (val)); // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
5598 uint32_t idx = READ_INST_16_1(); in RunInternal() local
5600 << " imm" << idx; in RunInternal()
5605 JSTaggedValue res = FastRuntimeStub::GetPropertyByIndex(thread, receiver, idx); in RunInternal()
5615 JSTaggedValue res = SlowRuntimeStub::LdObjByIndex(thread, receiver, idx, fals in RunInternal()
5621 uint32_t idx = READ_INST_16_2(); RunInternal() local
5644 uint32_t idx = READ_INST_32_1(); RunInternal() local
5668 uint32_t idx = READ_INST_32_2(); RunInternal() local
5670 << " v" << v0 << " imm" << idx; RunInternal() local
[all...]
H A Dinterpreter_assembly.cpp178 #define GET_VREG(idx) (sp[idx]) // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
180 #define GET_VREG_VALUE(idx) (JSTaggedValue(sp[idx])) // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
182 #define SET_VREG(idx, val) (sp[idx] = (val)); // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
3472 uint32_t idx = READ_INST_32_1();
3474 << " imm" << idx;
3479 JSTaggedValue res = FastRuntimeStub::GetPropertyByIndex(thread, receiver, idx);
3489 JSTaggedValue res = SlowRuntimeStub::LdObjByIndex(thread, receiver, idx, fals
[all...]
/device/soc/rockchip/common/sdk_linux/kernel/bpf/
H A Dverifier.c1768 p[cnt - 1].idx = env->insn_idx; in push_jmp_history()
1775 /* Backtrack one insn at a time. If idx is not at the top of recorded
1782 if (cnt && st->jmp_history[cnt - 1].idx == i) { in get_prev_insn_idx()
1795 static int backtrack_insn(struct bpf_verifier_env *env, int idx, u32 *reg_mask, u64 *stack_mask) in backtrack_insn() argument
1801 struct bpf_insn *insn = env->prog->insnsi + idx; in backtrack_insn()
1814 verbose(env, "%d: ", idx); in backtrack_insn()
2124 verbose(env, "BUG backtracking idx %d\n", i); in __mark_chain_precision()
3219 int depth = 0, frame = 0, idx = 0, i = 0, subprog_end; in check_max_stack_depth() local
3250 if (idx && subprog[idx] in check_max_stack_depth()
3336 get_callee_stack_depth(struct bpf_verifier_env *env, const struct bpf_insn *insn, int idx) get_callee_stack_depth() argument
8328 explored_state(struct bpf_verifier_env *env, int idx) explored_state() argument
8336 init_explored_state(struct bpf_verifier_env *env, int idx) init_explored_state() argument
[all...]
/arkcompiler/runtime_core/libpandafile/
H A Dfile.cpp381 ClassIdxIterator(const File &file, const Span<const uint32_t> &span, size_t idx) in ClassIdxIterator() argument
382 : file_(file), span_(span), idx_(idx) in ClassIdxIterator()
/arkcompiler/runtime_core/static_core/libpandabase/tests/
H A Dbit_table_test.cpp227 int idx = 1; local
230 ASSERT_EQ(row.Get(i), idx++);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Dcgbb.h148 void AddLabel(LabelIdx idx)
150 labIdx = idx;
/arkcompiler/ets_frontend/es2panda/compiler/core/
H A Dpandagen.h392 void CreateObjectWithBuffer(const ir::AstNode *node, uint32_t idx);
399 void CreateArrayWithBuffer(const ir::AstNode *node, uint32_t idx);
/device/soc/rockchip/common/sdk_linux/include/linux/mfd/
H A Drk808.h892 #define RK817_LDO_ON_VSEL_REG(idx) (0xcc + (idx)*2)
/third_party/ffmpeg/tests/fate/
H A Dffmpeg.mak61 -ss 132 -i $(TARGET_SAMPLES)/sub/vobsub.idx \
69 -i $(TARGET_SAMPLES)/sub/vobsub.idx \
/third_party/benchmark/src/
H A Dsysinfo.cc261 int idx = 0; in GetCacheSizesFromKVFS() local
264 std::string fpath = StrCat(dir, "index", idx++, "/"); in GetCacheSizesFromKVFS()
/third_party/icu/icu4c/source/common/
H A Drbbi.cpp1084 int32_t idx = fRuleStatusIndex + fData->fRuleStatusTable[fRuleStatusIndex]; in getRuleStatus() local
1085 int32_t tagVal = fData->fRuleStatusTable[idx]; in getRuleStatus()
/third_party/jinja2/
H A Dext.py767 for idx, (token_lineno, _, _) in enumerate(self.tokens[self.offset :]):
769 return self.find_backwards(self.offset + idx)
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_virtualvalues.cpp868 const Register& LocalArray::operator ()(size_t idx, size_t chan) const
870 return *m_values[m_size * (chan - m_frac) + idx];
H A Dsfn_nir.cpp317 const unsigned idx = var->data.binding; in r600_lower_deref_instr() local
342 nir_intrinsic_set_base(instr, idx); in r600_lower_deref_instr()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_compiler.h700 #define BRW_PARAM_BUILTIN_CLIP_PLANE(idx, comp) \
701 (BRW_PARAM_BUILTIN_CLIP_PLANE_0_X + ((idx) << 2) + (comp))
H A Dbrw_reg.h76 #define BRW_GET_SWZ(swz, idx) (((swz) >> ((idx)*2)) & 0x3)
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_state.c749 unsigned idx = util_bitcount(vstate->input.full_velem_mask & BITFIELD_MASK(elem)); in zink_vertex_state_mask() local
750 hw_state->dynattribs[i] = zstate->velems.hw_state.dynattribs[idx]; in zink_vertex_state_mask()
/third_party/node/lib/internal/fs/
H A Dutils.js258 const idx = i;
272 names[idx] = new DirentFromStats(name, stats, path, filepath);
/third_party/node/src/
H A Denv-inl.h110 inline v8::Local<v8::String> AsyncHooks::provider_string(int idx) { in provider_string() argument
111 return env()->isolate_data()->async_wrap_provider(idx); in provider_string()
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dxcode.py432 idx = self.project._properties["targets"].index(xcode_target)
434 idx + 1, run_all_target
/third_party/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h5316 * Returns the table entry denoted by |idx| from header table of
5317 * |deflater|. The |idx| is 1-based, and idx=1 returns first entry of
5318 * static table. idx=62 returns first entry of dynamic table if it
5319 * exists. Specifying idx=0 is error, and this function returns NULL.
5320 * If |idx| is strictly greater than the number of entries the tables
5325 nghttp2_hd_deflate_get_table_entry(nghttp2_hd_deflater *deflater, size_t idx);
5644 * Returns the table entry denoted by |idx| from header table of
5645 * |inflater|. The |idx| is 1-based, and idx
[all...]
/third_party/node/deps/icu-small/source/common/
H A Drbbi.cpp1054 int32_t idx = fRuleStatusIndex + fData->fRuleStatusTable[fRuleStatusIndex]; in getRuleStatus() local
1055 int32_t tagVal = fData->fRuleStatusTable[idx]; in getRuleStatus()
/third_party/node/deps/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h5300 * Returns the table entry denoted by |idx| from header table of
5301 * |deflater|. The |idx| is 1-based, and idx=1 returns first entry of
5302 * static table. idx=62 returns first entry of dynamic table if it
5303 * exists. Specifying idx=0 is error, and this function returns NULL.
5304 * If |idx| is strictly greater than the number of entries the tables
5309 nghttp2_hd_deflate_get_table_entry(nghttp2_hd_deflater *deflater, size_t idx);
5628 * Returns the table entry denoted by |idx| from header table of
5629 * |inflater|. The |idx| is 1-based, and idx
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dxcode.py432 idx = self.project._properties["targets"].index(xcode_target)
434 idx + 1, run_all_target
/third_party/libfuse/lib/modules/
H A Diconv.c546 static int iconv_bmap(const char *path, size_t blocksize, uint64_t *idx) in iconv_bmap() argument
552 err = fuse_fs_bmap(ic->next, newpath, blocksize, idx); in iconv_bmap()

Completed in 66 milliseconds

1...<<151152153154155156157158159160>>...181