Home
last modified time | relevance | path

Searched refs:DUK_HOBJECT_E_GET_FLAGS (Results 1 – 25 of 54) sorted by relevance

123

/dports/lang/duktape-lib/duktape-2.6.0/src-input/
H A Dduk_hobject.h513 #define DUK_HOBJECT_E_GET_FLAGS(heap,h,i) (DUK_HOBJECT_E_GET_FLAGS_BASE((heap), (h))[(i)… macro
536 DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) = (duk_uint8_t) (f); \
555 #define DUK_HOBJECT_E_SLOT_IS_WRITABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
556 #define DUK_HOBJECT_E_SLOT_IS_ENUMERABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
557 #define DUK_HOBJECT_E_SLOT_IS_CONFIGURABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
558 #define DUK_HOBJECT_E_SLOT_IS_ACCESSOR(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
H A Dduk_hobject_props.c896 new_e_f[new_e_next] = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i); in duk_hobject_realloc_props()
1435 *out_attrs = DUK_HOBJECT_E_GET_FLAGS(heap, obj, e_idx); in duk_hobject_find_entry_tval_ptr_and_attrs()
1866 out_desc->flags = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, e_idx); in duk__get_own_propdesc_raw()
5661 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx)));
5702 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx)));
6178 flags = (duk_small_uint_t) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i);
H A Dduk_debug_vsnprintf.c425 duk_fb_sprintf(fb, "<%02lx>", (unsigned long) DUK_HOBJECT_E_GET_FLAGS(NULL, h, i)); in duk__print_hobject()
H A Dduk_debugger.c1764 duk_debug_write_uint(thr, (duk_uint32_t) DUK_HOBJECT_E_GET_FLAGS(heap, h, i)); in duk__debug_dump_heaphdr()
2099 flags = DUK_HOBJECT_E_GET_FLAGS(heap, h_obj, idx); in duk__debug_getprop_index()
/dports/lang/duktape-lib/duktape-2.6.0/src-separate/
H A Dduk_hobject.h513 #define DUK_HOBJECT_E_GET_FLAGS(heap,h,i) (DUK_HOBJECT_E_GET_FLAGS_BASE((heap), (h))[(i)… macro
536 DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) = (duk_uint8_t) (f); \
555 #define DUK_HOBJECT_E_SLOT_IS_WRITABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
556 #define DUK_HOBJECT_E_SLOT_IS_ENUMERABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
557 #define DUK_HOBJECT_E_SLOT_IS_CONFIGURABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
558 #define DUK_HOBJECT_E_SLOT_IS_ACCESSOR(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
H A Dduk_hobject_props.c896 new_e_f[new_e_next] = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i); in duk_hobject_realloc_props()
1435 *out_attrs = DUK_HOBJECT_E_GET_FLAGS(heap, obj, e_idx); in duk_hobject_find_entry_tval_ptr_and_attrs()
1866 out_desc->flags = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, e_idx); in duk__get_own_propdesc_raw()
5661 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx)));
5702 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx)));
6178 flags = (duk_small_uint_t) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i);
H A Dduk_debug_vsnprintf.c425 duk_fb_sprintf(fb, "<%02lx>", (unsigned long) DUK_HOBJECT_E_GET_FLAGS(NULL, h, i)); in duk__print_hobject()
H A Dduk_debugger.c1764 duk_debug_write_uint(thr, (duk_uint32_t) DUK_HOBJECT_E_GET_FLAGS(heap, h, i)); in duk__debug_dump_heaphdr()
2099 flags = DUK_HOBJECT_E_GET_FLAGS(heap, h_obj, idx); in duk__debug_getprop_index()
H A Dduk_js_var.c1646 flags = DUK_HOBJECT_E_GET_FLAGS(thr->heap, holder, e_idx); in duk__declvar_helper()
/dports/lang/duktape/duktape-2.6.0/src-input/
H A Dduk_hobject.h513 #define DUK_HOBJECT_E_GET_FLAGS(heap,h,i) (DUK_HOBJECT_E_GET_FLAGS_BASE((heap), (h))[(i)… macro
536 DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) = (duk_uint8_t) (f); \
555 #define DUK_HOBJECT_E_SLOT_IS_WRITABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
556 #define DUK_HOBJECT_E_SLOT_IS_ENUMERABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
557 #define DUK_HOBJECT_E_SLOT_IS_CONFIGURABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
558 #define DUK_HOBJECT_E_SLOT_IS_ACCESSOR(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
H A Dduk_hobject_props.c896 new_e_f[new_e_next] = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i); in duk_hobject_realloc_props()
1435 *out_attrs = DUK_HOBJECT_E_GET_FLAGS(heap, obj, e_idx); in duk_hobject_find_entry_tval_ptr_and_attrs()
1866 out_desc->flags = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, e_idx); in duk__get_own_propdesc_raw()
5661 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx)));
5702 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx)));
6178 flags = (duk_small_uint_t) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i);
H A Dduk_debug_vsnprintf.c425 duk_fb_sprintf(fb, "<%02lx>", (unsigned long) DUK_HOBJECT_E_GET_FLAGS(NULL, h, i)); in duk__print_hobject()
H A Dduk_debugger.c1764 duk_debug_write_uint(thr, (duk_uint32_t) DUK_HOBJECT_E_GET_FLAGS(heap, h, i)); in duk__debug_dump_heaphdr()
2099 flags = DUK_HOBJECT_E_GET_FLAGS(heap, h_obj, idx); in duk__debug_getprop_index()
/dports/lang/duktape/duktape-2.6.0/src-separate/
H A Dduk_hobject.h513 #define DUK_HOBJECT_E_GET_FLAGS(heap,h,i) (DUK_HOBJECT_E_GET_FLAGS_BASE((heap), (h))[(i)… macro
536 DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) = (duk_uint8_t) (f); \
555 #define DUK_HOBJECT_E_SLOT_IS_WRITABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
556 #define DUK_HOBJECT_E_SLOT_IS_ENUMERABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
557 #define DUK_HOBJECT_E_SLOT_IS_CONFIGURABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
558 #define DUK_HOBJECT_E_SLOT_IS_ACCESSOR(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
H A Dduk_hobject_props.c896 new_e_f[new_e_next] = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i); in duk_hobject_realloc_props()
1435 *out_attrs = DUK_HOBJECT_E_GET_FLAGS(heap, obj, e_idx); in duk_hobject_find_entry_tval_ptr_and_attrs()
1866 out_desc->flags = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, e_idx); in duk__get_own_propdesc_raw()
5661 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx)));
5702 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx)));
6178 flags = (duk_small_uint_t) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i);
H A Dduk_debug_vsnprintf.c425 duk_fb_sprintf(fb, "<%02lx>", (unsigned long) DUK_HOBJECT_E_GET_FLAGS(NULL, h, i)); in duk__print_hobject()
H A Dduk_debugger.c1764 duk_debug_write_uint(thr, (duk_uint32_t) DUK_HOBJECT_E_GET_FLAGS(heap, h, i)); in duk__debug_dump_heaphdr()
2099 flags = DUK_HOBJECT_E_GET_FLAGS(heap, h_obj, idx); in duk__debug_getprop_index()
/dports/www/civetweb/civetweb-1.15/src/third_party/duktape-1.5.2/src-separate/
H A Dduk_hobject.h478 #define DUK_HOBJECT_E_GET_FLAGS(heap,h,i) (DUK_HOBJECT_E_GET_FLAGS_BASE((heap), (h))[(i)… macro
501 DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) = (duk_uint8_t) (f); \
520 #define DUK_HOBJECT_E_SLOT_IS_WRITABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
521 #define DUK_HOBJECT_E_SLOT_IS_ENUMERABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
522 #define DUK_HOBJECT_E_SLOT_IS_CONFIGURABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
523 #define DUK_HOBJECT_E_SLOT_IS_ACCESSOR(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
H A Dduk_hobject_props.c750 new_e_f[new_e_next] = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i); in duk__realloc_props()
1223 *out_attrs = DUK_HOBJECT_E_GET_FLAGS(heap, obj, e_idx); in duk_hobject_find_existing_entry_tval_ptr_and_attrs()
1653 out_desc->flags = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, e_idx); in duk__get_own_propdesc_raw()
5468 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx))); in duk_hobject_define_property_helper()
5514 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx))); in duk_hobject_define_property_helper()
5960 flags = (duk_small_uint_t) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i); in duk_hobject_object_is_sealed_frozen_helper()
H A Dduk_debug_vsnprintf.c426 duk_fb_sprintf(fb, "<%02lx>", (unsigned long) DUK_HOBJECT_E_GET_FLAGS(NULL, h, i)); in duk__print_hobject()
H A Dduk_debugger.c1687 duk_debug_write_uint(thr, (duk_uint32_t) DUK_HOBJECT_E_GET_FLAGS(heap, h, i)); in duk__debug_dump_heaphdr()
2072 flags = DUK_HOBJECT_E_GET_FLAGS(heap, h_obj, idx); in duk__debug_getprop_index()
/dports/www/civetweb/civetweb-1.15/src/third_party/duktape-1.8.0/src-separate/
H A Dduk_hobject.h478 #define DUK_HOBJECT_E_GET_FLAGS(heap,h,i) (DUK_HOBJECT_E_GET_FLAGS_BASE((heap), (h))[(i)… macro
501 DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) = (duk_uint8_t) (f); \
520 #define DUK_HOBJECT_E_SLOT_IS_WRITABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
521 #define DUK_HOBJECT_E_SLOT_IS_ENUMERABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
522 #define DUK_HOBJECT_E_SLOT_IS_CONFIGURABLE(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
523 #define DUK_HOBJECT_E_SLOT_IS_ACCESSOR(heap,h,i) ((DUK_HOBJECT_E_GET_FLAGS((heap), (h), (i)) & …
H A Dduk_hobject_props.c757 new_e_f[new_e_next] = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i); in duk__realloc_props()
1218 *out_attrs = DUK_HOBJECT_E_GET_FLAGS(heap, obj, e_idx); in duk_hobject_find_existing_entry_tval_ptr_and_attrs()
1648 out_desc->flags = DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, e_idx); in duk__get_own_propdesc_raw()
5464 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx))); in duk_hobject_define_property_helper()
5510 (unsigned long) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, curr.e_idx))); in duk_hobject_define_property_helper()
5956 flags = (duk_small_uint_t) DUK_HOBJECT_E_GET_FLAGS(thr->heap, obj, i); in duk_hobject_object_is_sealed_frozen_helper()
H A Dduk_debug_vsnprintf.c426 duk_fb_sprintf(fb, "<%02lx>", (unsigned long) DUK_HOBJECT_E_GET_FLAGS(NULL, h, i)); in duk__print_hobject()
H A Dduk_debugger.c1699 duk_debug_write_uint(thr, (duk_uint32_t) DUK_HOBJECT_E_GET_FLAGS(heap, h, i)); in duk__debug_dump_heaphdr()
2084 flags = DUK_HOBJECT_E_GET_FLAGS(heap, h_obj, idx); in duk__debug_getprop_index()

123