Home
last modified time | relevance | path

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

/dports/devel/libmba/libmba-0.9.1/src/
H A Dhashmap.c251 void *k = ALADR(al, e->key); in hashmap_clear()
293 old_table = ALADR(al, h->table); in hashmap_resize()
349 …hash = h->hash ? ((hash_fn)ALADR(al, h->hash))(key, ALADR(al, h->context)) : hash_ptr(key, ALADR(a… in hashmap_put()
360 void *k = ALADR(al, e->key); in hashmap_put()
393 …hash = h->hash ? ((hash_fn)ALADR(al, h->hash))(key, ALADR(al, h->context)) : hash_ptr(key, ALADR(a… in hashmap_get()
404 void *k = ALADR(al, e->key); in hashmap_get()
407 return ALADR(al, e->data); in hashmap_get()
433 …hash = h->hash ? ((hash_fn)ALADR(al, h->hash))(*key, ALADR(al, h->context)) : hash_ptr(*key, ALADR in hashmap_remove()
444 void *k = ALADR(al, e->key); in hashmap_remove()
448 *data = ALADR(al, e->data); in hashmap_remove()
[all …]
H A Dvarray.c116 ret += allocator_free(al, ALADR(al, va->bins[i])); in varray_release()
163 return (char *)ALADR(al, va->bins[i]) + (i ? idx - n : idx) * va->size; in varray_get()
218 return (char *)ALADR(VAAL(va), va->bins[iter->i1]) + iter->i2++ * va->size; in varray_next()
/dports/databases/postgresql-odbc/psqlodbc-13.02.0000/
H A Dinouealc.c19 } ALADR; typedef
23 static ALADR *altbl = NULL;
36 altbl = (ALADR *) malloc(alsize * sizeof(ALADR)); in pgdebug_alloc()
40 ALADR *al; in pgdebug_alloc()
42 if (al = (ALADR *) realloc(altbl, alsize * sizeof(ALADR)), NULL == al) in pgdebug_alloc()
63 altbl = (ALADR *) malloc(alsize * sizeof(ALADR)); in pgdebug_calloc()
67 ALADR *al; in pgdebug_calloc()
69 if (al = (ALADR *) realloc(altbl, alsize * sizeof(ALADR)), NULL == al) in pgdebug_calloc()
122 altbl = (ALADR *) malloc(alsize * sizeof(ALADR)); in pgdebug_strdup()
126 ALADR *al; in pgdebug_strdup()
[all …]
/dports/devel/libmba/libmba-0.9.1/src/mba/
H A Dallocator.h27 #define ALADR(a,r) ((void *)((r) ? (char *)ALAL(a) + (r) : NULL)) macro