Searched refs:node_ptr (Results 1 – 8 of 8) sorted by relevance
/third_party/mesa3d/src/gallium/auxiliary/cso_cache/ |
D | cso_hash.c | 285 struct cso_node **node_ptr; in cso_hash_erase() local 291 node_ptr = &hash->buckets[node->key % hash->numBuckets]; in cso_hash_erase() 292 while (*node_ptr != node) in cso_hash_erase() 293 node_ptr = &(*node_ptr)->next; in cso_hash_erase() 294 *node_ptr = node->next; in cso_hash_erase()
|
/third_party/musl/libc-test/src/functional/ |
D | test-malloc-info.c | 64 static const char *get_node_text(xmlNodePtr node_ptr) in get_node_text() argument 66 if (node_ptr == NULL) { in get_node_text() 69 return (const char *) get_text_from_children(node_ptr->children); in get_node_text()
|
/third_party/selinux/libsepol/src/ |
D | conditional.c | 626 avtab_ptr_t node_ptr; in cond_insertf() local 648 node_ptr = avtab_search_node(&p->te_cond_avtab, k); in cond_insertf() 649 if (node_ptr) { in cond_insertf() 651 (node_ptr, k->specified)) { in cond_insertf() 657 if (cur->node == node_ptr) { in cond_insertf() 675 node_ptr = avtab_insert_nonunique(&p->te_cond_avtab, k, d); in cond_insertf() 676 if (!node_ptr) { in cond_insertf() 680 node_ptr->parse_context = (void *)1; in cond_insertf() 687 list->node = node_ptr; in cond_insertf()
|
D | node_record.c | 574 const sepol_node_t * node, sepol_node_t ** node_ptr) in sepol_node_clone() argument 598 *node_ptr = new_node; in sepol_node_clone()
|
/third_party/selinux/libsepol/include/sepol/ |
D | node_record.h | 88 extern int sepol_node_create(sepol_handle_t * handle, sepol_node_t ** node_ptr); 92 sepol_node_t ** node_ptr);
|
/third_party/mesa3d/src/util/ |
D | sparse_array.c | 114 _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()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cGPUShaderFP64Tests.hpp | 1340 _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()
|
/third_party/rust/crates/memchr/bench/data/code/ |
D | rust-library.rs | 28772 let mut node_ptr: &Node<T>; localVariable 28780 Some(node) => node_ptr = &*node.as_ptr(), 28783 match (last_ptr, node_ptr.prev) { 28791 match node_ptr.next { 28793 last_ptr = Some(node_ptr); 28794 node_ptr = &*next.as_ptr(); 28806 assert_eq!(tail as *const Node<T>, node_ptr as *const Node<T>);
|