Home
last modified time | relevance | path

Searched refs:node_ptr (Results 1 – 24 of 24) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_phi_graph.cc158 Node* node_ptr = node.get(); in Optimize() local
160 VLOG(2) << "Optimizing: " << node_ptr->value_id; in Optimize()
162 CHECK_GE(node_ptr->operands.size(), 1); in Optimize()
165 auto it = absl::c_find(node_ptr->operands, node_ptr); in Optimize()
166 while (it != node_ptr->operands.end()) { in Optimize()
167 node_ptr->operands.erase(it); in Optimize()
168 it = absl::c_find(node_ptr->operands, node_ptr); in Optimize()
171 it = absl::c_find(node_ptr->users, node_ptr); in Optimize()
172 while (it != node_ptr->users.end()) { in Optimize()
173 node_ptr->users.erase(it); in Optimize()
[all …]
/external/llvm-project/llvm/test/CodeGen/AMDGPU/GlobalISel/
Dllvm.amdgcn.intersect_ray.ll4 ; uint4 llvm.amdgcn.image.bvh.intersect.ray.i32.v4f32(uint node_ptr, float ray_extent, float4 ray_o…
5 ; uint4 llvm.amdgcn.image.bvh.intersect.ray.i32.v4f16(uint node_ptr, float ray_extent, float4 ray_o…
6 ; uint4 llvm.amdgcn.image.bvh.intersect.ray.i64.v4f32(ulong node_ptr, float ray_extent, float4 ray_…
7 ; uint4 llvm.amdgcn.image.bvh.intersect.ray.i64.v4f16(ulong node_ptr, float ray_extent, float4 ray_…
14 define amdgpu_ps <4 x float> @image_bvh_intersect_ray(i32 %node_ptr, float %ray_extent, <4 x float>…
20 …%v = call <4 x i32> @llvm.amdgcn.image.bvh.intersect.ray.i32.v4f32(i32 %node_ptr, float %ray_exten…
25 define amdgpu_ps <4 x float> @image_bvh_intersect_ray_a16(i32 %node_ptr, float %ray_extent, <4 x fl…
41 …%v = call <4 x i32> @llvm.amdgcn.image.bvh.intersect.ray.i32.v4f16(i32 %node_ptr, float %ray_exten…
46 define amdgpu_ps <4 x float> @image_bvh64_intersect_ray(i64 %node_ptr, float %ray_extent, <4 x floa…
52 …%v = call <4 x i32> @llvm.amdgcn.image.bvh.intersect.ray.i64.v4f32(i64 %node_ptr, float %ray_exten…
[all …]
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Dmodel.cc161 Node* node_ptr = n->node.get(); in SetProducer() local
164 if (node_ptr == v->producer) { in SetProducer()
178 v->producer = node_ptr; in SetProducer()
201 Node* node_ptr = n->node.get(); in AddConsumer() local
204 if (node_ptr == v->producer) { in AddConsumer()
215 v->consumers.push_back(node_ptr); in AddConsumer()
230 Node* node_ptr = n->node.get(); in ReplaceInput() local
243 if (node_ptr == v_new->producer) { in ReplaceInput()
253 v_new->consumers.push_back(node_ptr); in ReplaceInput()
254 Erase(&v_old->consumers, node_ptr); in ReplaceInput()
[all …]
/external/llvm-project/llvm/test/CodeGen/AMDGPU/
Dllvm.amdgcn.intersect_ray.ll3 ; uint4 llvm.amdgcn.image.bvh.intersect.ray.i32.v4f32(uint node_ptr, float ray_extent, float4 ray_o…
4 ; uint4 llvm.amdgcn.image.bvh.intersect.ray.i32.v4f16(uint node_ptr, float ray_extent, float4 ray_o…
5 ; uint4 llvm.amdgcn.image.bvh.intersect.ray.i64.v4f32(ulong node_ptr, float ray_extent, float4 ray_…
6 ; uint4 llvm.amdgcn.image.bvh.intersect.ray.i64.v4f16(ulong node_ptr, float ray_extent, float4 ray_…
17 define amdgpu_ps <4 x float> @image_bvh_intersect_ray(i32 %node_ptr, float %ray_extent, float %ray_…
28 …%v = call <4 x i32> @llvm.amdgcn.image.bvh.intersect.ray.i32.v4f32(i32 %node_ptr, float %ray_exten…
35 define amdgpu_ps <4 x float> @image_bvh_intersect_ray_a16(i32 inreg %node_ptr, float inreg %ray_ext…
37 …%v = call <4 x i32> @llvm.amdgcn.image.bvh.intersect.ray.i32.v4f16(i32 %node_ptr, float %ray_exten…
48 %node_ptr = bitcast <2 x i32> %node_ptr_vec to i64
58 …%v = call <4 x i32> @llvm.amdgcn.image.bvh.intersect.ray.i64.v4f32(i64 %node_ptr, float %ray_exten…
[all …]
/external/mesa3d/src/gallium/auxiliary/cso_cache/
Dcso_hash.c330 struct cso_node **node_ptr; in cso_hash_erase() local
336 node_ptr = &hash->buckets[node->key % hash->numBuckets]; in cso_hash_erase()
337 while (*node_ptr != node) in cso_hash_erase()
338 node_ptr = &(*node_ptr)->next; in cso_hash_erase()
339 *node_ptr = node->next; in cso_hash_erase()
/external/selinux/libsemanage/src/
Dnode_record.c204 semanage_node_t ** node_ptr) in hidden_def()
207 return sepol_node_create(handle->sepolh, node_ptr); in hidden_def()
214 semanage_node_t ** node_ptr) in hidden_def()
217 return sepol_node_clone(handle->sepolh, node, node_ptr); in hidden_def()
/external/virglrenderer/src/gallium/auxiliary/cso_cache/
Dcso_hash.c420 struct cso_node **node_ptr; in cso_hash_erase() local
426 node_ptr = (struct cso_node**)(&hash->data.d->buckets[node->key % hash->data.d->numBuckets]); in cso_hash_erase()
427 while (*node_ptr != node) in cso_hash_erase()
428 node_ptr = &(*node_ptr)->next; in cso_hash_erase()
429 *node_ptr = node->next; in cso_hash_erase()
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/binder/binder_transaction_node_to_ref/
Dformat11 field:binder_uintptr_t node_ptr; offset:16; size:8; signed:0;
15 …dest_ref=%d dest_desc=%d", REC->debug_id, REC->node_debug_id, (u64)REC->node_ptr, REC->ref_debug_i…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/binder/binder_transaction_ref_to_node/
Dformat13 field:binder_uintptr_t node_ptr; offset:24; size:8; signed:0;
15 …0x%016llx", REC->debug_id, REC->node_debug_id, REC->ref_debug_id, REC->ref_desc, (u64)REC->node_ptr
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/binder/binder_transaction_node_to_ref/
Dformat11 field:binder_uintptr_t node_ptr; offset:16; size:4; signed:0;
15 …dest_ref=%d dest_desc=%d", REC->debug_id, REC->node_debug_id, (u64)REC->node_ptr, REC->ref_debug_i…
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/binder/binder_transaction_ref_to_node/
Dformat13 field:binder_uintptr_t node_ptr; offset:24; size:4; signed:0;
15 …0x%016llx", REC->debug_id, REC->node_debug_id, REC->ref_debug_id, REC->ref_desc, (u64)REC->node_ptr
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/binder/binder_transaction_node_to_ref/
Dformat11 field:binder_uintptr_t node_ptr; offset:16; size:8; signed:0;
15 …dest_ref=%d dest_desc=%d", REC->debug_id, REC->node_debug_id, (u64)REC->node_ptr, REC->ref_debug_i…
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/binder/binder_transaction_ref_to_node/
Dformat13 field:binder_uintptr_t node_ptr; offset:24; size:8; signed:0;
15 …0x%016llx", REC->debug_id, REC->node_debug_id, REC->ref_debug_id, REC->ref_desc, (u64)REC->node_ptr
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/binder/binder_transaction_node_to_ref/
Dformat12 field:void * node_ptr; offset:20; size:4; signed:0;
16 … ==> dest_ref=%d dest_desc=%d", REC->debug_id, REC->node_debug_id, REC->node_ptr, REC->ref_debug_i…
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/binder/binder_transaction_ref_to_node/
Dformat14 field:void * node_ptr; offset:28; size:4; signed:0;
16 … dest_ptr=0x%p", REC->debug_id, REC->node_debug_id, REC->ref_debug_id, REC->ref_desc, REC->node_ptr
/external/selinux/libsepol/src/
Dconditional.c629 avtab_ptr_t node_ptr; in cond_insertf() local
652 node_ptr = avtab_search_node(&p->te_cond_avtab, k); in cond_insertf()
653 if (node_ptr) { in cond_insertf()
655 (node_ptr, k->specified)) { in cond_insertf()
662 if (cur->node == node_ptr) { in cond_insertf()
682 node_ptr = avtab_insert_nonunique(&p->te_cond_avtab, k, d); in cond_insertf()
683 if (!node_ptr) { in cond_insertf()
687 node_ptr->parse_context = (void *)1; in cond_insertf()
694 list->node = node_ptr; in cond_insertf()
Dnode_record.c591 const sepol_node_t * node, sepol_node_t ** node_ptr) in hidden_def()
615 *node_ptr = new_node; in hidden_def()
/external/selinux/libsemanage/include/semanage/
Dnode_record.h87 semanage_node_t ** node_ptr);
91 semanage_node_t ** node_ptr);
/external/selinux/libsepol/include/sepol/
Dnode_record.h88 extern int sepol_node_create(sepol_handle_t * handle, sepol_node_t ** node_ptr);
92 sepol_node_t ** node_ptr);
/external/mesa3d/src/util/
Dsparse_array.c114 _util_sparse_array_set_or_free_node(uintptr_t *node_ptr, in _util_sparse_array_set_or_free_node() argument
118 uintptr_t prev_node = p_atomic_cmpxchg(node_ptr, cmp_node, node); in _util_sparse_array_set_or_free_node()
/external/rust/crates/linked-hash-map/src/
Dlib.rs416 if let Some(node_ptr) = node_ptr_opt { in get_refresh()
417 self.detach(node_ptr); in get_refresh()
418 self.attach(node_ptr); in get_refresh()
1253 let node_ptr: *mut Node<K, V> = self.entry; in insert() localVariable
1256 (*self.map).detach(node_ptr); in insert()
1257 (*self.map).attach(node_ptr); in insert()
/external/blktrace/
Dblkiomon.c52 struct rb_node **node_ptr; member
193 search->node_ptr = p; in blkiomon_find_dstat()
215 rb_link_node(&dstat->node, search.parent, search.node_ptr); in blkiomon_get_dstat()
/external/deqp/external/openglcts/modules/gl/
Dgl4cGPUShaderFP64Tests.hpp1340 _argument_list_tree_node* node_ptr = children.back(); in ~_argument_list_tree_node() local
1344 delete node_ptr; in ~_argument_list_tree_node()
1345 node_ptr = NULL; in ~_argument_list_tree_node()
/external/llvm-project/llvm/include/llvm/IR/
DIntrinsicsAMDGPU.td1718 // uint4 llvm.amdgcn.image.bvh.intersect.ray <node_ptr>, <ray_extent>, <ray_origin>,