Home
last modified time | relevance | path

Searched refs:nodep (Results 1 – 10 of 10) sorted by relevance

/third_party/curl/tests/unit/
Dunit1603.c57 char *nodep; variable
70 nodep = Curl_hash_add(&hash_static, &key1, strlen(key1), &key1);
71 fail_unless(nodep, "insertion into hash failed");
72 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
73 fail_unless(nodep == key1, "hash retrieval failed");
75 nodep = Curl_hash_add(&hash_static, &key2, strlen(key2), &key2);
76 fail_unless(nodep, "insertion into hash failed");
77 nodep = Curl_hash_pick(&hash_static, &key2, strlen(key2));
78 fail_unless(nodep == key2, "hash retrieval failed");
80 nodep = Curl_hash_add(&hash_static, &key3, strlen(key3), &key3);
[all …]
Dunit1602.c53 int *nodep; variable
63 nodep = Curl_hash_add(&hash_static, &key, klen, value);
64 if(!nodep)
66 abort_unless(nodep, "insertion into hash failed");
73 nodep = Curl_hash_add(&hash_static, &key2, klen, value2);
74 if(!nodep)
76 abort_unless(nodep, "insertion into hash failed");
Dunit1305.c120 struct Curl_dns_entry *nodep; variable
130 nodep = Curl_hash_add(&hp, data_key, key_len + 1, data_node);
131 abort_unless(nodep, "insertion into hash failed");
/third_party/ltp/testcases/kernel/lib/
Dnuma_helper.c218 int i, *nodep; in get_allowed_nodes() local
229 nodep = va_arg(ap, int *); in get_allowed_nodes()
231 *nodep = nodes[i]; in get_allowed_nodes()
/third_party/boost/boost/polygon/detail/
Dmax_cover.hpp214 Node* nodep = &(*iter); in computeDag() local
215 Unit leading = nodep->rect.get(orient.get_perpendicular()).low(); in computeDag()
216 Interval rectIvl = nodep->rect.get(orient); in computeDag()
217 leadingEdges.push_back(EdgeAssociation(std::pair<Unit, Interval>(leading, rectIvl), nodep)); in computeDag()
/third_party/boost/boost/container/detail/
Dnode_alloc_holder.hpp317 void destroy_node(const NodePtr &nodep) in destroy_node()
319 … allocator_traits<NodeAlloc>::destroy(this->node_alloc(), boost::movelib::to_raw_pointer(nodep)); in destroy_node()
320 this->deallocate_one(nodep); in destroy_node()
/third_party/glib/glib/tests/
Dcache.c94 value_foreach (gpointer keyp, gpointer nodep, gpointer data) in value_foreach() argument
/third_party/ntfs-3g/libfuse-lite/
Dfuse.c288 struct node **nodep = &f->id_table[hash]; in unhash_id() local
290 for (; *nodep != NULL; nodep = &(*nodep)->id_next) in unhash_id()
291 if (*nodep == node) { in unhash_id()
292 *nodep = node->id_next; in unhash_id()
322 struct node **nodep = &f->name_table[hash]; in unhash_name() local
324 for (; *nodep != NULL; nodep = &(*nodep)->name_next) in unhash_name()
325 if (*nodep == node) { in unhash_name()
326 *nodep = node->name_next; in unhash_name()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Ddaemon.c312 void **nodep; in MHD_ip_limit_add() local
334 if (NULL == (nodep = tsearch (key, in MHD_ip_limit_add()
346 node = *nodep; in MHD_ip_limit_add()
377 void **nodep; in MHD_ip_limit_del() local
390 if (NULL == (nodep = tfind (&search_key, in MHD_ip_limit_del()
398 found_key = (struct MHD_IPCount *) *nodep; in MHD_ip_limit_del()
/third_party/selinux/libsepol/src/
Dpolicydb.c2131 static int read_cons_helper(policydb_t * p, constraint_node_t ** nodep, in read_cons_helper() argument
2151 *nodep = c; in read_cons_helper()