Home
last modified time | relevance | path

Searched full:10 (Results 1 – 25 of 193) sorted by relevance

12345678

/civetweb-2.7.6/src/third_party/duktape-1.8.0/debugger/static/
Dstyle.css19 padding: 20px 0px 20px 10px;
40 margin-bottom: 10px;
44 margin-bottom: 10px;
49 margin-bottom: 10px;
82 border-radius: 10px;
85 margin-right: 10px;
90 border-radius: 10px;
107 margin: 10px 0 0 0;
209 margin-top: 10px;
236 margin-top: 10px;
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/debugger/static/
Dstyle.css19 padding: 20px 0px 20px 10px;
40 margin-bottom: 10px;
44 margin-bottom: 10px;
49 margin-bottom: 10px;
82 border-radius: 10px;
85 margin-right: 10px;
90 border-radius: 10px;
107 margin: 10px 0 0 0;
209 margin-top: 10px;
236 margin-top: 10px;
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/
Dduk_unicode_support.c73 * 6 bytes total. Codepoints above U+10FFFF encode as 6 bytes in duk_unicode_get_cesu8_length()
120 * DUK_UNICODE_MAX_CESU8_LENGTH bytes; codepoints above U+10FFFF
148 * 20-bit codepoint, 10 bits (A and B) per surrogate pair: in duk_unicode_encode_cesu8()
151 * sp1 = 0b110110AA AAAAAAAA (0xd800 + ((x >> 10) & 0x3ff)) in duk_unicode_encode_cesu8()
172 out[2] = (duk_uint8_t) (0x80 + ((x >> 10) & 0x3f)); in duk_unicode_encode_cesu8()
207 /* 10xx xxxx -> invalid */ in duk_unicode_decode_xutf8()
210 /* 110x xxxx 10xx xxxx [11 bits] */ in duk_unicode_decode_xutf8()
214 /* 1110 xxxx 10xx xxxx 10xx xxxx [16 bits] */ in duk_unicode_decode_xutf8()
218 /* 1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx [21 bits] */ in duk_unicode_decode_xutf8()
222 /* 1111 10xx 10xx xxxx 10xx xxxx 10xx xxxx 10xx xxxx [26 bits] */ in duk_unicode_decode_xutf8()
[all …]
Dduk_builtins.c52 235,63,239,69,163,69,247,83,141,9,255,165,12,72,5,16,64,145,10,32,76,71,64,
58 228,100,49,238,140,203,42,60,145,35,104,181,146,113,161,10,80,46,68,82,24,
230 104,105,115,44,68,117,107,116,97,112,101,41,59,10,0,
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,
249 40,76,94,216,118,69,229,203,127,35,41,10,165,135,118,124,177,121,114,223,
281 105,4,231,191,110,80,67,80,0,24,62,109,252,162,225,199,160,16,212,0,10,7,
283 15,192,0,97,124,178,228,235,143,45,45,57,244,116,8,63,255,255,10,39,248,0,
285 202,10,49,128,10,35,1,6,199,163,15,40,61,32,9,10,199,163,15,40,123,242,101,
294 150,157,177,160,131,115,235,139,159,78,81,72,10,47,248,0,3,254,40,17,138,
300 0,0,3,10,44,68,9,216,8,20,49,130,15,211,124,109,62,50,228,95,36,55,166,248,
[all …]
Dduk_util_hashprime.c22 #define DUK__HASH_SIZE_RATIO 1177 /* floor(1.15 * (1 << 10)) */
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,
33 10, 23, 16, 9, 2,
59 curr = (duk_uint32_t) ((((duk_uint64_t) curr) * ((duk_uint64_t) DUK__HASH_SIZE_RATIO)) >> 10); in duk_util_get_hash_prime()
Dduk_lexer.c124 * U+10FFFF, causing an error if the input is unparseable. Leniency means:
241 /* 10xx xxxx -> invalid */ in duk__fill_lexer_buffer()
244 /* 110x xxxx 10xx xxxx */ in duk__fill_lexer_buffer()
251 /* 1110 xxxx 10xx xxxx 10xx xxxx */ in duk__fill_lexer_buffer()
258 /* 1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx */ in duk__fill_lexer_buffer()
278 /* check that byte has the form 10xx xxxx */ in duk__fill_lexer_buffer()
405 /* 10xx xxxx -> invalid */ in duk__read_char()
408 /* 110x xxxx 10xx xxxx */ in duk__read_char()
415 /* 1110 xxxx 10xx xxxx 10xx xxxx */ in duk__read_char()
422 /* 1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx */ in duk__read_char()
[all …]
Dduk_bi_number.c100 radix = 10; in duk_bi_number_prototype_to_string()
150 10 /*radix*/, in duk_bi_number_prototype_to_fixed()
184 10 /*radix*/, in duk_bi_number_prototype_to_exponential()
227 10 /*radix*/, in duk_bi_number_prototype_to_precision()
Dduk_js_ops.c168 duk_numconv_parse(ctx, 10 /*radix*/, s2n_flags); in duk__tonumber_string_raw()
1320 if (blen == 0 || blen > 10) { in duk_js_to_arrayindex_raw_string()
1336 /* Careful overflow handling. When multiplying by 10: in duk_js_to_arrayindex_raw_string()
1337 * - 0x19999998 x 10 = 0xfffffff0: no overflow, and adding in duk_js_to_arrayindex_raw_string()
1339 * - 0x19999999 x 10 = 0xfffffffa: no overflow, adding in duk_js_to_arrayindex_raw_string()
1341 * - 0x1999999a x 10 = 0x100000004: always overflow. in duk_js_to_arrayindex_raw_string()
1357 res = res * 10U + (duk_uint32_t) (c - DUK_ASC_0); in duk_js_to_arrayindex_raw_string()
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/
Dduk_unicode_support.c73 * 6 bytes total. Codepoints above U+10FFFF encode as 6 bytes in duk_unicode_get_cesu8_length()
120 * DUK_UNICODE_MAX_CESU8_LENGTH bytes; codepoints above U+10FFFF
148 * 20-bit codepoint, 10 bits (A and B) per surrogate pair: in duk_unicode_encode_cesu8()
151 * sp1 = 0b110110AA AAAAAAAA (0xd800 + ((x >> 10) & 0x3ff)) in duk_unicode_encode_cesu8()
172 out[2] = (duk_uint8_t) (0x80 + ((x >> 10) & 0x3f)); in duk_unicode_encode_cesu8()
207 /* 10xx xxxx -> invalid */ in duk_unicode_decode_xutf8()
210 /* 110x xxxx 10xx xxxx [11 bits] */ in duk_unicode_decode_xutf8()
214 /* 1110 xxxx 10xx xxxx 10xx xxxx [16 bits] */ in duk_unicode_decode_xutf8()
218 /* 1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx [21 bits] */ in duk_unicode_decode_xutf8()
222 /* 1111 10xx 10xx xxxx 10xx xxxx 10xx xxxx 10xx xxxx [26 bits] */ in duk_unicode_decode_xutf8()
[all …]
Dduk_builtins.c52 235,63,239,69,163,69,247,83,141,9,255,165,12,72,5,16,64,145,10,32,76,71,64,
58 228,100,49,238,140,203,42,60,145,35,104,181,146,113,161,10,80,46,68,82,24,
230 104,105,115,44,68,117,107,116,97,112,101,41,59,10,0,
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,
249 40,76,94,216,118,69,229,203,127,35,41,10,165,135,118,124,177,121,114,223,
281 105,4,231,191,110,80,67,80,0,24,62,109,252,162,225,199,160,16,212,0,10,7,
283 15,192,0,97,124,178,228,235,143,45,45,57,244,116,8,63,255,255,10,39,248,0,
285 202,10,49,128,10,35,1,6,199,163,15,40,61,32,9,10,199,163,15,40,123,242,101,
294 150,157,177,160,131,115,235,139,159,78,81,72,10,47,248,0,3,254,40,17,138,
300 0,0,3,10,44,68,9,216,8,20,49,130,15,211,124,109,62,50,228,95,36,55,166,248,
[all …]
Dduk_util_hashprime.c22 #define DUK__HASH_SIZE_RATIO 1177 /* floor(1.15 * (1 << 10)) */
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,
33 10, 23, 16, 9, 2,
59 curr = (duk_uint32_t) ((((duk_uint64_t) curr) * ((duk_uint64_t) DUK__HASH_SIZE_RATIO)) >> 10); in duk_util_get_hash_prime()
Dduk_lexer.c124 * U+10FFFF, causing an error if the input is unparseable. Leniency means:
241 /* 10xx xxxx -> invalid */ in duk__fill_lexer_buffer()
244 /* 110x xxxx 10xx xxxx */ in duk__fill_lexer_buffer()
251 /* 1110 xxxx 10xx xxxx 10xx xxxx */ in duk__fill_lexer_buffer()
258 /* 1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx */ in duk__fill_lexer_buffer()
278 /* check that byte has the form 10xx xxxx */ in duk__fill_lexer_buffer()
405 /* 10xx xxxx -> invalid */ in duk__read_char()
408 /* 110x xxxx 10xx xxxx */ in duk__read_char()
415 /* 1110 xxxx 10xx xxxx 10xx xxxx */ in duk__read_char()
422 /* 1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx */ in duk__read_char()
[all …]
Dduk_bi_number.c100 radix = 10; in duk_bi_number_prototype_to_string()
150 10 /*radix*/, in duk_bi_number_prototype_to_fixed()
184 10 /*radix*/, in duk_bi_number_prototype_to_exponential()
227 10 /*radix*/, in duk_bi_number_prototype_to_precision()
/civetweb-2.7.6/test/
Dpage_shared.lua53 for i=1,10 do
58 for i=1,10 do
59 shared[i] = shared[(i + 1) % 10 + 1] or i
62 for i=1,10 do
108 mg.write("__add(x, 10) = " .. shared.__add("x", 10) .. "\n")
109 mg.write("__add(y, -10) = " .. shared.__add("y", -10) .. "\n")
Dexploit.pl6 # Codded By SkOd, 05/10/2006
28 print("Codded By SkOd, 05/10/2006\n");
69 # milw0rm.com [2006-10-05]
/civetweb-2.7.6/unittest/
Dtimertest.c82 int c[10]; in START_TEST()
102 mg_sleep(10000); /* Sleep 10 second - timers will run */ in START_TEST()
133 int c[10]; in START_TEST()
144 c[0] = 10; in START_TEST()
178 int c[10]; in START_TEST()
189 c[0] = 10; in START_TEST()
223 int c[10]; in START_TEST()
Dpublic_func.c166 ck_assert(((int)default_options[i].type) < 10); in START_TEST()
288 ck_assert_int_eq(ret, 10); in START_TEST()
386 ck_assert_int_eq(ret, 10); in START_TEST()
394 ck_assert_int_eq(ret, 10); in START_TEST()
/civetweb-2.7.6/src/
Dmd5.inl31 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5);
129 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5).
302 SET(c, d, a, b, 10, 17, T11);
324 SET(d, a, b, c, 10, 9, T22);
353 SET(b, c, d, a, 10, 23, T40);
374 SET(d, a, b, c, 7, 10, T50);
378 SET(d, a, b, c, 3, 10, T54);
379 SET(c, d, a, b, 10, 15, T55);
382 SET(d, a, b, c, 15, 10, T58);
386 SET(d, a, b, c, 11, 10, T62);
Dmain.c419 return (unsigned)x - (unsigned)'A' + 10u;
422 return (unsigned)x - (unsigned)'a' + 10u;
1109 port = strtoul(host + sep + 1, &endp, 10); in run_client()
1940 10, in get_password()
1963 10, in get_password()
1986 10, in get_password()
2196 x = 10 + (WIDTH / 2) * (nelems % 2); in show_settings_dialog()
2263 WIDTH - 10, in show_settings_dialog()
2266 y += 10; in show_settings_dialog()
2414 10, in change_password_file()
[all …]
/civetweb-2.7.6/examples/_obsolete/ws_server/
Dws_server.c46 /* second meter 0 to 500, by 10 every 0.5 second */ in ws_server_thread()
47 { 500, 10, 5, 0 }, in ws_server_thread()
48 /* third meter 0 to 100, by 10 every 1.0 second */ in ws_server_thread()
49 { 100, 10, 10, 0}, in ws_server_thread()
/civetweb-2.7.6/src/third_party/lua-5.1.5/test/
Dcf.lua3 for c0=-20,50-1,10 do
5 for c=c0,c0+10-1 do
11 for c=c0,c0+10-1 do
/civetweb-2.7.6/examples/rest/cJSON/
DcJSON.c555 h += (unsigned int) 10 + input[i] - 'A'; in parse_hex4()
559 h += (unsigned int) 10 + input[i] - 'a'; in parse_hex4()
633 codepoint = 0x10000 + (((first_code & 0x3FF) << 10) | (second_code & 0x3FF)); in utf16_literal_to_utf8()
643 * 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */ in utf16_literal_to_utf8()
651 /* two bytes, encoding 110xxxxx 10xxxxxx */ in utf16_literal_to_utf8()
657 /* three bytes, encoding 1110xxxx 10xxxxxx 10xxxxxx */ in utf16_literal_to_utf8()
663 /* four bytes, encoding 1110xxxx 10xxxxxx 10xxxxxx 10xxxxxx */ in utf16_literal_to_utf8()
676 /* 10xxxxxx */ in utf16_literal_to_utf8()
/civetweb-2.7.6/src/third_party/lua-5.3.5/doc/
Dlua.11 .\" $Id: lua.man,v 1.14 2016/10/17 15:43:50 lhf Exp $
2 .TH LUA 1 "$Date: 2016/10/17 15:43:50 $"
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlobject.c165 else return (ltolower(c) - 'a') + 10; in luaO_hexavalue()
233 exp1 = exp1 * 10 + *(s++) - '0'; in lua_strx2number()
296 #define MAXBY10 cast(lua_Unsigned, LUA_MAXINTEGER / 10)
297 #define MAXLASTD cast_int(LUA_MAXINTEGER % 10)
318 a = a * 10 + d; in l_str2int()
/civetweb-2.7.6/examples/_obsolete/ws_server/docroot/
Dindex.html27 margin: auto 10px;
59 padding: 10px;
237 // for Internet Explorer < 10 there are options for websocket support that

12345678