Home
last modified time | relevance | path

Searched refs:next_ptr (Results 1 – 20 of 20) sorted by relevance

/external/boringssl/src/crypto/lhash/
Dlhash.c192 LHASH_ITEM **next_ptr = in OPENSSL_lh_retrieve() local
194 return *next_ptr == NULL ? NULL : (*next_ptr)->data; in OPENSSL_lh_retrieve()
201 LHASH_ITEM **next_ptr = get_next_ptr_by_key(lh, key, key_hash, cmp_key); in OPENSSL_lh_retrieve_key() local
202 return *next_ptr == NULL ? NULL : (*next_ptr)->data; in OPENSSL_lh_retrieve_key()
272 LHASH_ITEM **next_ptr, *item; in OPENSSL_lh_insert() local
275 next_ptr = in OPENSSL_lh_insert()
279 if (*next_ptr != NULL) { in OPENSSL_lh_insert()
282 *old_data = (*next_ptr)->data; in OPENSSL_lh_insert()
283 (*next_ptr)->data = data; in OPENSSL_lh_insert()
296 *next_ptr = item; in OPENSSL_lh_insert()
[all …]
/external/cronet/third_party/boringssl/src/crypto/lhash/
Dlhash.c192 LHASH_ITEM **next_ptr = in OPENSSL_lh_retrieve() local
194 return *next_ptr == NULL ? NULL : (*next_ptr)->data; in OPENSSL_lh_retrieve()
201 LHASH_ITEM **next_ptr = get_next_ptr_by_key(lh, key, key_hash, cmp_key); in OPENSSL_lh_retrieve_key() local
202 return *next_ptr == NULL ? NULL : (*next_ptr)->data; in OPENSSL_lh_retrieve_key()
272 LHASH_ITEM **next_ptr, *item; in OPENSSL_lh_insert() local
275 next_ptr = in OPENSSL_lh_insert()
279 if (*next_ptr != NULL) { in OPENSSL_lh_insert()
282 *old_data = (*next_ptr)->data; in OPENSSL_lh_insert()
283 (*next_ptr)->data = data; in OPENSSL_lh_insert()
296 *next_ptr = item; in OPENSSL_lh_insert()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/crypto/lhash/
Dlhash.c192 LHASH_ITEM **next_ptr = in OPENSSL_lh_retrieve() local
194 return *next_ptr == NULL ? NULL : (*next_ptr)->data; in OPENSSL_lh_retrieve()
201 LHASH_ITEM **next_ptr = get_next_ptr_by_key(lh, key, key_hash, cmp_key); in OPENSSL_lh_retrieve_key() local
202 return *next_ptr == NULL ? NULL : (*next_ptr)->data; in OPENSSL_lh_retrieve_key()
272 LHASH_ITEM **next_ptr, *item; in OPENSSL_lh_insert() local
275 next_ptr = in OPENSSL_lh_insert()
279 if (*next_ptr != NULL) { in OPENSSL_lh_insert()
282 *old_data = (*next_ptr)->data; in OPENSSL_lh_insert()
283 (*next_ptr)->data = data; in OPENSSL_lh_insert()
296 *next_ptr = item; in OPENSSL_lh_insert()
[all …]
/external/freetype/src/gzip/
Dzutil.c211 local int next_ptr = 0; variable
242 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; in zcalloc()
243 table[next_ptr].org_ptr = buf; in zcalloc()
248 table[next_ptr++].new_ptr = buf; in zcalloc()
263 for (n = 0; n < next_ptr; n++) { in zcfree()
267 while (++n < next_ptr) { in zcfree()
270 next_ptr--; in zcfree()
/external/rust/crates/libz-sys/src/zlib/
Dzutil.c202 local int next_ptr = 0; variable
233 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; in zcalloc()
234 table[next_ptr].org_ptr = buf; in zcalloc()
239 table[next_ptr++].new_ptr = buf; in zcalloc()
254 for (n = 0; n < next_ptr; n++) { in zcfree()
258 while (++n < next_ptr) { in zcfree()
261 next_ptr--; in zcfree()
/external/zlib/
Dzutil.c204 local int next_ptr = 0; variable
235 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; in zcalloc()
236 table[next_ptr].org_ptr = buf; in zcalloc()
241 table[next_ptr++].new_ptr = buf; in zcalloc()
256 for (n = 0; n < next_ptr; n++) { in zcfree()
260 while (++n < next_ptr) { in zcfree()
263 next_ptr--; in zcfree()
/external/libwebsockets/win32port/zlib/
Dzutil.c201 local int next_ptr = 0; variable
230 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; in zcalloc()
231 table[next_ptr].org_ptr = buf; in zcalloc()
236 table[next_ptr++].new_ptr = buf; in zcalloc()
248 for (n = 0; n < next_ptr; n++) { in zcfree()
252 while (++n < next_ptr) { in zcfree()
255 next_ptr--; in zcfree()
/external/python/cpython2/Modules/zlib/
Dzutil.c202 local int next_ptr = 0; variable
233 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; in zcalloc()
234 table[next_ptr].org_ptr = buf; in zcalloc()
239 table[next_ptr++].new_ptr = buf; in zcalloc()
254 for (n = 0; n < next_ptr; n++) { in zcfree()
258 while (++n < next_ptr) { in zcfree()
261 next_ptr--; in zcfree()
/external/tflite-support/third_party/zlib/
Dzutil.c202 local int next_ptr = 0; variable
233 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; in zcalloc()
234 table[next_ptr].org_ptr = buf; in zcalloc()
239 table[next_ptr++].new_ptr = buf; in zcalloc()
254 for (n = 0; n < next_ptr; n++) { in zcfree()
258 while (++n < next_ptr) { in zcfree()
261 next_ptr--; in zcfree()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/iterators/iterator.primitives/iterator.operations/
Dnext.pass.cpp30 It (*next_ptr)(It, typename std::iterator_traits<It>::difference_type) = std::next; in check_next_n() local
31 assert(next_ptr(it, n) == result); in check_next_n()
/external/rust/crates/tokio/src/sync/mpsc/
Dblock.rs308 let next_ptr = self in try_push() localVariable
314 match NonNull::new(next_ptr) { in try_push()
315 Some(next_ptr) => Err(next_ptr), in try_push()
/external/deqp-deps/amber/samples/
Dconfig_helper_vulkan.cc1008 void** next_ptr = &variable_pointers_feature_.pNext; in CreateDeviceWithFeatures2() local
1011 *next_ptr = &float16_int8_feature_; in CreateDeviceWithFeatures2()
1012 next_ptr = &float16_int8_feature_.pNext; in CreateDeviceWithFeatures2()
1016 *next_ptr = &storage_8bit_feature_; in CreateDeviceWithFeatures2()
1017 next_ptr = &storage_8bit_feature_.pNext; in CreateDeviceWithFeatures2()
1021 *next_ptr = &storage_16bit_feature_; in CreateDeviceWithFeatures2()
1022 next_ptr = &storage_16bit_feature_.pNext; in CreateDeviceWithFeatures2()
1026 *next_ptr = &subgroup_size_control_feature_; in CreateDeviceWithFeatures2()
1027 next_ptr = &subgroup_size_control_feature_.pNext; in CreateDeviceWithFeatures2()
/external/jsilver/src/org/clearsilver/jni/
DJniHdf.java376 long next_ptr = _objNext(hdfptr);
377 if ( next_ptr == 0 ) {
380 return newHdf(next_ptr, this);
/external/cronet/buildtools/third_party/libc++/trunk/utils/gdb/libcxx/
Dprinters.py812 next_ptr = _value_of_pair_first(sentinel_ptr)["__next_"]
813 while str(next_ptr.cast(_void_pointer_type)) != "0x0":
814 next_val = next_ptr.cast(self.cast_type).dereference()
817 next_ptr = next_val["__next_"]
/external/kernel-headers/original/uapi/rdma/
Dib_user_ioctl_verbs.h192 RDMA_UAPI_PTR(struct ib_uverbs_flow_action_esp_encap *, next_ptr);
/external/rust/crates/ash/src/vk/
Ddefinitions.rs1492 let next_ptr = next as *mut T as *mut BaseOutStructure; in push_next() localVariable
1495 self.inner.p_next = next_ptr as _; in push_next()
1593 let next_ptr = next as *mut T as *mut BaseOutStructure; in push_next() localVariable
1596 self.inner.p_next = next_ptr as _; in push_next()
1685 let next_ptr = next as *mut T as *mut BaseOutStructure; in push_next() localVariable
1688 self.inner.p_next = next_ptr as _; in push_next()
1886 let next_ptr = next as *mut T as *mut BaseOutStructure; in push_next() localVariable
1889 self.inner.p_next = next_ptr as _; in push_next()
2538 let next_ptr = next as *mut T as *mut BaseOutStructure; in push_next() localVariable
2541 self.inner.p_next = next_ptr as _; in push_next()
[all …]
/external/trace-cmd/tracecmd/
Dtrace-hist.c700 static struct chain *next_ptr(struct chain *chain, enum field field) in next_ptr() function
715 for (i = 1; i < (size + 1) / 2; i++, orig = next_ptr(orig, field)) in split_chain()
742 for (i = 0, chain = a; chain; i++, chain = next_ptr(chain, field)) in merge_chains()
/external/pigweed/pw_allocator/
Dblock_test.cc370 std::byte* next_ptr = reinterpret_cast<std::byte*>(first_block); in TEST() local
371 memcpy(next_ptr, second_block, sizeof(void*)); in TEST()
/external/rust/crates/ash/src/extensions/experimental/
Damd.rs688 let next_ptr = next as *mut T as *mut BaseOutStructure; in push_next() localVariable
691 self.inner.p_next = next_ptr as _; in push_next()
/external/rust/crates/vulkano/src/memory/
Ddevice_memory.rs226 let next_ptr = next as *mut T as *mut BaseOutStructure; in push_next() localVariable
236 prev_head = next_ptr; in push_next()