Home
last modified time | relevance | path

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

/openbsd/src/sys/lib/libz/
Dzutil.c188 local int next_ptr = 0; variable
218 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; in zcalloc()
219 table[next_ptr].org_ptr = buf; in zcalloc()
224 table[next_ptr++].new_ptr = buf; in zcalloc()
238 for (n = 0; n < next_ptr; n++) { in zcfree()
242 while (++n < next_ptr) { in zcfree()
245 next_ptr--; in zcfree()
/openbsd/src/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/
Dzutil.c187 local int next_ptr = 0; variable
217 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; in zcalloc()
218 table[next_ptr].org_ptr = buf; in zcalloc()
223 table[next_ptr++].new_ptr = buf; in zcalloc()
237 for (n = 0; n < next_ptr; n++) { in zcfree()
241 while (++n < next_ptr) { in zcfree()
244 next_ptr--; in zcfree()
/openbsd/src/lib/libz/
Dzutil.c185 local int next_ptr = 0; variable
215 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; in zcalloc()
216 table[next_ptr].org_ptr = buf; in zcalloc()
221 table[next_ptr++].new_ptr = buf; in zcalloc()
235 for (n = 0; n < next_ptr; n++) { in zcfree()
239 while (++n < next_ptr) { in zcfree()
242 next_ptr--; in zcfree()
/openbsd/src/gnu/llvm/libcxx/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_"]