Home
last modified time | relevance | path

Searched refs:pprev (Results 1 - 5 of 5) sorted by relevance

/third_party/libbpf/src/
H A Dhashmap.c24 static void hashmap_add_entry(struct hashmap_entry **pprev, in hashmap_add_entry() argument
27 entry->next = *pprev; in hashmap_add_entry()
28 *pprev = entry; in hashmap_add_entry()
31 static void hashmap_del_entry(struct hashmap_entry **pprev, in hashmap_del_entry() argument
34 *pprev = entry->next; in hashmap_del_entry()
132 struct hashmap_entry ***pprev, in hashmap_find_entry()
144 if (pprev) in hashmap_find_entry()
145 *pprev = prev_ptr; in hashmap_find_entry()
223 struct hashmap_entry **pprev, *entry; in hashmap_delete() local
227 if (!hashmap_find_entry(map, key, h, &pprev, in hashmap_delete()
130 hashmap_find_entry(const struct hashmap *map, const long key, size_t hash, struct hashmap_entry ***pprev, struct hashmap_entry **entry) hashmap_find_entry() argument
[all...]
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
H A Dlist.h306 struct hlist_node *next, **pprev; member
314 (node)->pprev = NULL; \
321 return !h->pprev; in hlist_unhashed()
335 WRITE_ONCE(*(n->pprev), n->next); in hlist_del()
337 n->next->pprev = n->pprev; in hlist_del()
356 h->first->pprev = &n->next; in hlist_add_head()
358 n->pprev = &h->first; in hlist_add_head()
365 n->pprev = next->pprev; in hlist_add_before()
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_xbr.c256 const int pprev = 2 - (x > 0); in xbr_filter() local
257 const uint32_t A1 = sa0[pprev]; in xbr_filter()
258 const uint32_t PA = sa1[pprev]; in xbr_filter()
259 const uint32_t PD = sa2[pprev]; in xbr_filter()
260 const uint32_t PG = sa3[pprev]; in xbr_filter()
261 const uint32_t G5 = sa4[pprev]; in xbr_filter()
263 const int pprev2 = pprev - (x > 1); in xbr_filter()
/third_party/curl/lib/
H A Dcfilters.c272 struct Curl_cfilter **pprev = &cf->next; in Curl_conn_cf_discard_sub() local
277 while(*pprev) { in Curl_conn_cf_discard_sub()
278 if(*pprev == cf) { in Curl_conn_cf_discard_sub()
279 *pprev = discard->next; in Curl_conn_cf_discard_sub()
284 pprev = &((*pprev)->next); in Curl_conn_cf_discard_sub()
/third_party/python/Modules/
H A D_xxsubinterpretersmodule.c526 _channelend_find(_channelend *first, int64_t interp, _channelend **pprev) in _channelend_find() argument
537 if (pprev != NULL) { in _channelend_find()
538 *pprev = prev; in _channelend_find()
914 _channelref_find(_channelref *first, int64_t id, _channelref **pprev) in _channelref_find() argument
925 if (pprev != NULL) { in _channelref_find()
926 *pprev = prev; in _channelref_find()

Completed in 7 milliseconds