Github User Fetcher 1.0.0
C Application with Server and GUI
|
Go to the source code of this file.
Data Structures | |
struct | duk_hcompiledfunction |
#define DUK_HCOMPILEDFUNCTION_GET_BUFFER_BASE | ( | heap, | |
h ) DUK_HBUFFER_FIXED_GET_DATA_PTR((heap), DUK_HCOMPILEDFUNCTION_GET_DATA((heap), (h))) |
Definition at line 56 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_BYTECODE | ( | heap, | |
h ) ((h)->bytecode) |
Definition at line 44 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_CODE_BASE | ( | heap, | |
h ) DUK_HCOMPILEDFUNCTION_GET_BYTECODE((heap), (h)) |
Definition at line 65 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_CODE_COUNT | ( | heap, | |
h ) ((duk_size_t) (DUK_HCOMPILEDFUNCTION_GET_CODE_SIZE((heap), (h)) / sizeof(duk_instr_t))) |
Definition at line 112 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_CODE_END | ( | heap, | |
h ) |
Definition at line 75 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_CODE_SIZE | ( | heap, | |
h ) |
Definition at line 97 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_CONSTS_BASE | ( | heap, | |
h ) ((duk_tval *) (void *) DUK_HCOMPILEDFUNCTION_GET_BUFFER_BASE((heap), (h))) |
Definition at line 59 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_CONSTS_COUNT | ( | heap, | |
h ) ((duk_size_t) (DUK_HCOMPILEDFUNCTION_GET_CONSTS_SIZE((heap), (h)) / sizeof(duk_tval))) |
Definition at line 106 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_CONSTS_END | ( | heap, | |
h ) ((duk_tval *) (void *) DUK_HCOMPILEDFUNCTION_GET_FUNCS((heap), (h))) |
Definition at line 68 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_CONSTS_SIZE | ( | heap, | |
h ) |
Definition at line 79 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_DATA | ( | heap, | |
h ) ((duk_hbuffer_fixed *) (void *) (h)->data) |
Definition at line 34 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_FUNCS | ( | heap, | |
h ) ((h)->funcs) |
Definition at line 39 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_FUNCS_BASE | ( | heap, | |
h ) DUK_HCOMPILEDFUNCTION_GET_FUNCS((heap), (h)) |
Definition at line 62 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_FUNCS_COUNT | ( | heap, | |
h ) ((duk_size_t) (DUK_HCOMPILEDFUNCTION_GET_FUNCS_SIZE((heap), (h)) / sizeof(duk_hobject *))) |
Definition at line 109 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_FUNCS_END | ( | heap, | |
h ) ((duk_hobject **) (void *) DUK_HCOMPILEDFUNCTION_GET_BYTECODE((heap), (h))) |
Definition at line 71 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_GET_FUNCS_SIZE | ( | heap, | |
h ) |
Definition at line 88 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_SET_BYTECODE | ( | heap, | |
h, | |||
v ) |
Definition at line 46 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_SET_DATA | ( | heap, | |
h, | |||
v ) |
Definition at line 36 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.
#define DUK_HCOMPILEDFUNCTION_SET_FUNCS | ( | heap, | |
h, | |||
v ) |
Definition at line 41 of file duktape-1.5.2/src-separate/duk_hcompiledfunction.h.