Github User Fetcher 1.0.0
C Application with Server and GUI
|
Go to the source code of this file.
Data Structures | |
struct | duk_heaphdr |
struct | duk_heaphdr_string |
#define DUK_ASSERT_HEAPHDR_LINKS | ( | heap, | |
h ) do {} while (0) |
Definition at line 260 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HBUFFER_DECREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 612 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HBUFFER_INCREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 611 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HBUFFEROBJECT_DECREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 618 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HBUFFEROBJECT_INCREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 617 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HCOMPILEDFUNCTION_DECREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 614 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HCOMPILEDFUNCTION_INCREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 613 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_CHECK_FLAG_BITS | ( | h, | |
bits ) (((h)->h_flags & (bits)) != 0) |
Definition at line 197 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_CLEAR_FINALIZABLE | ( | h | ) | DUK_HEAPHDR_CLEAR_FLAG_BITS((h),DUK_HEAPHDR_FLAG_FINALIZABLE) |
Definition at line 208 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_CLEAR_FINALIZED | ( | h | ) | DUK_HEAPHDR_CLEAR_FLAG_BITS((h),DUK_HEAPHDR_FLAG_FINALIZED) |
Definition at line 212 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_CLEAR_FLAG_BITS | ( | h, | |
bits ) |
Definition at line 192 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_CLEAR_REACHABLE | ( | h | ) | DUK_HEAPHDR_CLEAR_FLAG_BITS((h),DUK_HEAPHDR_FLAG_REACHABLE) |
Definition at line 200 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_CLEAR_READONLY | ( | h | ) | DUK_HEAPHDR_CLEAR_FLAG_BITS((h),DUK_HEAPHDR_FLAG_READONLY) |
Definition at line 216 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_CLEAR_TEMPROOT | ( | h | ) | DUK_HEAPHDR_CLEAR_FLAG_BITS((h),DUK_HEAPHDR_FLAG_TEMPROOT) |
Definition at line 204 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_DECREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 606 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_DECREF_FAST | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 602 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_DECREF_SLOW | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 604 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_FLAG_FINALIZABLE DUK_HEAPHDR_HEAP_FLAG(2) /* mark-and-sweep: finalizable (on current pass) */ |
Definition at line 102 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_FLAG_FINALIZED DUK_HEAPHDR_HEAP_FLAG(3) /* mark-and-sweep: finalized (on previous pass) */ |
Definition at line 103 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_FLAG_REACHABLE DUK_HEAPHDR_HEAP_FLAG(0) /* mark-and-sweep: reachable */ |
Definition at line 100 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_FLAG_READONLY DUK_HEAPHDR_HEAP_FLAG(4) /* read-only object, in code section */ |
Definition at line 104 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_FLAG_TEMPROOT DUK_HEAPHDR_HEAP_FLAG(1) /* mark-and-sweep: children not processed */ |
Definition at line 101 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_FLAGS_FLAG_MASK (~DUK_HEAPHDR_FLAGS_TYPE_MASK) |
Definition at line 89 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_FLAGS_HEAP_START 2 /* 5 heap flags */ |
Definition at line 92 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_FLAGS_TYPE_MASK 0x00000003UL |
Definition at line 88 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_FLAGS_USER_START 7 /* 25 user flags */ |
Definition at line 93 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_GET_FLAG_RANGE | ( | h, | |
m, | |||
n ) (((h)->h_flags >> (m)) & ((1UL << (n)) - 1UL)) |
Definition at line 220 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_GET_FLAGS | ( | h | ) | ((h)->h_flags & DUK_HEAPHDR_FLAGS_FLAG_MASK) |
Definition at line 167 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_GET_FLAGS_RAW | ( | h | ) | ((h)->h_flags) |
Definition at line 165 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_GET_NEXT | ( | heap, | |
h ) ((h)->h_next) |
Definition at line 119 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_GET_TYPE | ( | h | ) | ((h)->h_flags & DUK_HEAPHDR_FLAGS_TYPE_MASK) |
Definition at line 172 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_HAS_FINALIZABLE | ( | h | ) | DUK_HEAPHDR_CHECK_FLAG_BITS((h),DUK_HEAPHDR_FLAG_FINALIZABLE) |
Definition at line 209 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_HAS_FINALIZED | ( | h | ) | DUK_HEAPHDR_CHECK_FLAG_BITS((h),DUK_HEAPHDR_FLAG_FINALIZED) |
Definition at line 213 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_HAS_REACHABLE | ( | h | ) | DUK_HEAPHDR_CHECK_FLAG_BITS((h),DUK_HEAPHDR_FLAG_REACHABLE) |
Definition at line 201 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_HAS_READONLY | ( | h | ) | DUK_HEAPHDR_CHECK_FLAG_BITS((h),DUK_HEAPHDR_FLAG_READONLY) |
Definition at line 217 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_HAS_TEMPROOT | ( | h | ) | DUK_HEAPHDR_CHECK_FLAG_BITS((h),DUK_HEAPHDR_FLAG_TEMPROOT) |
Definition at line 205 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_HEAP_FLAG | ( | n | ) | (1UL << (DUK_HEAPHDR_FLAGS_HEAP_START + (n))) |
Definition at line 97 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_HEAP_FLAG_NUMBER | ( | n | ) | (DUK_HEAPHDR_FLAGS_HEAP_START + (n)) |
Definition at line 95 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_HTYPE_VALID | ( | h | ) |
Definition at line 177 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_INCREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 605 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_INCREF_FAST | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 601 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_INCREF_SLOW | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 603 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_INIT_NULLS | ( | h | ) |
Definition at line 235 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_NEEDS_REFCOUNT_UPDATE | ( | h | ) | 0 |
Definition at line 593 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_FINALIZABLE | ( | h | ) | DUK_HEAPHDR_SET_FLAG_BITS((h),DUK_HEAPHDR_FLAG_FINALIZABLE) |
Definition at line 207 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_FINALIZED | ( | h | ) | DUK_HEAPHDR_SET_FLAG_BITS((h),DUK_HEAPHDR_FLAG_FINALIZED) |
Definition at line 211 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_FLAG_BITS | ( | h, | |
bits ) |
Definition at line 187 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_FLAG_RANGE | ( | h, | |
m, | |||
n, | |||
v ) |
Definition at line 222 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_FLAGS | ( | h, | |
val ) |
Definition at line 168 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_NEXT | ( | heap, | |
h, | |||
val ) |
Definition at line 120 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_REACHABLE | ( | h | ) | DUK_HEAPHDR_SET_FLAG_BITS((h),DUK_HEAPHDR_FLAG_REACHABLE) |
Definition at line 199 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_READONLY | ( | h | ) | DUK_HEAPHDR_SET_FLAG_BITS((h),DUK_HEAPHDR_FLAG_READONLY) |
Definition at line 215 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_TEMPROOT | ( | h | ) | DUK_HEAPHDR_SET_FLAG_BITS((h),DUK_HEAPHDR_FLAG_TEMPROOT) |
Definition at line 203 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_TYPE | ( | h, | |
val ) |
Definition at line 173 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_SET_TYPE_AND_FLAGS | ( | h, | |
tval, | |||
fval ) |
Definition at line 182 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_STRING_INIT_NULLS | ( | h | ) | /* currently nop */ |
Definition at line 240 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_USER_FLAG | ( | n | ) | (1UL << (DUK_HEAPHDR_FLAGS_USER_START + (n))) |
Definition at line 98 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HEAPHDR_USER_FLAG_NUMBER | ( | n | ) | (DUK_HEAPHDR_FLAGS_USER_START + (n)) |
Definition at line 96 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HNATIVEFUNCTION_DECREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 616 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HNATIVEFUNCTION_INCREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 615 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HOBJECT_DECREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 610 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HOBJECT_DECREF_ALLOWNULL | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 622 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HOBJECT_INCREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 609 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HOBJECT_INCREF_ALLOWNULL | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 621 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HSTRING_DECREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 608 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HSTRING_INCREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 607 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HTHREAD_DECREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 620 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HTHREAD_INCREF | ( | thr, | |
h ) do {} while (0) /* nop */ |
Definition at line 619 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HTYPE_BUFFER 3 |
Definition at line 109 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HTYPE_MAX 3 |
Definition at line 110 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HTYPE_MIN 1 |
Definition at line 106 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HTYPE_OBJECT 2 |
Definition at line 108 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_HTYPE_STRING 1 |
Definition at line 107 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_DECREF | ( | thr, | |
v ) do {} while (0) /* nop */ |
Definition at line 600 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_DECREF_FAST | ( | thr, | |
v ) do {} while (0) /* nop */ |
Definition at line 596 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_DECREF_SLOW | ( | thr, | |
v ) do {} while (0) /* nop */ |
Definition at line 598 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_INCREF | ( | thr, | |
v ) do {} while (0) /* nop */ |
Definition at line 599 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_INCREF_FAST | ( | thr, | |
v ) do {} while (0) /* nop */ |
Definition at line 595 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_INCREF_SLOW | ( | thr, | |
v ) do {} while (0) /* nop */ |
Definition at line 597 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_NEEDS_REFCOUNT_UPDATE | ( | tv | ) | 0 |
Definition at line 592 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_BOOLEAN_UPDREF DUK_TVAL_SET_BOOLEAN_UPDREF_ALT0 |
Definition at line 729 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_BOOLEAN_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
newval ) |
Definition at line 642 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_BUFFER_UPDREF DUK_TVAL_SET_BUFFER_UPDREF_ALT0 |
Definition at line 746 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_BUFFER_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
newval ) |
Definition at line 707 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_DOUBLE_CAST_UPDREF | ( | thr, | |
tvptr_dst, | |||
newval ) DUK_TVAL_SET_DOUBLE_UPDREF((thr), (tvptr_dst), (duk_double_t) (newval)) |
Definition at line 685 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_DOUBLE_UPDREF DUK_TVAL_SET_DOUBLE_UPDREF_ALT0 |
Definition at line 732 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_DOUBLE_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
newval ) |
Definition at line 658 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_FASTINT_I32_UPDREF DUK_TVAL_SET_DOUBLE_CAST_UPDREF |
Definition at line 740 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_FASTINT_U32_UPDREF DUK_TVAL_SET_DOUBLE_CAST_UPDREF |
Definition at line 741 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_FASTINT_UPDREF DUK_TVAL_SET_DOUBLE_CAST_UPDREF /* XXX: fast-int-to-double */ |
Definition at line 739 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_LIGHTFUNC_UPDREF DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0 |
Definition at line 743 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
lf_v, | |||
lf_fp, | |||
lf_flags ) |
Definition at line 689 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_NAN_UPDREF DUK_TVAL_SET_NAN_UPDREF_ALT0 |
Definition at line 733 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_NAN_UPDREF_ALT0 | ( | thr, | |
tvptr_dst ) |
Definition at line 663 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_NULL_UPDREF DUK_TVAL_SET_NULL_UPDREF_ALT0 |
Definition at line 728 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_NULL_UPDREF_ALT0 | ( | thr, | |
tvptr_dst ) |
Definition at line 636 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_NUMBER_CHKFAST_UPDREF DUK_TVAL_SET_NUMBER_CHKFAST_UPDREF_ALT0 |
Definition at line 731 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_NUMBER_CHKFAST_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
newval ) |
Definition at line 653 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_NUMBER_UPDREF DUK_TVAL_SET_NUMBER_UPDREF_ALT0 |
Definition at line 730 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_NUMBER_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
newval ) |
Definition at line 648 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_OBJECT_UPDREF DUK_TVAL_SET_OBJECT_UPDREF_ALT0 |
Definition at line 745 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_OBJECT_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
newval ) |
Definition at line 701 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_POINTER_UPDREF DUK_TVAL_SET_POINTER_UPDREF_ALT0 |
Definition at line 747 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_POINTER_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
newval ) |
Definition at line 713 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_STRING_UPDREF DUK_TVAL_SET_STRING_UPDREF_ALT0 |
Definition at line 744 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_STRING_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
newval ) |
Definition at line 695 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_TVAL_UPDREF DUK_TVAL_SET_TVAL_UPDREF_ALT0 |
Definition at line 749 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_TVAL_UPDREF_ALT0 | ( | thr, | |
tvptr_dst, | |||
tvptr_src ) |
Definition at line 719 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_TVAL_UPDREF_FAST DUK_TVAL_SET_TVAL_UPDREF_ALT0 |
Definition at line 750 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_TVAL_UPDREF_SLOW DUK_TVAL_SET_TVAL_UPDREF_ALT0 |
Definition at line 751 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_UNDEFINED_UPDREF DUK_TVAL_SET_UNDEFINED_UPDREF_ALT0 |
Definition at line 726 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_UNDEFINED_UPDREF_ALT0 | ( | thr, | |
tvptr_dst ) |
Definition at line 624 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_UNUSED_UPDREF DUK_TVAL_SET_UNUSED_UPDREF_ALT0 |
Definition at line 727 of file duktape-1.8.0/src-separate/duk_heaphdr.h.
#define DUK_TVAL_SET_UNUSED_UPDREF_ALT0 | ( | thr, | |
tvptr_dst ) |
Definition at line 630 of file duktape-1.8.0/src-separate/duk_heaphdr.h.