HomeSort by relevance Sort by last modified time
    Searched refs:next_ptr (Results 1 - 22 of 22) sorted by null

  /device/google/marlin/dataservices/datatop/src/
datatop_linked_list.h 45 * @var dtop_linked_list::next_ptr
51 struct dtop_linked_list *next_ptr; member in struct:dtop_linked_list
datatop_linked_list.c 66 list_node->next_ptr = list;
81 head_ptr = head_ptr->next_ptr;
datatop_helpers.c 288 curr_ptr = curr_ptr->next_ptr;
410 curr_ptr = curr_ptr->next_ptr;
433 curr_ptr = curr_ptr->next_ptr;
455 curr_ptr = curr_ptr->next_ptr;
476 curr_ptr = curr_ptr->next_ptr;
datatop.c 73 curr_ptr = curr_ptr->next_ptr;
112 curr_ptr = curr_ptr->next_ptr;
  /external/freetype/src/gzip/
zutil.c 68 local int next_ptr = 0; variable
97 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
98 table[next_ptr].org_ptr = buf;
103 table[next_ptr++].new_ptr = buf;
115 for (n = 0; n < next_ptr; n++) {
119 while (++n < next_ptr) {
122 next_ptr--;
  /external/boringssl/src/crypto/lhash/
lhash.c 162 LHASH_ITEM **next_ptr; local
164 next_ptr = get_next_ptr_and_hash(lh, NULL, data);
166 if (*next_ptr == NULL) {
170 return (*next_ptr)->data;
238 LHASH_ITEM **next_ptr, *item; local
241 next_ptr = get_next_ptr_and_hash(lh, &hash, data);
244 if (*next_ptr != NULL) {
247 *old_data = (*next_ptr)->data;
248 (*next_ptr)->data = data;
261 *next_ptr = item
269 LHASH_ITEM **next_ptr, *item, *ret; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
zutil.c 201 local int next_ptr = 0; variable
230 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
231 table[next_ptr].org_ptr = buf;
236 table[next_ptr++].new_ptr = buf;
248 for (n = 0; n < next_ptr; n++) {
252 while (++n < next_ptr) {
255 next_ptr--;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
zutil.c 205 local int next_ptr = 0; variable
234 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
235 table[next_ptr].org_ptr = buf;
240 table[next_ptr++].new_ptr = buf;
252 for (n = 0; n < next_ptr; n++) {
256 while (++n < next_ptr) {
259 next_ptr--;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
zutil.c 199 local int next_ptr = 0; variable
230 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
231 table[next_ptr].org_ptr = buf;
236 table[next_ptr++].new_ptr = buf;
251 for (n = 0; n < next_ptr; n++) {
255 while (++n < next_ptr) {
258 next_ptr--;
  /external/python/cpython2/Modules/zlib/
zutil.c 205 local int next_ptr = 0; variable
234 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
235 table[next_ptr].org_ptr = buf;
240 table[next_ptr++].new_ptr = buf;
252 for (n = 0; n < next_ptr; n++) {
256 while (++n < next_ptr) {
259 next_ptr--;
  /external/python/cpython3/Modules/zlib/
zutil.c 202 local int next_ptr = 0; variable
233 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
234 table[next_ptr].org_ptr = buf;
239 table[next_ptr++].new_ptr = buf;
254 for (n = 0; n < next_ptr; n++) {
258 while (++n < next_ptr) {
261 next_ptr--;
  /external/syslinux/com32/lib/zlib/
zutil.c 201 local int next_ptr = 0; variable
230 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
231 table[next_ptr].org_ptr = buf;
236 table[next_ptr++].new_ptr = buf;
248 for (n = 0; n < next_ptr; n++) {
252 while (++n < next_ptr) {
255 next_ptr--;
  /external/zlib/src/
zutil.c 202 local int next_ptr = 0; variable
233 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
234 table[next_ptr].org_ptr = buf;
239 table[next_ptr++].new_ptr = buf;
254 for (n = 0; n < next_ptr; n++) {
258 while (++n < next_ptr) {
261 next_ptr--;
  /toolchain/binutils/binutils-2.27/zlib/
zutil.c 205 local int next_ptr = 0; variable
234 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
235 table[next_ptr].org_ptr = buf;
240 table[next_ptr++].new_ptr = buf;
252 for (n = 0; n < next_ptr; n++) {
256 while (++n < next_ptr) {
259 next_ptr--;
  /system/libufdt/
ufdt_node_pool.c 99 struct ufdt_node_pool_entry_header **next_ptr = &block->first_free_entry; local
105 *next_ptr = entry;
107 next_ptr = &entry->next;
109 *next_ptr = NULL;
  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 376 long next_ptr = _objNext(hdfptr);
377 if ( next_ptr == 0 ) {
380 return newHdf(next_ptr, this);
  /external/mesa3d/src/intel/vulkan/
anv_allocator.c 165 int32_t *next_ptr = *map + current.offset; local
166 new.offset = VG_NOACCESS_READ(next_ptr);
183 int32_t *next_ptr = map + offset; local
188 VG_NOACCESS_WRITE(next_ptr, current.offset);
209 void **next_ptr = PFL_PTR(current); local
210 void *new_ptr = VG_NOACCESS_READ(next_ptr);
228 void **next_ptr = elem; local
239 VG_NOACCESS_WRITE(next_ptr, PFL_PTR(current));
  /toolchain/binutils/binutils-2.27/gas/config/
tc-avr.c 2148 struct avr_property_record_link *r_list, **next_ptr; local
    [all...]
  /frameworks/opt/setupwizard/tools/docs/
jsilver.jar 
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/
jsilver-1.0.0.jar 
  /external/testng/ant/3rdparty/
doclava-1.0.3.jar 

Completed in 414 milliseconds