Lines Matching refs:ent
23440 const duk_function_list_entry *ent = funcs; in duk_put_function_list() local
23445 if (ent != NULL) { in duk_put_function_list()
23446 while (ent->key != NULL) { in duk_put_function_list()
23447 duk_push_c_function(thr, ent->value, ent->nargs); in duk_put_function_list()
23448 duk_put_prop_string(thr, obj_idx, ent->key); in duk_put_function_list()
23449 ent++; in duk_put_function_list()
23455 const duk_number_list_entry *ent = numbers; in duk_put_number_list() local
23461 if (ent != NULL) { in duk_put_number_list()
23462 while (ent->key != NULL) { in duk_put_number_list()
23465 DUK_TVAL_SET_NUMBER_CHKFAST_SLOW(tv, ent->value); /* no need for decref/incref */ in duk_put_number_list()
23466 duk_put_prop_string(thr, obj_idx, ent->key); in duk_put_number_list()
23467 ent++; in duk_put_number_list()
60807 duk_litcache_entry *ent; local
60812 ent = thr->heap->litcache + key;
60813 if (ent->addr == str) {
60815 (const void *) str, (long) blen, (duk_heaphdr *) ent->h));
60816 DUK_ASSERT(ent->h != NULL);
60817 DUK_ASSERT(DUK_HSTRING_HAS_PINNED_LITERAL(ent->h));
60819 return ent->h;
60824 ent->addr = str;
60825 ent->h = h;