Searched defs:freelist (Results 1 - 10 of 10) sorted by relevance

/external/libcxxabi/src/
H A Dfallback_malloc.cpp69 static heap_node* freelist = NULL; member in namespace:__anon11220
82 freelist = (heap_node*)heap;
83 freelist->next_node = offset_from_node(list_end);
84 freelist->len = HEAP_SIZE / sizeof(heap_node);
101 if (NULL == freelist)
105 for (p = freelist, prev = 0; p && p != list_end;
120 freelist = node_from_offset(p->next_node);
144 for (p = freelist, prev = 0; p && p != list_end;
166 freelist = cp;
178 cp->next_node = offset_from_node(freelist);
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip.h100 struct brw_reg freelist; member in struct:brw_clip_compile::__anon17056
/external/python/cpython2/Python/
H A Dgetargs.c164 addcleanup(void *ptr, PyObject **freelist, PyCapsule_Destructor destr) argument
169 if (!*freelist) {
170 *freelist = PyList_New(0);
171 if (!*freelist) {
189 if (PyList_Append(*freelist, cobj)) {
198 cleanreturn(int retval, PyObject *freelist) argument
200 if (freelist && retval != 0) {
203 Py_ssize_t len = PyList_GET_SIZE(freelist), i;
205 PyCapsule_SetDestructor(PyList_GET_ITEM(freelist, i), NULL);
207 Py_XDECREF(freelist);
226 PyObject *freelist = NULL; local
424 converttuple(PyObject *arg, const char **p_format, va_list *p_va, int flags, int *levels, char *msgbuf, size_t bufsize, int toplevel, PyObject **freelist) argument
500 convertitem(PyObject *arg, const char **p_format, va_list *p_va, int flags, int *levels, char *msgbuf, size_t bufsize, PyObject **freelist) argument
600 convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags, char *msgbuf, size_t bufsize, PyObject **freelist) argument
1573 PyObject *freelist = NULL, *current_arg; local
[all...]
H A Ddtoa.c332 1 << k. These pools are maintained as linked lists, with freelist[k]
349 static Bigint *freelist[Kmax+1]; variable
360 if (k <= Kmax && (rv = freelist[k]))
361 freelist[k] = rv->next;
391 v->next = freelist[v->k];
392 freelist[v->k] = v;
/external/python/cpython3/Python/
H A Dgetargs.c189 addcleanup(void *ptr, freelist_t *freelist, destr_t destructor) argument
193 index = freelist->first_available;
194 freelist->first_available += 1;
196 freelist->entries[index].item = ptr;
197 freelist->entries[index].destructor = destructor;
203 cleanreturn(int retval, freelist_t *freelist) argument
211 for (index = 0; index < freelist->first_available; ++index) {
212 freelist->entries[index].destructor(NULL,
213 freelist->entries[index].item);
216 if (freelist
238 freelist_t freelist; local
449 converttuple(PyObject *arg, const char **p_format, va_list *p_va, int flags, int *levels, char *msgbuf, size_t bufsize, int toplevel, freelist_t *freelist) argument
534 convertitem(PyObject *arg, const char **p_format, va_list *p_va, int flags, int *levels, char *msgbuf, size_t bufsize, freelist_t *freelist) argument
605 convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags, char *msgbuf, size_t bufsize, freelist_t *freelist) argument
1602 freelist_t freelist; local
2000 freelist_t freelist; local
[all...]
H A Ddtoa.c333 1 << k. These pools are maintained as linked lists, with freelist[k]
350 static Bigint *freelist[Kmax+1]; variable
361 if (k <= Kmax && (rv = freelist[k]))
362 freelist[k] = rv->next;
392 v->next = freelist[v->k];
393 freelist[v->k] = v;
/external/syslinux/com32/lua/src/
H A Dlauxlib.c519 #define freelist 0 macro
529 lua_rawgeti(L, t, freelist); /* get first free element */
530 ref = (int)lua_tointeger(L, -1); /* ref = t[freelist] */
534 lua_rawseti(L, t, freelist); /* (t[freelist] = t[ref]) */
546 lua_rawgeti(L, t, freelist);
547 lua_rawseti(L, t, ref); /* t[ref] = t[freelist] */
549 lua_rawseti(L, t, freelist); /* t[freelist] = ref */
/external/valgrind/coregrind/
H A Dm_mallocfree.c88 freelist previous ptr (sizeof(void*) bytes)
92 freelist next ptr (sizeof(void*) bytes)
193 // An arena. 'freelist' is a circular, doubly-linked list. 'rz_szB' is
211 Block* freelist[N_MALLOC_LISTS]; member in struct:__anon29026
243 ULong stats__nsearches; /* total # freelist checks */
603 for (i = 0; i < N_MALLOC_LISTS; i++) a->freelist[i] = NULL;
1016 // Nb: Determination of which freelist a block lives on is based on the
1019 // Convert a payload size in bytes to a freelist number.
1179 a->freelist[lno] with another block on the same list but with a
1190 p_best = a->freelist[ln
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dreadpdb.c318 unsigned short freelist; member in struct:PDB_JG_HEADER
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...

Completed in 2298 milliseconds