/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/ |
D | duk_api_call.c | 518 duk_small_uint_t lf_flags; in duk_get_current_magic() local 519 lf_flags = DUK_TVAL_GET_LIGHTFUNC_FLAGS(tv); in duk_get_current_magic() 520 return (duk_int_t) DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags); in duk_get_current_magic() 548 duk_small_uint_t lf_flags = DUK_TVAL_GET_LIGHTFUNC_FLAGS(tv); in duk_get_magic() local 549 return (duk_int_t) DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags); in duk_get_magic()
|
D | duk_tval.h | 492 #define DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags) \ argument 493 ((((duk_int32_t) (lf_flags)) << 16) >> 24) 494 #define DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags) \ argument 495 (((lf_flags) >> 4) & 0x0f) 496 #define DUK_LFUNC_FLAGS_GET_NARGS(lf_flags) \ argument 497 ((lf_flags) & 0x0f)
|
D | duk_heaphdr.h | 482 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 485 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ 689 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 691 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \
|
D | duk_debug_vsnprintf.c | 761 duk_small_uint_t lf_flags; in duk__print_tval() local 763 DUK_TVAL_GET_LIGHTFUNC(tv, func, lf_flags); in duk__print_tval() 766 duk_fb_sprintf(fb, ":%04lx", (long) lf_flags); in duk__print_tval()
|
D | duk_api_stack.c | 1738 duk_small_uint_t lf_flags; in duk_get_length() local 1739 lf_flags = DUK_TVAL_GET_LIGHTFUNC_FLAGS(tv); in duk_get_length() 1740 return (duk_size_t) DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags); in duk_get_length() 2513 duk_small_uint_t lf_flags; in duk_to_object() local 2519 DUK_TVAL_GET_LIGHTFUNC(tv, func, lf_flags); in duk_to_object() 2521 nargs = (duk_idx_t) DUK_LFUNC_FLAGS_GET_NARGS(lf_flags); in duk_to_object() 2535 lf_len = DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags); in duk_to_object() 2546 nf->magic = (duk_int16_t) DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags); in duk_to_object() 3861 duk_small_uint_t lf_flags; in duk_push_c_lightfunc() local 3884 lf_flags = DUK_LFUNC_FLAGS_PACK(magic, length, nargs); in duk_push_c_lightfunc() [all …]
|
D | duk_hthread_builtins.c | 574 duk_small_uint_t lf_flags = DUK_LFUNC_FLAGS_PACK(magic, c_length, lf_nargs); in duk_hthread_create_builtin_objects() local 575 DUK_TVAL_SET_LIGHTFUNC(&tv_lfunc, c_func, lf_flags); in duk_hthread_create_builtin_objects()
|
D | duk_debugger.c | 822 duk_small_uint_t lf_flags; in duk_debug_write_tval() local 850 DUK_TVAL_GET_LIGHTFUNC(tv, lf_func, lf_flags); in duk_debug_write_tval() 852 buf[1] = (duk_uint8_t) (lf_flags >> 8); in duk_debug_write_tval() 853 buf[2] = (duk_uint8_t) (lf_flags & 0xff); in duk_debug_write_tval()
|
D | duk_js_call.c | 1393 duk_small_uint_t lf_flags; local 1396 lf_flags = DUK_TVAL_GET_LIGHTFUNC_FLAGS(tv_func); 1397 nargs = DUK_LFUNC_FLAGS_GET_NARGS(lf_flags);
|
D | duk_hobject_props.c | 2526 duk_int_t lf_flags = DUK_TVAL_GET_LIGHTFUNC_FLAGS(tv_obj); in duk_hobject_getprop() local 2532 duk_int_t lf_len = DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags); in duk_hobject_getprop()
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/ |
D | duk_api_call.c | 507 duk_small_uint_t lf_flags; in duk_get_current_magic() local 508 lf_flags = DUK_TVAL_GET_LIGHTFUNC_FLAGS(tv); in duk_get_current_magic() 509 return (duk_int_t) DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags); in duk_get_current_magic() 537 duk_small_uint_t lf_flags = DUK_TVAL_GET_LIGHTFUNC_FLAGS(tv); in duk_get_magic() local 538 return (duk_int_t) DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags); in duk_get_magic()
|
D | duk_tval.h | 492 #define DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags) \ argument 493 ((((duk_int32_t) (lf_flags)) << 16) >> 24) 494 #define DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags) \ argument 495 (((lf_flags) >> 4) & 0x0f) 496 #define DUK_LFUNC_FLAGS_GET_NARGS(lf_flags) \ argument 497 ((lf_flags) & 0x0f)
|
D | duk_heaphdr.h | 480 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 483 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ 684 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 686 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \
|
D | duk_debug_vsnprintf.c | 761 duk_small_uint_t lf_flags; in duk__print_tval() local 763 DUK_TVAL_GET_LIGHTFUNC(tv, func, lf_flags); in duk__print_tval() 766 duk_fb_sprintf(fb, ":%04lx", (long) lf_flags); in duk__print_tval()
|
D | duk_api_stack.c | 1734 duk_small_uint_t lf_flags; in duk_get_length() local 1735 lf_flags = DUK_TVAL_GET_LIGHTFUNC_FLAGS(tv); in duk_get_length() 1736 return (duk_size_t) DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags); in duk_get_length() 2509 duk_small_uint_t lf_flags; in duk_to_object() local 2515 DUK_TVAL_GET_LIGHTFUNC(tv, func, lf_flags); in duk_to_object() 2517 nargs = (duk_idx_t) DUK_LFUNC_FLAGS_GET_NARGS(lf_flags); in duk_to_object() 2531 lf_len = DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags); in duk_to_object() 2542 nf->magic = (duk_int16_t) DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags); in duk_to_object() 3828 duk_small_uint_t lf_flags; in duk_push_c_lightfunc() local 3851 lf_flags = DUK_LFUNC_FLAGS_PACK(magic, length, nargs); in duk_push_c_lightfunc() [all …]
|
D | duk_hthread_builtins.c | 575 duk_small_uint_t lf_flags = DUK_LFUNC_FLAGS_PACK(magic, c_length, lf_nargs); in duk_hthread_create_builtin_objects() local 576 DUK_TVAL_SET_LIGHTFUNC(&tv_lfunc, c_func, lf_flags); in duk_hthread_create_builtin_objects()
|
D | duk_debugger.c | 822 duk_small_uint_t lf_flags; in duk_debug_write_tval() local 850 DUK_TVAL_GET_LIGHTFUNC(tv, lf_func, lf_flags); in duk_debug_write_tval() 852 buf[1] = (duk_uint8_t) (lf_flags >> 8); in duk_debug_write_tval() 853 buf[2] = (duk_uint8_t) (lf_flags & 0xff); in duk_debug_write_tval()
|
D | duk_js_call.c | 1391 duk_small_uint_t lf_flags; local 1394 lf_flags = DUK_TVAL_GET_LIGHTFUNC_FLAGS(tv_func); 1395 nargs = DUK_LFUNC_FLAGS_GET_NARGS(lf_flags);
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/examples/debug-trans-dvalue/ |
D | duk_trans_dvalue.c | 787 void duk_trans_dvalue_send_lightfunc(duk_trans_dvalue_ctx *ctx, int lf_flags, const char *ptr_data,… in duk_trans_dvalue_send_lightfunc() argument 788 …duk__trans_dvalue_send_and_free(ctx, duk_dvalue_make_tag_int_data(DUK_DVALUE_LIGHTFUNC, lf_flags, … in duk_trans_dvalue_send_lightfunc() 971 int lf_flags; in duk__trans_trial_parse_dvalue() local 975 lf_flags = (int) duk__trans_dvalue_parse_u16(ctx, p + 1); in duk__trans_trial_parse_dvalue() 977 …dv = duk_dvalue_make_tag_int_data(DUK_DVALUE_LIGHTFUNC, lf_flags, (const char *) (p + 4), datalen); in duk__trans_trial_parse_dvalue()
|
D | duk_trans_dvalue.h | 101 void duk_trans_dvalue_send_lightfunc(duk_trans_dvalue_ctx *ctx, int lf_flags, const char *ptr_data,…
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/examples/debug-trans-dvalue/ |
D | duk_trans_dvalue.c | 787 void duk_trans_dvalue_send_lightfunc(duk_trans_dvalue_ctx *ctx, int lf_flags, const char *ptr_data,… in duk_trans_dvalue_send_lightfunc() argument 788 …duk__trans_dvalue_send_and_free(ctx, duk_dvalue_make_tag_int_data(DUK_DVALUE_LIGHTFUNC, lf_flags, … in duk_trans_dvalue_send_lightfunc() 971 int lf_flags; in duk__trans_trial_parse_dvalue() local 975 lf_flags = (int) duk__trans_dvalue_parse_u16(ctx, p + 1); in duk__trans_trial_parse_dvalue() 977 …dv = duk_dvalue_make_tag_int_data(DUK_DVALUE_LIGHTFUNC, lf_flags, (const char *) (p + 4), datalen); in duk__trans_trial_parse_dvalue()
|
D | duk_trans_dvalue.h | 101 void duk_trans_dvalue_send_lightfunc(duk_trans_dvalue_ctx *ctx, int lf_flags, const char *ptr_data,…
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-noline/ |
D | duktape.c | 842 #define DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags) \ argument 843 ((((duk_int32_t) (lf_flags)) << 16) >> 24) 844 #define DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags) \ argument 845 (((lf_flags) >> 4) & 0x0f) 846 #define DUK_LFUNC_FLAGS_GET_NARGS(lf_flags) \ argument 847 ((lf_flags) & 0x0f) 3931 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 3934 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ 4135 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 4137 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src/ |
D | duktape.c | 848 #define DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags) \ argument 849 ((((duk_int32_t) (lf_flags)) << 16) >> 24) 850 #define DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags) \ argument 851 (((lf_flags) >> 4) & 0x0f) 852 #define DUK_LFUNC_FLAGS_GET_NARGS(lf_flags) \ argument 853 ((lf_flags) & 0x0f) 3948 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 3951 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ 4155 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 4157 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src/ |
D | duktape.c | 848 #define DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags) \ argument 849 ((((duk_int32_t) (lf_flags)) << 16) >> 24) 850 #define DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags) \ argument 851 (((lf_flags) >> 4) & 0x0f) 852 #define DUK_LFUNC_FLAGS_GET_NARGS(lf_flags) \ argument 853 ((lf_flags) & 0x0f) 3946 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 3949 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ 4150 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 4152 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-noline/ |
D | duktape.c | 842 #define DUK_LFUNC_FLAGS_GET_MAGIC(lf_flags) \ argument 843 ((((duk_int32_t) (lf_flags)) << 16) >> 24) 844 #define DUK_LFUNC_FLAGS_GET_LENGTH(lf_flags) \ argument 845 (((lf_flags) >> 4) & 0x0f) 846 #define DUK_LFUNC_FLAGS_GET_NARGS(lf_flags) \ argument 847 ((lf_flags) & 0x0f) 3933 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 3936 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ 4140 #define DUK_TVAL_SET_LIGHTFUNC_UPDREF_ALT0(thr,tvptr_dst,lf_v,lf_fp,lf_flags) do { \ argument 4142 DUK_TVAL_SET_LIGHTFUNC(tv__dst, (lf_v), (lf_fp), (lf_flags)); \ [all …]
|