Searched refs:local_type (Results 1 – 9 of 9) sorted by relevance
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
D | issue-1454.rs | 14 pub struct local_type { struct 19 const UNINIT: ::std::mem::MaybeUninit<local_type> = in bindgen_test_layout_local_type() argument 23 ::std::mem::size_of::<local_type>(), in bindgen_test_layout_local_type() 25 concat!("Size of: ", stringify!(local_type)) in bindgen_test_layout_local_type() 28 ::std::mem::align_of::<local_type>(), in bindgen_test_layout_local_type() 30 concat!("Alignment of ", stringify!(local_type)) in bindgen_test_layout_local_type() 37 stringify!(local_type), in bindgen_test_layout_local_type()
|
/third_party/libbpf/src/ |
D | relo_core.c | 149 const struct btf_type *local_type, *targ_type; in __bpf_core_types_are_compat() local 153 local_type = btf_type_by_id(local_btf, local_id); in __bpf_core_types_are_compat() 155 if (!btf_kind_core_compat(local_type, targ_type)) in __bpf_core_types_are_compat() 163 local_type = skip_mods_and_typedefs(local_btf, local_id, &local_id); in __bpf_core_types_are_compat() 165 if (!local_type || !targ_type) in __bpf_core_types_are_compat() 168 if (!btf_kind_core_compat(local_type, targ_type)) in __bpf_core_types_are_compat() 171 switch (btf_kind(local_type)) { in __bpf_core_types_are_compat() 183 return btf_int_offset(local_type) == 0 && btf_int_offset(targ_type) == 0; in __bpf_core_types_are_compat() 185 local_id = local_type->type; in __bpf_core_types_are_compat() 189 local_id = btf_array(local_type)->type; in __bpf_core_types_are_compat() [all …]
|
D | libbpf.c | 6152 const struct btf_type *local_type; local 6157 local_type = btf__type_by_id(local_btf, local_id); 6158 if (!local_type) 6161 local_name = btf__name_by_offset(local_btf, local_type->name_off); 6170 prog_name, relo_idx, local_id, btf_kind_str(local_type), 8100 const struct btf_type *local_type; local 8103 local_type = btf__type_by_id(obj->btf, local_type_id); 8104 local_name = btf__name_by_offset(obj->btf, local_type->name_off); 8109 btf_kind_str(local_type), local_name, targ_type_id,
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
D | issue-1454.h | 10 local_type; typedef
|
/third_party/python/Modules/ |
D | _threadmodule.c | 32 PyTypeObject *local_type; member 1010 if (!Py_IS_TYPE(self, state->local_type)) { in local_getattro() 1620 state->local_type = (PyTypeObject *)PyType_FromModuleAndSpec(module, &local_type_spec, NULL); in thread_module_exec() 1621 if (state->local_type == NULL) { in thread_module_exec() 1624 if (PyModule_AddType(module, state->local_type) < 0) { in thread_module_exec() 1664 Py_VISIT(state->local_type); in thread_module_traverse() 1674 Py_CLEAR(state->local_type); in thread_module_clear()
|
/third_party/node/deps/v8/src/wasm/ |
D | graph-builder-interface.cc | 151 ValueType type = decoder->local_type(index); in StartFunction() 163 while (index < num_locals && decoder->local_type(index) == type) { in StartFunction() 251 ssa_env_->locals[i] = builder_->Phi(decoder->local_type(i), 1, inputs); in Loop() 1563 decoder->local_type(i + local_count_diff), 2, inputs); in Goto() 1586 decoder->local_type(i + local_count_diff) in Goto() 1811 decoder->local_type(index).machine_representation()); in WrapLocalsAtLoopExit()
|
D | function-body-decoder-impl.h | 1097 ValueType local_type(uint32_t index) const { return local_types_[index]; } 2248 this->local_type(index).is_defaultable())) { 2251 this->local_type(index).name().c_str()); 2254 if (!this->local_type(index).is_defaultable()) non_defaultable++; 3168 Value value = CreateValue(this->local_type(imm.index)); 3177 Value value = Peek(0, 0, this->local_type(imm.index)); 3187 ValueType local_type = this->local_type(imm.index); 3188 Value value = Peek(0, 0, local_type); 3189 Value result = CreateValue(local_type);
|
/third_party/node/test/fixtures/wpt/wasm/jsapi/ |
D | wasm-module-builder.js | 738 addGlobal(local_type, mutable) { argument 739 let glob = new WasmGlobalBuilder(this, local_type, mutable);
|
/third_party/node/deps/v8/src/wasm/baseline/ |
D | liftoff-compiler.cc | 633 ValueKind kind = decoder->local_type(i).kind(); in StartFunction() 3301 ? decoder->local_type(index) in GetCurrentDebugSideTableEntries()
|