Home
last modified time | relevance | path

Searched full:8 (Results 1 – 25 of 305) sorted by relevance

12345678910>>...13

/civetweb-2.7.6/src/third_party/lua-5.1.5/src/
Dlobject.c41 if (x < 8) return x; in luaO_int2fb()
42 else return ((e+1) << 3) | (cast_int(x) - 8); in luaO_int2fb()
50 else return ((x & 7)+8) << (e - 1); in luaO_fb2int()
60 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, in luaO_log2()
61 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, in luaO_log2()
62 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, in luaO_log2()
63 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 in luaO_log2()
66 while (x >= 256) { l += 8; x >>= 8; } 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.2.4/src/
Dlobject.c38 if (x < 8) return x; in luaO_int2fb()
43 return ((e+1) << 3) | (cast_int(x) - 8); in luaO_int2fb()
51 else return ((x & 7) + 8) << (e - 1); in luaO_fb2int()
61 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, in luaO_ceillog2()
62 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, in luaO_ceillog2()
63 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, in luaO_ceillog2()
64 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 in luaO_ceillog2()
68 while (x >= 256) { l += 8; x >>= 8; } in luaO_ceillog2()
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.3.5/src/
Dlobject.c43 if (x < 8) return x; in luaO_int2fb()
44 while (x >= (8 << 4)) { /* coarse steps */ in luaO_int2fb()
48 while (x >= (8 << 1)) { /* fine steps */ in luaO_int2fb()
52 return ((e+1) << 3) | (cast_int(x) - 8); in luaO_int2fb()
58 return (x < 8) ? x : ((x & 7) + 8) << ((x >> 3) - 1); in luaO_fb2int()
71 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, in luaO_ceillog2()
72 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, in luaO_ceillog2()
73 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, in luaO_ceillog2()
74 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 in luaO_ceillog2()
78 while (x >= 256) { l += 8; x >>= 8; } in luaO_ceillog2()
[all …]
/civetweb-2.7.6/test/
DHugeText.lua11 ['%'] = {35,19,8,100,98},
16 ['*'] = {20,8,62,8,20},
17 ['+'] = {8,8,62,8,8},
19 ['-'] = {8,8,8,8,8},
21 ['/'] = {32,16,8,4,2},
30 ['8'] = {54,73,73,73,54},
34 ['<'] = {8,20,34,65,0},
36 ['>'] = {0,65,34,20,8},
46 ['H'] = {127,8,8,8,127},
49 ['K'] = {127,8,20,34,65},
[all …]
Dresource_script_demo.lua16 mg.write("Content-Type: text/html; charset=utf-8\r\n")
31 mg.write("Content-Type: text/html; charset=utf-8\r\n")
38 mg.write("Content-Type: text/html; charset=utf-8\r\n")
55 mg.write("Content-Type: text/html; charset=utf-8\r\n")
69 mg.write("Content-Type: text/html; charset=utf-8\r\n")
86 mg.write("Content-Type: text/html; charset=utf-8\r\n")
101 mg.write("Content-Type: text/html; charset=utf-8\r\n")
109 mg.write("Content-Type: text/html; charset=utf-8\r\n")
120 mg.write("Content-Type: text/html; charset=utf-8\r\n")
/civetweb-2.7.6/VisualStudio/
Dcivetweb.sln6 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "civetweb_lua", "civetweb_lua\civetweb_lua.vcxp…
11 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lua_lib", "lua_lib\lua_lib.vcxproj", "{8F5E5D7…
13 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_embedded_c", "ex_embedded_c\ex_embedded_c.v…
15 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unit_test", "unit_test\unit_test.vcxproj", "{1…
17 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "duktape_lib", "duktape_lib\duktape_lib.vcxproj…
19 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_embed_cpp", "ex_embed_cpp\ex_embed_cpp.vcxp…
37 {8F5E5D77-D269-4665-9E27-1045DA6CF0D8}.Debug|Win32.ActiveCfg = Debug|Win32
38 {8F5E5D77-D269-4665-9E27-1045DA6CF0D8}.Debug|Win32.Build.0 = Debug|Win32
39 {8F5E5D77-D269-4665-9E27-1045DA6CF0D8}.Debug|x64.ActiveCfg = Debug|x64
40 {8F5E5D77-D269-4665-9E27-1045DA6CF0D8}.Debug|x64.Build.0 = Debug|x64
[all …]
/civetweb-2.7.6/VisualStudio/civetweb_yassl/
Dcivetweb_yassl.sln4 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "civetweb_yassl", "civetweb_yassl\civetweb_yass…
6 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "yassl_lib", "yassl_lib\yassl_lib.vcxproj", "{8
24 {8C0C878B-BBD6-4241-BCA6-61753FFCC7F1}.Debug|Win32.ActiveCfg = Debug|Win32
25 {8C0C878B-BBD6-4241-BCA6-61753FFCC7F1}.Debug|Win32.Build.0 = Debug|Win32
26 {8C0C878B-BBD6-4241-BCA6-61753FFCC7F1}.Debug|x64.ActiveCfg = Debug|x64
27 {8C0C878B-BBD6-4241-BCA6-61753FFCC7F1}.Debug|x64.Build.0 = Debug|x64
28 {8C0C878B-BBD6-4241-BCA6-61753FFCC7F1}.Release|Win32.ActiveCfg = Release|Win32
29 {8C0C878B-BBD6-4241-BCA6-61753FFCC7F1}.Release|Win32.Build.0 = Release|Win32
30 {8C0C878B-BBD6-4241-BCA6-61753FFCC7F1}.Release|x64.ActiveCfg = Release|x64
31 {8C0C878B-BBD6-4241-BCA6-61753FFCC7F1}.Release|x64.Build.0 = Release|x64
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/
Dduk_builtins.c11 79,104,209,144,168,105,6,78,182,139,90,122,8,154,140,35,103,35,117,193,73,
14 128,153,201,228,201,205,2,250,8,196,24,232,104,82,146,40,232,193,48,118,
17 160,140,65,133,246,136,108,254,199,237,186,8,196,24,87,80,217,253,159,217,
35 44,141,3,8,137,187,178,156,80,211,26,110,242,100,230,146,120,121,8,48,76,6,
38 214,209,129,36,85,190,206,32,17,6,9,128,141,3,8,130,161,100,235,64,194,24,
46 140,228,185,130,9,19,237,190,208,73,184,146,35,68,146,163,8,50,178,99,136,
242 243,195,44,94,92,183,242,13,79,8,45,14,91,252,121,148,52,199,120,63,72,105,
245 158,0,8,161,174,76,10,96,2,42,26,228,192,174,0,26,161,174,76,11,96,3,74,26,
253 166,146,11,67,150,255,30,77,24,58,113,64,243,92,8,27,0,68,217,130,70,212,
265 135,110,94,109,100,131,99,229,151,15,76,172,168,8,89,217,16,201,151,54,157,
[all …]
Dduk_hbuffer.h216 #if (DUK_USE_ALIGN_BY == 8) && defined(DUK_USE_PACK_MSVC_PRAGMA)
217 #pragma pack(push, 8)
222 * the struct is effectively forced to be a multiple of 4 or 8 bytes
237 #elif (DUK_USE_ALIGN_BY == 8)
249 * buffer data will be aligned-by-4 but not necessarily aligned-by-8.
253 * by 8 is required, the struct size must be forced to be a multiple
254 * of 8 by some means. Without it, some user code may break, and also
259 #if (DUK_USE_ALIGN_BY == 8) && defined(DUK_USE_PACK_GCC_ATTR)
260 __attribute__ ((aligned (8)))
261 #elif (DUK_USE_ALIGN_BY == 8) && defined(DUK_USE_PACK_CLANG_ATTR)
[all …]
Dduk_util_hashprime.c28 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,
Dduk_hstring.h4 * Strings are byte sequences ordinarily stored in extended UTF-8 format,
5 * allowing values larger than the official UTF-8 range (used internally)
6 * and also allowing UTF-8 encoding of surrogate pairs (CESU-8 format).
7 * Strings may also be invalid UTF-8 altogether which is the case e.g. with
12 * 16-bit codepoint can take 3 bytes in CESU-8, this representation can only
35 /* XXX: could add flags for "is valid CESU-8" (Ecmascript compatible strings),
36 * "is valid UTF-8", "is valid extended UTF-8" (internal strings are not,
192 * (but not alignment-by-8).
Dduk_util_bitencoder.c11 DUK_ASSERT(ctx->currbits < 8); in duk_be_encode()
19 while (ctx->currbits >= 8) { in duk_be_encode()
21 tmp = (duk_uint8_t) ((ctx->currval >> (ctx->currbits - 8)) & 0xff); in duk_be_encode()
28 ctx->currbits -= 8; in duk_be_encode()
36 DUK_ASSERT(ctx->currbits < 8); in duk_be_finish()
38 npad = (duk_small_int_t) (8 - ctx->currbits); in duk_be_finish()
Dduk_selftest.c16 duk_uint8_t c[8];
33 duk_uint8_t c[8];
47 DUK_PANIC(DUK_ERR_INTERNAL_ERROR, "self test failed: duk_(u)int{8,16,32}_t size"); in duk__selftest_types()
50 if (!(sizeof(duk_int64_t) == 8 && in duk__selftest_types()
51 sizeof(duk_uint64_t) == 8)) { in duk__selftest_types()
195 if (sizeof(duk__test_double_union) != 8) { in duk__selftest_double_union_size()
262 #elif (DUK_USE_ALIGN_BY == 8) in duk__selftest_struct_align()
263 if ((sizeof(duk_hbuffer_fixed) % 8) != 0) { in duk__selftest_struct_align()
264 DUK_PANIC(DUK_ERR_INTERNAL_ERROR, "self test failed: sizeof(duk_hbuffer_fixed) not aligned to 8"); in duk__selftest_struct_align()
Dduk_hobject.h45 #define DUK_HOBJECT_FLAG_ARRAY_PART DUK_HEAPHDR_USER_FLAG(8) /* object has an array pa…
85 #define DUK_HOBJECT_CLASS_MATH 8
369 #elif (DUK_USE_ALIGN_BY == 8)
370 #define DUK_HOBJECT_E_FLAG_PADDING(e_sz) ((8 - (e_sz)) & 0x07)
647 /* if new_size < L * old_size, resize without abandon check; L = 3-bit fixed point, e.g. 9 -> 9/8 =…
650 /* if density < L, abandon array part, L = 3-bit fixed point, e.g. 2 -> 2/8 = 25% */
651 /* limit is quite low: one array entry is 8 bytes, one normal entry is 4+1+8+4 = 17 bytes (with has…
657 #elif (DUK_USE_ALIGN_BY == 8)
658 #define DUK_HOBJECT_ALIGN_TARGET 8
667 #define DUK_HOBJECT_E_MIN_GROW_DIVISOR 8 /* 2^3 -> 1/8 = 12.5% min growth */
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/
Dduk_builtins.c11 79,104,209,144,168,105,6,78,182,139,90,122,8,154,140,35,103,35,117,193,73,
14 128,153,201,228,201,205,2,250,8,196,24,232,104,82,146,40,232,193,48,118,
17 160,140,65,133,246,136,108,254,199,237,186,8,196,24,87,80,217,253,159,217,
35 44,141,3,8,137,187,178,156,80,211,26,110,242,100,230,146,120,121,8,48,76,6,
38 214,209,129,36,85,190,206,32,17,6,9,128,141,3,8,130,161,100,235,64,194,24,
46 140,228,185,130,9,19,237,190,208,73,184,146,35,68,146,163,8,50,178,99,136,
242 243,195,44,94,92,183,242,13,79,8,45,14,91,252,121,148,52,199,120,63,72,105,
245 158,0,8,161,174,76,10,96,2,42,26,228,192,174,0,26,161,174,76,11,96,3,74,26,
253 166,146,11,67,150,255,30,77,24,58,113,64,243,92,8,27,0,68,217,130,70,212,
265 135,110,94,109,100,131,99,229,151,15,76,172,168,8,89,217,16,201,151,54,157,
[all …]
Dduk_hbuffer.h216 #if (DUK_USE_ALIGN_BY == 8) && defined(DUK_USE_PACK_MSVC_PRAGMA)
217 #pragma pack(push, 8)
222 * the struct is effectively forced to be a multiple of 4 or 8 bytes
237 #elif (DUK_USE_ALIGN_BY == 8)
249 * buffer data will be aligned-by-4 but not necessarily aligned-by-8.
253 * by 8 is required, the struct size must be forced to be a multiple
254 * of 8 by some means. Without it, some user code may break, and also
259 #if (DUK_USE_ALIGN_BY == 8) && defined(DUK_USE_PACK_GCC_ATTR)
260 __attribute__ ((aligned (8)))
261 #elif (DUK_USE_ALIGN_BY == 8) && defined(DUK_USE_PACK_CLANG_ATTR)
[all …]
Dduk_util_hashprime.c28 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,
Dduk_hstring.h4 * Strings are byte sequences ordinarily stored in extended UTF-8 format,
5 * allowing values larger than the official UTF-8 range (used internally)
6 * and also allowing UTF-8 encoding of surrogate pairs (CESU-8 format).
7 * Strings may also be invalid UTF-8 altogether which is the case e.g. with
12 * 16-bit codepoint can take 3 bytes in CESU-8, this representation can only
35 /* XXX: could add flags for "is valid CESU-8" (Ecmascript compatible strings),
36 * "is valid UTF-8", "is valid extended UTF-8" (internal strings are not,
192 * (but not alignment-by-8).
Dduk_util_bitencoder.c11 DUK_ASSERT(ctx->currbits < 8); in duk_be_encode()
19 while (ctx->currbits >= 8) { in duk_be_encode()
21 tmp = (duk_uint8_t) ((ctx->currval >> (ctx->currbits - 8)) & 0xff); in duk_be_encode()
28 ctx->currbits -= 8; in duk_be_encode()
36 DUK_ASSERT(ctx->currbits < 8); in duk_be_finish()
38 npad = (duk_small_int_t) (8 - ctx->currbits); in duk_be_finish()
Dduk_selftest.c16 duk_uint8_t c[8];
33 duk_uint8_t c[8];
47 DUK_PANIC(DUK_ERR_INTERNAL_ERROR, "self test failed: duk_(u)int{8,16,32}_t size"); in duk__selftest_types()
50 if (!(sizeof(duk_int64_t) == 8 && in duk__selftest_types()
51 sizeof(duk_uint64_t) == 8)) { in duk__selftest_types()
195 if (sizeof(duk__test_double_union) != 8) { in duk__selftest_double_union_size()
262 #elif (DUK_USE_ALIGN_BY == 8) in duk__selftest_struct_align()
263 if ((sizeof(duk_hbuffer_fixed) % 8) != 0) { in duk__selftest_struct_align()
264 DUK_PANIC(DUK_ERR_INTERNAL_ERROR, "self test failed: sizeof(duk_hbuffer_fixed) not aligned to 8"); in duk__selftest_struct_align()
/civetweb-2.7.6/src/third_party/duktape-1.8.0/examples/codepage-conv/
Dduk_codepage_conv.c2 * Convert an 8-bit input string (e.g. ISO-8859-1) into CESU-8.
6 * This is useful when input data is in non-UTF-8 format and must
7 * be converted at runtime, e.g. when compiling non-UTF-8 source
13 /* Decode an 8-bit string using 'codepage' into Unicode codepoints and
14 * re-encode into CESU-8. Codepage argument must point to a 256-entry
40 /* In CESU-8 all codepoints in [0x0000,0xFFFF] are in duk_decode_string_codepage()
DREADME.rst4 Example of how to convert an 8-bit input string (e.g. ISO-8859-1 or Windows
5 codepage 1252) into CESU-8 without using an external library like iconv.
7 This is useful e.g. when compiling non-UTF-8 source code which cannot be
8 converted to UTF-8 (CESU-8) at build time.
/civetweb-2.7.6/src/third_party/duktape-1.5.2/examples/codepage-conv/
Dduk_codepage_conv.c2 * Convert an 8-bit input string (e.g. ISO-8859-1) into CESU-8.
6 * This is useful when input data is in non-UTF-8 format and must
7 * be converted at runtime, e.g. when compiling non-UTF-8 source
13 /* Decode an 8-bit string using 'codepage' into Unicode codepoints and
14 * re-encode into CESU-8. Codepage argument must point to a 256-entry
40 /* In CESU-8 all codepoints in [0x0000,0xFFFF] are in duk_decode_string_codepage()
DREADME.rst4 Example of how to convert an 8-bit input string (e.g. ISO-8859-1 or Windows
5 codepage 1252) into CESU-8 without using an external library like iconv.
7 This is useful e.g. when compiling non-UTF-8 source code which cannot be
8 converted to UTF-8 (CESU-8) at build time.
/civetweb-2.7.6/src/
Dsha1.inl23 greater than 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update().
25 Since the file IO in main() reads 16K at a time, any file 8K or larger would
44 Modified 8/98
119 | (rol(block->l[i], 8) & 0x00FF00FF);
126 rol((block)->l[((i) + 13) & 15] ^ (block)->l[((i) + 8) & 15] \
174 R0(c, d, e, a, b, 8);
301 uint8_t finalcount[8];
303 for (i = 0; i < 8; i++) {
305 (uint8_t)((context->count[(i >= 4 ? 0 : 1)] >> ((3 - (i & 3)) * 8))
312 SHA1_Update(context, finalcount, 8); /* Should cause a SHA1_Transform() */
[all …]

12345678910>>...13