/third_party/libbpf/src/ |
D | relo_core.c | 146 int __bpf_core_types_are_compat(const struct btf *local_btf, __u32 local_id, in __bpf_core_types_are_compat() argument 153 local_type = btf_type_by_id(local_btf, local_id); 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() 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() 206 skip_mods_and_typedefs(local_btf, local_p->type, &local_id); in __bpf_core_types_are_compat() 208 err = __bpf_core_types_are_compat(local_btf, local_id, targ_btf, targ_id, in __bpf_core_types_are_compat() 215 skip_mods_and_typedefs(local_btf, local_type->type, &local_id); in __bpf_core_types_are_compat() 221 btf_kind_str(local_type), local_id, targ_id); in __bpf_core_types_are_compat() 413 __u32 local_id, in bpf_core_fields_are_compat() argument [all …]
|
D | relo_core.h | 71 int __bpf_core_types_are_compat(const struct btf *local_btf, __u32 local_id, 73 int bpf_core_types_are_compat(const struct btf *local_btf, __u32 local_id, 75 int __bpf_core_types_match(const struct btf *local_btf, __u32 local_id, const struct btf *targ_btf, 77 int bpf_core_types_match(const struct btf *local_btf, __u32 local_id, const struct btf *targ_btf,
|
D | libbpf.c | 5944 int bpf_core_types_are_compat(const struct btf *local_btf, __u32 local_id, argument 5947 return __bpf_core_types_are_compat(local_btf, local_id, targ_btf, targ_id, 32); 5950 int bpf_core_types_match(const struct btf *local_btf, __u32 local_id, argument 5953 return __bpf_core_types_match(local_btf, local_id, targ_btf, targ_id, false, 32); 6012 __u32 local_id = relo->type_id; local 6015 local_type = btf__type_by_id(local_btf, local_id); 6024 !hashmap__find(cand_cache, local_id, &cands)) { 6025 cands = bpf_core_find_cands(prog->obj, local_btf, local_id); 6028 prog_name, relo_idx, local_id, btf_kind_str(local_type), 6032 err = hashmap__set(cand_cache, local_id, cands, NULL, NULL);
|
/third_party/skia/third_party/externals/tint/test/bug/tint/ |
D | 914.wgsl.expected.glsl | 62 uvec3 local_id; 67 void tint_symbol_inner(uvec3 local_id, uvec3 global_id, uint local_invocation_index) { 77 uint tileRow = (local_id.y * RowPerThread); 78 uint tileCol = (local_id.x * ColPerThread); 91 uint tileColA = (local_id.x * ColPerThreadA); 93 uint tileRowB = (local_id.y * RowPerThreadB); 156 …tint_symbol_inner(tint_symbol_1.local_id, tint_symbol_1.global_id, tint_symbol_1.local_invocation_… 161 inputs.local_id = gl_LocalInvocationID;
|
D | 914.wgsl.expected.hlsl | 52 uint3 local_id : SV_GroupThreadID; 57 void main_inner(uint3 local_id, uint3 global_id, uint local_invocation_index) { 67 const uint tileRow = (local_id.y * RowPerThread); 68 const uint tileCol = (local_id.x * ColPerThread); 81 const uint tileColA = (local_id.x * ColPerThreadA); 83 const uint tileRowB = (local_id.y * RowPerThreadB); 146 main_inner(tint_symbol.local_id, tint_symbol.global_id, tint_symbol.local_invocation_index);
|
D | 914.wgsl.expected.msl | 53 void tint_symbol_inner(uint3 local_id, uint3 global_id, uint local_invocation_index, threadgroup ti… 61 uint const tileRow = (local_id[1] * RowPerThread); 62 uint const tileCol = (local_id[0] * ColPerThread); 73 uint const tileColA = (local_id[0] * ColPerThreadA); 75 uint const tileRowB = (local_id[1] * RowPerThreadB); 114 …ol_17 [[buffer(3)]], device Matrix* tint_symbol_18 [[buffer(1)]], uint3 local_id [[thread_position… 117 …tint_symbol_inner(local_id, global_id, local_invocation_index, &(tint_symbol_13), &(tint_symbol_14…
|
D | 914.wgsl.expected.wgsl | 59 fn main([[builtin(local_invocation_id)]] local_id : vec3<u32>, [[builtin(global_invocation_id)]] gl… 60 let tileRow : u32 = (local_id.y * RowPerThread); 61 let tileCol : u32 = (local_id.x * ColPerThread); 72 let tileColA : u32 = (local_id.x * ColPerThreadA); 74 let tileRowB : u32 = (local_id.y * RowPerThreadB);
|
D | 914.wgsl | 49 fn main([[builtin(local_invocation_id)]] local_id : vec3<u32>, 51 let tileRow : u32 = local_id.y * RowPerThread; 52 let tileCol : u32 = local_id.x * ColPerThread; 71 let tileColA : u32 = local_id.x * ColPerThreadA; 73 let tileRowB : u32 = local_id.y * RowPerThreadB;
|
D | 914.wgsl.expected.spvasm | 41 OpName %local_id "local_id" 227 %local_id = OpFunctionParameter %v3uint 277 %130 = OpCompositeExtract %uint %local_id 1 279 %132 = OpCompositeExtract %uint %local_id 0 316 %170 = OpCompositeExtract %uint %local_id 0 319 %173 = OpCompositeExtract %uint %local_id 1
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_nir_lower_cs_intrinsics.c | 44 nir_ssa_def *local_id = NULL; in lower_cs_intrinsics_convert_block() local 81 assert(!local_id); in lower_cs_intrinsics_convert_block() 161 local_id = nir_vec3(b, id_x, id_y, id_z); in lower_cs_intrinsics_convert_block() 175 local_id = nir_vec3(b, id_x, id_y, id_z); in lower_cs_intrinsics_convert_block() 202 local_id = nir_vec3(b, x, in lower_cs_intrinsics_convert_block() 213 assert(local_id); in lower_cs_intrinsics_convert_block() 216 sysval = local_id; in lower_cs_intrinsics_convert_block()
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_lower_system_values.c | 465 nir_ssa_def *local_id = nir_load_local_invocation_id(b); in lower_compute_system_value_instr() local 475 index = nir_imul(b, nir_channel(b, local_id, 2), in lower_compute_system_value_instr() 478 nir_imul(b, nir_channel(b, local_id, 1), size_x)); in lower_compute_system_value_instr() 479 index = nir_iadd(b, index, nir_channel(b, local_id, 0)); in lower_compute_system_value_instr() 508 nir_ssa_def *local_id = nir_load_local_invocation_id(b); in lower_compute_system_value_instr() local 512 nir_u2u(b, local_id, bit_size)); in lower_compute_system_value_instr()
|
/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl/comp/ |
D | builtins.comp | 6 uvec3 local_id = gl_LocalInvocationID;
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/comp/ |
D | builtins.comp | 6 uvec3 local_id = gl_LocalInvocationID;
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl/comp/ |
D | builtins.comp | 10 uint3 local_id = gl_LocalInvocationID;
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl/comp/ |
D | builtins.comp | 17 uint3 local_id = gl_LocalInvocationID;
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
D | item.rs | 389 local_id: LazyCell<usize>, field 440 local_id: LazyCell::new(), in new() 540 pub fn local_id(&self, ctx: &BindgenContext) -> usize { in local_id() method 541 *self.local_id.borrow_with(|| { in local_id() 554 let local_id = self.next_child_local_id.get(); in next_child_local_id() localVariable 555 self.next_child_local_id.set(local_id + 1); in next_child_local_id() 556 local_id in next_child_local_id() 952 TypeKind::Enum(..) => return self.local_id(ctx).to_string(), in exposed_id()
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | webrtcbin.c | 1434 gchar *local_id; in validate_remote_inbound_rtp_stats() local 1445 fail_unless (gst_structure_get (s, "local-id", G_TYPE_STRING, &local_id, in validate_remote_inbound_rtp_stats() 1447 fail_unless (gst_structure_get (stats, local_id, GST_TYPE_STRUCTURE, &local, in validate_remote_inbound_rtp_stats() 1452 g_free (local_id); in validate_remote_inbound_rtp_stats() 1488 gchar *local_id; in validate_remote_outbound_rtp_stats() local 1494 fail_unless (gst_structure_get (s, "local-id", G_TYPE_STRING, &local_id, in validate_remote_outbound_rtp_stats() 1496 fail_unless (gst_structure_get (stats, local_id, GST_TYPE_STRUCTURE, &local, in validate_remote_outbound_rtp_stats() 1501 g_free (local_id); in validate_remote_outbound_rtp_stats()
|
/third_party/mesa3d/docs/relnotes/ |
D | 20.2.0.rst | 4222 - freedreno/ir3: lower local_index using local_id
|