Home
last modified time | relevance | path

Searched refs:slot_n (Results 1 – 2 of 2) sorted by relevance

/external/ltrace/
Ddict.c375 size_t slot_n = find_slot(dict, key, &found, &should_rehash, NULL); in dict_insert() local
376 if (slot_n == (size_t)-1) in dict_insert()
380 assert(!bitp(dict, slot_n)->taken); in dict_insert()
388 memmove(getkey(dict, slot_n), key, dict->keys.elt_size); in dict_insert()
389 memmove(getvalue(dict, slot_n), value, dict->values.elt_size); in dict_insert()
391 bitp(dict, slot_n)->taken = 1; in dict_insert()
392 bitp(dict, slot_n)->erased = 0; in dict_insert()
406 size_t slot_n = find_slot(dict, key, &found, NULL, NULL); in dict_find() local
408 return getvalue(dict, slot_n); in dict_find()
421 size_t slot_n = find_slot(dict, key, &found, NULL, &i); in dict_erase() local
[all …]
/external/ltrace/sysdeps/linux-gnu/ia64/
Dfetch.c49 int slot_n; member
68 context->slot_n = 0; in fetch_context_init()
127 if (ctx->slot_n >= 8) in allocate_reg()
130 int reg_num = ctx->slot_n++; in allocate_reg()
131 if (ctx->slot_n == 8) in allocate_reg()
197 if (align == 16 && ctx->slot_n % 2 != 0) in allocate_arg()