Home
last modified time | relevance | path

Searched full:4 (Results 1 – 25 of 340) sorted by relevance

12345678910>>...14

/civetweb-2.7.6/VisualStudio/lua_lib/
Dlua_lib.vcxproj.filters5 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
27 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lapi.c">
30 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lauxlib.c">
33 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lbaselib.c">
36 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lbitlib.c">
39 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lcode.c">
42 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lcorolib.c">
45 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lctype.c">
[all …]
Dlua_lib.vcxproj89 …<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\third_party\lua-5.2.4\src;%(AdditionalInclude…
103 …<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\third_party\lua-5.2.4\src;%(AdditionalInclude…
119 …<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\third_party\lua-5.2.4\src;%(AdditionalInclude…
137 …<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\third_party\lua-5.2.4\src;%(AdditionalInclude…
148 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lapi.c" />
149 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lauxlib.c" />
150 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lbaselib.c" />
151 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lbitlib.c" />
152 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lcode.c" />
153 <ClCompile Include="..\..\src\third_party\lua-5.2.4\src\lcorolib.c" />
[all …]
/civetweb-2.7.6/test/
DHugeText.lua8 ['"'] = {0,3,4,3,0},
21 ['/'] = {32,16,8,4,2},
26 ['4'] = {24,20,18,127,16},
52 ['N'] = {127,4,8,16,127},
63 ['Y'] = {3,4,120,4,3},
66 ['\\'] = {2,4,8,16,32},
68 ['^'] = {24,4,2,4,24},
78 ['h'] = {127,4,4,120,0},
83 ['m'] = {120,4,120,4,120},
84 ['n'] = {124,8,4,4,120},
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/
Dduk_util_hashprime.c27 4, 3, 4, 1, 4, 1, 1, 2, 2, 2, 2, 1, 6, 6, 9, 5, 1, 2, 2, 5, 1, 3, 3, 3,
28 5, 4, 4, 2, 4, 8, 3, 4, 23, 2, 4, 7, 8, 11, 2, 12, 15, 10, 1, 1, 5, 1, 5,
29 8, 9, 17, 14, 10, 7, 5, 2, 46, 21, 1, 9, 9, 4, 4, 10, 23, 36, 6, 20, 29,
30 18, 6, 19, 21, 16, 11, 5, 5, 48, 9, 1, 39, 14, 8, 4, 29, 9, 1, 15, 48, 12,
31 22, 6, 15, 27, 4, 2, 17, 28, 8, 9, 4, 5, 8, 3, 3, 8, 37, 11, 15, 8, 30,
32 43, 6, 33, 41, 5, 20, 32, 41, 38, 24, 77, 14, 19, 11, 4, 35, 18, 19, 41,
Dduk_api_codec.c6 * Base-64: https://tools.ietf.org/html/rfc4648#section-4
30 n_full = srclen / 3; /* full 3-byte -> 4-char conversions */ in duk__base64_encode_helper()
50 dst[1] = duk_base64_enctab[((src[0] << 4) & 0x30) | ((src[1] >> 4) & 0x0f)]; in duk__base64_encode_helper()
53 src += 3; dst += 4; in duk__base64_encode_helper()
63 *dst++ = duk_base64_enctab[(t << 4) & 0x3f]; /* ------XX */ in duk__base64_encode_helper()
73 *dst++ = duk_base64_enctab[(t >> 4) & 0x3f]; /* ------XX XXXX---- */ in duk__base64_encode_helper()
91 snip = 4; in duk__base64_encode_helper()
104 * 0 4 XXXX in duk__base64_encode_helper()
109 DUK_ASSERT(snip >= 2 && snip <= 4); in duk__base64_encode_helper()
111 for (i = 0; i < 4; i++) { in duk__base64_encode_helper()
[all …]
Dduk_selftest.c45 sizeof(duk_int32_t) == 4 && in duk__selftest_types()
46 sizeof(duk_uint32_t) == 4)) { in duk__selftest_types()
62 if (!(sizeof(duk_int_t) >= 4)) { in duk__selftest_types()
73 if (sizeof(void *) > 4) { in duk__selftest_packed_tval()
74 …K_PANIC(DUK_ERR_INTERNAL_ERROR, "self test failed: packed duk_tval in use but sizeof(void *) > 4"); in duk__selftest_packed_tval()
121 u2.c[4] = 0x7c; u2.c[5] = 0xc1; u2.c[6] = 0x37; u2.c[7] = 0x42; in duk__selftest_byte_order()
124 u2.c[4] = 0x00; u2.c[5] = 0x00; u2.c[6] = 0xc4; u2.c[7] = 0x6d; in duk__selftest_byte_order()
127 u2.c[4] = 0x6d; u2.c[5] = 0xc4; u2.c[6] = 0x00; u2.c[7] = 0x00; in duk__selftest_byte_order()
168 du.uc[4] = 0x33; du.uc[5] = 0x44; du.uc[6] = 0x55; du.uc[7] = 0x66; in duk__selftest_bswap_macros()
183 (unsigned int) du.uc[4], (unsigned int) du.uc[5], in duk__selftest_bswap_macros()
[all …]
Dduk_util_bufwriter.c295 duk_uint8_t b[4]; in duk_raw_read_u32_be()
299 DUK_MEMCPY((void *) u.b, (const void *) (*p), (size_t) 4); in duk_raw_read_u32_be()
301 *p += 4; in duk_raw_read_u32_be()
308 duk_uint8_t b[4]; in duk_raw_read_double_be()
312 DUK_MEMCPY((void *) u.b, (const void *) (*p), (size_t) 4); in duk_raw_read_double_be()
315 DUK_MEMCPY((void *) u.b, (const void *) (*p + 4), (size_t) 4); in duk_raw_read_double_be()
336 duk_uint8_t b[4]; in duk_raw_write_u32_be()
341 DUK_MEMCPY((void *) (*p), (const void *) u.b, (size_t) 4); in duk_raw_write_u32_be()
342 *p += 4; in duk_raw_write_u32_be()
348 duk_uint8_t b[4]; in duk_raw_write_double_be()
[all …]
Dduk_builtins.c12 5,52,116,180,104,166,135,52,189,4,98,12,27,178,156,80,211,31,161,115,150,
19 254,203,160,140,65,134,116,171,112,39,246,223,105,208,70,32,193,140,183,4,
25 189,56,161,166,52,157,72,136,138,65,154,232,147,162,4,136,150,81,115,66,
33 72,218,48,145,4,200,119,89,189,81,49,39,72,147,235,226,233,186,120,121,58,
40 153,4,225,145,27,233,93,22,1,114,62,251,80,69,128,121,247,213,146,228,109,
48 161,89,4,183,25,115,119,86,227,118,83,138,26,103,255,223,209,106,141,25,11,
273 119,117,219,151,150,28,91,50,184,144,40,95,224,0,15,248,64,4,20,78,129,5,
281 105,4,231,191,110,80,67,80,0,24,62,109,252,162,225,199,160,16,212,0,10,7,
286 131,210,4,144,108,123,247,99,195,210,8,250,15,167,118,76,190,39,230,131,52,
303 247,111,238,56,0,127,199,2,49,72,0,0,0,0,0,0,248,127,180,81,36,4,51,166,
[all …]
Dduk_bi_array.c294 /* The extra (+4) is tight. */ in duk_bi_array_prototype_join_shared()
296 DUK__ARRAY_MID_JOIN_LIMIT : len) + 4; in duk_bi_array_prototype_join_shared()
408 duk_put_prop_stridx(ctx, -4, DUK_STRIDX_LENGTH); in duk_bi_array_prototype_push()
832 duk_put_prop_index(ctx, -4, (duk_uarridx_t) (i + item_count)); in duk_bi_array_prototype_splice()
849 /* [ A B C D E F G H ] rel_index = 2, del_count 3, item count 4 in duk_bi_array_prototype_splice()
860 duk_put_prop_index(ctx, -4, (duk_uarridx_t) (i + item_count)); in duk_bi_array_prototype_splice()
881 duk_put_prop_index(ctx, -4, (duk_uarridx_t) (act_start + i)); in duk_bi_array_prototype_splice()
889 duk_put_prop_stridx(ctx, -4, DUK_STRIDX_LENGTH); in duk_bi_array_prototype_splice()
926 duk_put_prop_index(ctx, -4, (duk_uarridx_t) lower); in duk_bi_array_prototype_reverse()
928 duk_del_prop_index(ctx, -4, (duk_uarridx_t) lower); in duk_bi_array_prototype_reverse()
[all …]
Dduk_api_bytecode.c97 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4 + DUK_HSTRING_GET_BYTELEN(h_str), p); in duk__dump_string_prop()
111 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4 + DUK_HBUFFER_GET_SIZE(h_buf), p); in duk__dump_buffer_prop()
114 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4, p); in duk__dump_buffer_prop()
130 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4, p); in duk__dump_uint32_prop()
171 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4 + DUK_HSTRING_GET_BYTELEN(key) + 4, p); in duk__dump_varmap()
176 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4, p); in duk__dump_varmap()
210 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4 + DUK_HSTRING_GET_BYTELEN(varname), p); in duk__dump_formals()
215 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4, p); in duk__dump_formals()
256 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 3 * 4 + 2 * 2 + 3 * 4 + count_instr * 4, p); in duk__dump_func()
310 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 1 + 4 + DUK_HSTRING_GET_BYTELEN(h_str), p), in duk__dump_func()
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/
Dduk_util_hashprime.c27 4, 3, 4, 1, 4, 1, 1, 2, 2, 2, 2, 1, 6, 6, 9, 5, 1, 2, 2, 5, 1, 3, 3, 3,
28 5, 4, 4, 2, 4, 8, 3, 4, 23, 2, 4, 7, 8, 11, 2, 12, 15, 10, 1, 1, 5, 1, 5,
29 8, 9, 17, 14, 10, 7, 5, 2, 46, 21, 1, 9, 9, 4, 4, 10, 23, 36, 6, 20, 29,
30 18, 6, 19, 21, 16, 11, 5, 5, 48, 9, 1, 39, 14, 8, 4, 29, 9, 1, 15, 48, 12,
31 22, 6, 15, 27, 4, 2, 17, 28, 8, 9, 4, 5, 8, 3, 3, 8, 37, 11, 15, 8, 30,
32 43, 6, 33, 41, 5, 20, 32, 41, 38, 24, 77, 14, 19, 11, 4, 35, 18, 19, 41,
Dduk_api_codec.c6 * Base-64: https://tools.ietf.org/html/rfc4648#section-4
30 n_full = srclen / 3; /* full 3-byte -> 4-char conversions */ in duk__base64_encode_helper()
50 dst[1] = duk_base64_enctab[((src[0] << 4) & 0x30) | ((src[1] >> 4) & 0x0f)]; in duk__base64_encode_helper()
53 src += 3; dst += 4; in duk__base64_encode_helper()
63 *dst++ = duk_base64_enctab[(t << 4) & 0x3f]; /* ------XX */ in duk__base64_encode_helper()
73 *dst++ = duk_base64_enctab[(t >> 4) & 0x3f]; /* ------XX XXXX---- */ in duk__base64_encode_helper()
91 snip = 4; in duk__base64_encode_helper()
104 * 0 4 XXXX in duk__base64_encode_helper()
109 DUK_ASSERT(snip >= 2 && snip <= 4); in duk__base64_encode_helper()
111 for (i = 0; i < 4; i++) { in duk__base64_encode_helper()
[all …]
Dduk_selftest.c45 sizeof(duk_int32_t) == 4 && in duk__selftest_types()
46 sizeof(duk_uint32_t) == 4)) { in duk__selftest_types()
62 if (!(sizeof(duk_int_t) >= 4)) { in duk__selftest_types()
73 if (sizeof(void *) > 4) { in duk__selftest_packed_tval()
74 …K_PANIC(DUK_ERR_INTERNAL_ERROR, "self test failed: packed duk_tval in use but sizeof(void *) > 4"); in duk__selftest_packed_tval()
121 u2.c[4] = 0x7c; u2.c[5] = 0xc1; u2.c[6] = 0x37; u2.c[7] = 0x42; in duk__selftest_byte_order()
124 u2.c[4] = 0x00; u2.c[5] = 0x00; u2.c[6] = 0xc4; u2.c[7] = 0x6d; in duk__selftest_byte_order()
127 u2.c[4] = 0x6d; u2.c[5] = 0xc4; u2.c[6] = 0x00; u2.c[7] = 0x00; in duk__selftest_byte_order()
168 du.uc[4] = 0x33; du.uc[5] = 0x44; du.uc[6] = 0x55; du.uc[7] = 0x66; in duk__selftest_bswap_macros()
183 (unsigned int) du.uc[4], (unsigned int) du.uc[5], in duk__selftest_bswap_macros()
[all …]
Dduk_util_bufwriter.c295 duk_uint8_t b[4]; in duk_raw_read_u32_be()
299 DUK_MEMCPY((void *) u.b, (const void *) (*p), (size_t) 4); in duk_raw_read_u32_be()
301 *p += 4; in duk_raw_read_u32_be()
308 duk_uint8_t b[4]; in duk_raw_read_double_be()
312 DUK_MEMCPY((void *) u.b, (const void *) (*p), (size_t) 4); in duk_raw_read_double_be()
315 DUK_MEMCPY((void *) u.b, (const void *) (*p + 4), (size_t) 4); in duk_raw_read_double_be()
336 duk_uint8_t b[4]; in duk_raw_write_u32_be()
341 DUK_MEMCPY((void *) (*p), (const void *) u.b, (size_t) 4); in duk_raw_write_u32_be()
342 *p += 4; in duk_raw_write_u32_be()
348 duk_uint8_t b[4]; in duk_raw_write_double_be()
[all …]
Dduk_builtins.c12 5,52,116,180,104,166,135,52,189,4,98,12,27,178,156,80,211,31,161,115,150,
19 254,203,160,140,65,134,116,171,112,39,246,223,105,208,70,32,193,140,183,4,
25 189,56,161,166,52,157,72,136,138,65,154,232,147,162,4,136,150,81,115,66,
33 72,218,48,145,4,200,119,89,189,81,49,39,72,147,235,226,233,186,120,121,58,
40 153,4,225,145,27,233,93,22,1,114,62,251,80,69,128,121,247,213,146,228,109,
48 161,89,4,183,25,115,119,86,227,118,83,138,26,103,255,223,209,106,141,25,11,
273 119,117,219,151,150,28,91,50,184,144,40,95,224,0,15,248,64,4,20,78,129,5,
281 105,4,231,191,110,80,67,80,0,24,62,109,252,162,225,199,160,16,212,0,10,7,
286 131,210,4,144,108,123,247,99,195,210,8,250,15,167,118,76,190,39,230,131,52,
303 247,111,238,56,0,127,199,2,49,72,0,0,0,0,0,0,248,127,180,81,36,4,51,166,
[all …]
Dduk_bi_array.c294 /* The extra (+4) is tight. */ in duk_bi_array_prototype_join_shared()
296 DUK__ARRAY_MID_JOIN_LIMIT : len) + 4; in duk_bi_array_prototype_join_shared()
408 duk_put_prop_stridx(ctx, -4, DUK_STRIDX_LENGTH); in duk_bi_array_prototype_push()
832 duk_put_prop_index(ctx, -4, (duk_uarridx_t) (i + item_count)); in duk_bi_array_prototype_splice()
849 /* [ A B C D E F G H ] rel_index = 2, del_count 3, item count 4 in duk_bi_array_prototype_splice()
860 duk_put_prop_index(ctx, -4, (duk_uarridx_t) (i + item_count)); in duk_bi_array_prototype_splice()
881 duk_put_prop_index(ctx, -4, (duk_uarridx_t) (act_start + i)); in duk_bi_array_prototype_splice()
889 duk_put_prop_stridx(ctx, -4, DUK_STRIDX_LENGTH); in duk_bi_array_prototype_splice()
926 duk_put_prop_index(ctx, -4, (duk_uarridx_t) lower); in duk_bi_array_prototype_reverse()
928 duk_del_prop_index(ctx, -4, (duk_uarridx_t) lower); in duk_bi_array_prototype_reverse()
[all …]
Dduk_api_bytecode.c97 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4 + DUK_HSTRING_GET_BYTELEN(h_str), p); in duk__dump_string_prop()
111 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4 + DUK_HBUFFER_GET_SIZE(h_buf), p); in duk__dump_buffer_prop()
114 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4, p); in duk__dump_buffer_prop()
130 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4, p); in duk__dump_uint32_prop()
171 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4 + DUK_HSTRING_GET_BYTELEN(key) + 4, p); in duk__dump_varmap()
176 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4, p); in duk__dump_varmap()
210 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4 + DUK_HSTRING_GET_BYTELEN(varname), p); in duk__dump_formals()
215 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 4, p); in duk__dump_formals()
256 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 3 * 4 + 2 * 2 + 3 * 4 + count_instr * 4, p); in duk__dump_func()
310 p = DUK_BW_ENSURE_RAW(thr, bw_ctx, 1 + 4 + DUK_HSTRING_GET_BYTELEN(h_str), p), in duk__dump_func()
[all …]
Dduk_hthread.h41 #define DUK_CATCHSTACK_GROW_STEP 4 /* roughly 64 bytes */
43 #define DUK_CATCHSTACK_SHRINK_SPARE 4 /* roughly 64 bytes */
44 #define DUK_CATCHSTACK_INITIAL_SIZE 4
55 #define DUK_ACT_FLAG_DIRECT_EVAL (1 << 4) /* activation is a direct eval call */
70 /* flags field: LLLLLLFT, L = label (24 bits), F = flags (4 bits), T = type (4 bits) */
72 #define DUK_CAT_TYPE_BITS 4
77 #define DUK_CAT_FLAG_CATCH_ENABLED (1 << 4) /* catch part will catch */
143 #define DUK_HTHREAD_STATE_YIELDED 4 /* thread has yielded */
244 /* Note: it's nice if size is 2^N (not 4x4 = 16 bytes on 32 bit) */
/civetweb-2.7.6/
Dmingw.cmd70 @call :log 4 "Removing old log file %log_folder%\%%f"
103 :: %4 - Exception model [optional]
115 @set "exceptions=%~4"
190 :: %4 - Target architecture
202 @set "arch=%~4"
251 @set "http=%archive_path:~0,4%"
383 :: %4 - Version of MinGW to get [optional]
396 @set "version=%~4"
424 :: %4 - The version of the compiler
438 @set "version=%~4"
[all …]
Dbuild.cmd73 call :log 4 "Removing old log file %log_folder%\%%f"
252 @set "build_command=^"!msbuild_executable!^" /m:4 /p:Configuration=%build_type% %project%.sln"
324 @call :log 4 "cmd = %cmd%"
325 @call :log 4 "arg1 = %arg1%"
326 @call :log 4 "arg2 = %arg2%"
327 @call :log 4 "rest = %rest%"
328 @call :log 4 "src = %~f0"
350 @call :log 4 "arch = %arch%"
376 :: %4 - The revision version number return variable
383 @set win_ver_rev=%win_ver:~4%
[all …]
/civetweb-2.7.6/VisualStudio/
Dcivetweb.sln8 {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD} = {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD}
17 …C942}") = "duktape_lib", "duktape_lib\duktape_lib.vcxproj", "{0A11689C-DB6A-4BF6-97B2-AD32DB863FBD…
57 {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD}.Debug|Win32.ActiveCfg = Debug|Win32
58 {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD}.Debug|Win32.Build.0 = Debug|Win32
59 {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD}.Debug|x64.ActiveCfg = Debug|x64
60 {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD}.Debug|x64.Build.0 = Debug|x64
61 {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD}.Release|Win32.ActiveCfg = Release|Win32
62 {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD}.Release|Win32.Build.0 = Release|Win32
63 {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD}.Release|x64.ActiveCfg = Release|x64
64 {0A11689C-DB6A-4BF6-97B2-AD32DB863FBD}.Release|x64.Build.0 = Release|x64
/civetweb-2.7.6/unittest/
Dprivate.c109 int lenhdr12 = lenreq12 - 4; /* length without body */ in START_TEST()
159 * (https://tools.ietf.org/html/rfc7230#section-3.2.4). */ in START_TEST()
294 ck_assert_int_eq(4, match_prefix("/api", 4, "/api")); in START_TEST()
297 ck_assert_int_eq(4, match_prefix("/*/", 3, "/ab/c")); in START_TEST()
309 ck_assert_int_eq(-1, match_prefix("**/$", 4, "/a/b/c")); in START_TEST()
310 ck_assert_int_eq(5, match_prefix("**/$", 4, "/a/b/")); in START_TEST()
315 ck_assert_int_eq(-1, match_prefix("**/$", 4, "/a/b/c")); in START_TEST()
316 ck_assert_int_eq(5, match_prefix("**/$", 4, "/a/b/")); in START_TEST()
321 ck_assert_int_eq(5, match_prefix("**o$", 4, "HELLO")); in START_TEST()
370 ck_assert_int_eq(4, get_uri_type("http://somewhere:8080/")); in START_TEST()
[all …]
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
Dlobject.c57 0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, in luaO_ceillog2()
135 e *= -4; /* each fractional digit divides value by 2^-4 */ in lua_strx2number()
208 char buff[4*sizeof(void *) + 8]; /* should be enough space for a `%p' */ in luaO_pushvfstring()
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/
Dlobject.c56 0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, in luaO_log2()
144 char buff[4*sizeof(void *) + 8]; /* should be enough space for a `%p' */ in luaO_pushvfstring()
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlobject.c44 while (x >= (8 << 4)) { /* coarse steps */ in luaO_int2fb()
45 x = (x + 0xf) >> 4; /* x = ceil(x / 16) */ in luaO_int2fb()
46 e += 4; in luaO_int2fb()
67 0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, in luaO_ceillog2()
224 e *= 4; /* each digit multiplies/divides value by 2^4 */ in lua_strx2number()
437 char buff[4*sizeof(void *) + 8]; /* should be enough space for a '%p' */ in luaO_pushvfstring()

12345678910>>...14