/third_party/node/test/fixtures/test-runner/output/ |
D | spec_reporter_cli.snapshot | 1 sync pass todo (*ms) # TODO 2 sync pass todo with message (*ms) # this is a passing todo 3 sync fail todo (*ms) # TODO 13 sync fail todo with message (*ms) # this is a failing todo 23 sync skip pass (*ms) # SKIP 24 sync skip pass with message (*ms) # this is skipped 25 sync pass (*ms) 27 sync throw fail (*ms) 37 async skip pass (*ms) # SKIP 38 async pass (*ms) [all …]
|
D | spec_reporter.snapshot | 1 sync pass todo (*ms) # TODO 2 sync pass todo with message (*ms) # this is a passing todo 3 sync fail todo (*ms) # TODO 13 sync fail todo with message (*ms) # this is a failing todo 23 sync skip pass (*ms) # SKIP 24 sync skip pass with message (*ms) # this is skipped 25 sync pass (*ms) 27 sync throw fail (*ms) 37 async skip pass (*ms) # SKIP 38 async pass (*ms) [all …]
|
D | default_output.snapshot | 1 [32m✔ should pass [90m(*ms)[39m[39m 2 [31m✖ should fail [90m(*ms)[39m[39m 12 [90m﹣ should skip [90m(*ms)[39m # SKIP[39m 14 [31m✖ should fail [90m(*ms)[39m[39m 22 [31m✖ should pass but parent fail [90m(*ms)[39m[39m 25 [31m▶ [39mparent [90m(*ms)[39m 39 [31m✖ should fail [90m(*ms)[39m[39m 50 [31m✖ should fail [90m(*ms)[39m[39m 59 [31m✖ should pass but parent fail [90m(*ms)[39m[39m
|
/third_party/skia/tools/timer/ |
D | Timer.cpp | 9 SkString HumanizeMs(double ms) { in HumanizeMs() argument 10 if (ms > 60e+3) return SkStringPrintf("%.3gm", ms/60e+3); in HumanizeMs() 11 if (ms > 1e+3) return SkStringPrintf("%.3gs", ms/1e+3); in HumanizeMs() 12 if (ms < 1e-3) return SkStringPrintf("%.3gns", ms*1e+6); in HumanizeMs() 14 if (ms < 1) return SkStringPrintf("%.3gus", ms*1e+3); in HumanizeMs() 16 if (ms < 1) return SkStringPrintf("%.3gµs", ms*1e+3); in HumanizeMs() 18 return SkStringPrintf("%.3gms", ms); in HumanizeMs()
|
/third_party/node/deps/npm/node_modules/debug/node_modules/ms/ |
D | index.js | 113 function fmtShort(ms) { argument 114 var msAbs = Math.abs(ms); 116 return Math.round(ms / d) + 'd'; 119 return Math.round(ms / h) + 'h'; 122 return Math.round(ms / m) + 'm'; 125 return Math.round(ms / s) + 's'; 127 return ms + 'ms'; 138 function fmtLong(ms) { argument 139 var msAbs = Math.abs(ms); 141 return plural(ms, msAbs, d, 'day'); [all …]
|
/third_party/node/deps/npm/node_modules/ms/ |
D | index.js | 113 function fmtShort(ms) { argument 114 var msAbs = Math.abs(ms); 116 return Math.round(ms / d) + 'd'; 119 return Math.round(ms / h) + 'h'; 122 return Math.round(ms / m) + 'm'; 125 return Math.round(ms / s) + 's'; 127 return ms + 'ms'; 138 function fmtLong(ms) { argument 139 var msAbs = Math.abs(ms); 141 return plural(ms, msAbs, d, 'day'); [all …]
|
/third_party/node/deps/npm/tap-snapshots/test/lib/utils/ |
D | exit-handler.js.test.cjs | 9 XX timing npm:load:whichnode Completed in {TIME}ms 10 XX timing config:load Completed in {TIME}ms 11 XX timing npm:load:configload Completed in {TIME}ms 12 XX timing npm:load:mkdirpcache Completed in {TIME}ms 13 XX timing npm:load:mkdirplogs Completed in {TIME}ms 16 XX timing npm:load:setTitle Completed in {TIME}ms 17 XX timing npm:load:display Completed in {TIME}ms 20 XX timing npm:load:logFile Completed in {TIME}ms 21 XX timing npm:load:timers Completed in {TIME}ms 22 XX timing npm:load:configScope Completed in {TIME}ms [all …]
|
/third_party/python/Objects/ |
D | listobject.c | 1132 #define ISLT(X, Y) (*(ms->key_compare))(X, Y, ms) 1222 binarysort(MergeState *ms, sortslice lo, PyObject **hi, PyObject **start) in binarysort() argument 1296 count_run(MergeState *ms, PyObject **lo, PyObject **hi, int *descending) in count_run() argument 1351 gallop_left(MergeState *ms, PyObject *key, PyObject **a, Py_ssize_t n, Py_ssize_t hint) in gallop_left() argument 1440 gallop_right(MergeState *ms, PyObject *key, PyObject **a, Py_ssize_t n, Py_ssize_t hint) in gallop_right() argument 1516 merge_init(MergeState *ms, Py_ssize_t list_size, int has_keyfunc) in merge_init() argument 1518 assert(ms != NULL); in merge_init() 1525 ms->alloced = (list_size + 1) / 2; in merge_init() 1530 if (MERGESTATE_TEMP_SIZE / 2 < ms->alloced) in merge_init() 1531 ms->alloced = MERGESTATE_TEMP_SIZE / 2; in merge_init() [all …]
|
/third_party/curl/src/ |
D | tool_sleep.c | 46 void tool_go_sleep(long ms) in tool_go_sleep() argument 49 delay(ms); in tool_go_sleep() 51 Sleep(ms); in tool_go_sleep() 53 (void)poll((void *)0, 0, (int)ms); in tool_go_sleep() 56 timeout.tv_sec = ms / 1000L; in tool_go_sleep() 57 ms = ms % 1000L; in tool_go_sleep() 58 timeout.tv_usec = (int)ms * 1000; in tool_go_sleep()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
D | CodedInputStreamTest.cs | 370 MemoryStream ms = new MemoryStream(); in ReadMaliciouslyLargeBlob() 371 CodedOutputStream output = new CodedOutputStream(ms); in ReadMaliciouslyLargeBlob() 378 ms.Position = 0; in ReadMaliciouslyLargeBlob() 380 CodedInputStream input = new CodedInputStream(ms); in ReadMaliciouslyLargeBlob() 389 MemoryStream ms = new MemoryStream(); in ReadBlobGreaterThanCurrentLimit() 390 CodedOutputStream output = new CodedOutputStream(ms); in ReadBlobGreaterThanCurrentLimit() 396 ms.Position = 0; in ReadBlobGreaterThanCurrentLimit() 398 CodedInputStream input = new CodedInputStream(ms); in ReadBlobGreaterThanCurrentLimit() 405 … AssertReadFromParseContext(new ReadOnlySequence<byte>(ms.ToArray()), (ref ParseContext ctx) => in ReadBlobGreaterThanCurrentLimit() 421 MemoryStream ms = new MemoryStream(); in ReadStringGreaterThanCurrentLimit() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
D | eap_mschapv2.c | 150 struct eap_mschapv2_hdr *ms; in eap_mschapv2_challenge_reply() local 165 ms_len = sizeof(*ms) + 1 + sizeof(*r) + identity_len; in eap_mschapv2_challenge_reply() 171 ms = wpabuf_put(resp, sizeof(*ms)); in eap_mschapv2_challenge_reply() 172 ms->op_code = MSCHAPV2_OP_RESPONSE; in eap_mschapv2_challenge_reply() 173 ms->mschapv2_id = mschapv2_id; in eap_mschapv2_challenge_reply() 181 ms->mschapv2_id++; in eap_mschapv2_challenge_reply() 183 WPA_PUT_BE16(ms->ms_length, ms_len); in eap_mschapv2_challenge_reply() 221 "(response)", id, ms->mschapv2_id); in eap_mschapv2_challenge_reply() 521 struct eap_mschapv2_hdr *ms; in eap_mschapv2_change_password() 539 ms_len = sizeof(*ms) + sizeof(*cp); in eap_mschapv2_change_password() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
D | eap_mschapv2.c | 150 struct eap_mschapv2_hdr *ms; in eap_mschapv2_challenge_reply() local 165 ms_len = sizeof(*ms) + 1 + sizeof(*r) + identity_len; in eap_mschapv2_challenge_reply() 171 ms = wpabuf_put(resp, sizeof(*ms)); in eap_mschapv2_challenge_reply() 172 ms->op_code = MSCHAPV2_OP_RESPONSE; in eap_mschapv2_challenge_reply() 173 ms->mschapv2_id = mschapv2_id; in eap_mschapv2_challenge_reply() 181 ms->mschapv2_id++; in eap_mschapv2_challenge_reply() 183 WPA_PUT_BE16(ms->ms_length, ms_len); in eap_mschapv2_challenge_reply() 221 "(response)", id, ms->mschapv2_id); in eap_mschapv2_challenge_reply() 521 struct eap_mschapv2_hdr *ms; in eap_mschapv2_change_password() 539 ms_len = sizeof(*ms) + sizeof(*cp); in eap_mschapv2_change_password() [all …]
|
/third_party/musl/src/string/ |
D | wcsstr.c | 9 size_t l, ip, jp, k, p, ms, p0, mem, mem0; in twoway_wcsstr() local 32 ms = ip; in twoway_wcsstr() 52 if (ip+1 > ms+1) ms = ip; in twoway_wcsstr() 56 if (wmemcmp(n, n+p, ms+1)) { in twoway_wcsstr() 58 p = MAX(ms, l-ms-1) + 1; in twoway_wcsstr() 79 for (k=MAX(ms+1,mem); n[k] && n[k] == h[k]; k++); in twoway_wcsstr() 81 h += k-ms; in twoway_wcsstr() 86 for (k=ms+1; k>mem && n[k-1] == h[k-1]; k--); in twoway_wcsstr()
|
D | strstr.c | 36 size_t l, ip, jp, k, p, ms, p0, mem, mem0; in twoway_strstr() local 62 ms = ip; in twoway_strstr() 82 if (ip+1 > ms+1) ms = ip; in twoway_strstr() 86 if (memcmp(n, n+p, ms+1)) { in twoway_strstr() 88 p = MAX(ms, l-ms-1) + 1; in twoway_strstr() 124 for (k=MAX(ms+1,mem); n[k] && n[k] == h[k]; k++); in twoway_strstr() 126 h += k-ms; in twoway_strstr() 131 for (k=ms+1; k>mem && n[k-1] == h[k-1]; k--); in twoway_strstr()
|
D | memmem.c | 39 size_t i, ip, jp, k, p, ms, p0, mem, mem0; in twoway_memmem() local 64 ms = ip; in twoway_memmem() 84 if (ip+1 > ms+1) ms = ip; in twoway_memmem() 88 if (memcmp(n, n+p, ms+1)) { in twoway_memmem() 90 p = MAX(ms, l-ms-1) + 1; in twoway_memmem() 115 for (k=MAX(ms+1,mem); k<l && n[k] == h[k]; k++); in twoway_memmem() 117 h += k-ms; in twoway_memmem() 122 for (k=ms+1; k>mem && n[k-1] == h[k-1]; k--); in twoway_memmem()
|
/third_party/libwebsockets/lib/drivers/pwm/ |
D | pwm.c | 106 .ms = 0 113 .ms = 0 120 .ms = 0 127 .ms = 300 134 .ms = 300 141 .ms = 300 148 .ms = 1500 155 .ms = 750
|
/third_party/selinux/libsepol/cil/test/unit/ |
D | CuTest.h | 99 #define CuFail(tc, ms) CuFail_Line( (tc), __FILE__, __LINE__, NULL, (ms)) argument 100 #define CuAssert(tc, ms, cond) CuAssert_Line((tc), __FILE__, __LINE__, (ms), (cond)) argument 104 #define CuAssertStrEquals_Msg(tc,ms,ex,ac) CuAssertStrEquals_LineMsg((tc),__FILE__,__LINE__,(ms)… argument 106 #define CuAssertIntEquals_Msg(tc,ms,ex,ac) CuAssertIntEquals_LineMsg((tc),__FILE__,__LINE__,(ms)… argument 108 #define CuAssertDblEquals_Msg(tc,ms,ex,ac,dl) CuAssertDblEquals_LineMsg((tc),__FILE__,__LINE__,(ms)… argument 110 #define CuAssertPtrEquals_Msg(tc,ms,ex,ac) CuAssertPtrEquals_LineMsg((tc),__FILE__,__LINE__,(ms)… argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
D | eap_server_mschapv2.c | 101 struct eap_mschapv2_hdr *ms; in eap_mschapv2_build_challenge() local 112 ms_len = sizeof(*ms) + 1 + CHALLENGE_LEN + sm->server_id_len; in eap_mschapv2_build_challenge() 122 ms = wpabuf_put(req, sizeof(*ms)); in eap_mschapv2_build_challenge() 123 ms->op_code = MSCHAPV2_OP_CHALLENGE; in eap_mschapv2_build_challenge() 124 ms->mschapv2_id = id; in eap_mschapv2_build_challenge() 125 WPA_PUT_BE16(ms->ms_length, ms_len); in eap_mschapv2_build_challenge() 144 struct eap_mschapv2_hdr *ms; in eap_mschapv2_build_success_req() local 149 ms_len = sizeof(*ms) + 2 + 2 * sizeof(data->auth_response) + 1 + 2 + in eap_mschapv2_build_success_req() 160 ms = wpabuf_put(req, sizeof(*ms)); in eap_mschapv2_build_success_req() 161 ms->op_code = MSCHAPV2_OP_SUCCESS; in eap_mschapv2_build_success_req() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
D | eap_server_mschapv2.c | 101 struct eap_mschapv2_hdr *ms; in eap_mschapv2_build_challenge() local 112 ms_len = sizeof(*ms) + 1 + CHALLENGE_LEN + sm->cfg->server_id_len; in eap_mschapv2_build_challenge() 122 ms = wpabuf_put(req, sizeof(*ms)); in eap_mschapv2_build_challenge() 123 ms->op_code = MSCHAPV2_OP_CHALLENGE; in eap_mschapv2_build_challenge() 124 ms->mschapv2_id = id; in eap_mschapv2_build_challenge() 125 WPA_PUT_BE16(ms->ms_length, ms_len); in eap_mschapv2_build_challenge() 144 struct eap_mschapv2_hdr *ms; in eap_mschapv2_build_success_req() local 149 ms_len = sizeof(*ms) + 2 + 2 * sizeof(data->auth_response) + 1 + 2 + in eap_mschapv2_build_success_req() 160 ms = wpabuf_put(req, sizeof(*ms)); in eap_mschapv2_build_success_req() 161 ms->op_code = MSCHAPV2_OP_SUCCESS; in eap_mschapv2_build_success_req() [all …]
|
/third_party/node/test/parallel/ |
D | test-console.js | 249 assert.match(strings.shift().trim(), /^label: \d+(\.\d{1,3})?(ms|s)$/); 250 assert.match(strings.shift().trim(), /^__proto__: \d+(\.\d{1,3})?(ms|s)$/); 251 assert.match(strings.shift().trim(), /^constructor: \d+(\.\d{1,3})?(ms|s)$/); 252 assert.match(strings.shift().trim(), /^hasOwnProperty: \d+(\.\d{1,3})?(ms|s)$/); 255 assert.match(strings.shift().trim(), /^: \d+(\.\d{1,3})?(ms|s)$/); 257 /^\[object Object\]: \d+(\.\d{1,3})?(ms|s)$/); 259 /^\[object Object\]: \d+(\.\d{1,3})?(ms|s)$/); 260 assert.match(strings.shift().trim(), /^null: \d+(\.\d{1,3})?(ms|s)$/); 261 assert.match(strings.shift().trim(), /^default: \d+(\.\d{1,3})?(ms|s)$/); 262 assert.match(strings.shift().trim(), /^default: \d+(\.\d{1,3})?(ms|s)$/); [all …]
|
/third_party/icu/icu4c/source/data/unit/ |
D | mt.txt | 86 few{"{0}ms"} 87 many{"{0}ms"} 88 one{"{0}ms"} 89 other{"{0}ms"} 90 two{"{0}ms"} 151 few{"{0} ms"} 152 many{"{0} ms"} 153 one{"{0} ms"} 154 other{"{0} ms"} 155 two{"{0} ms"}
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-date.cc | 113 double date = 1.0, hours = 0.0, minutes = 0.0, seconds = 0.0, ms = 0.0; in BUILTIN() local 138 ms = ms_object->Number(); in BUILTIN() 149 double const time = MakeTime(hours, minutes, seconds, ms); in BUILTIN() 183 ms = 0.0; in BUILTIN() local 219 ms = ms_object->Number(); in BUILTIN() 232 double const time = MakeTime(hours, minutes, seconds, ms); in BUILTIN() 324 Handle<Object> ms = args.at(4); in BUILTIN() local 325 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, ms, in BUILTIN() 326 Object::ToNumber(isolate, ms)); in BUILTIN() 327 milli = ms->Number(); in BUILTIN() [all …]
|
/third_party/musl/porting/uniproton/kernel/src/string/ |
D | strstr.c | 36 size_t l, ip, jp, k, p, ms, p0, mem, mem0; in twoway_strstr() local 62 ms = ip; in twoway_strstr() 82 if (ip+1 > ms+1) ms = ip; in twoway_strstr() 86 if (memcmp(n, n+p, ms+1)) { in twoway_strstr() 88 p = MAX(ms, l-ms-1) + 1; in twoway_strstr() 124 for (k=MAX(ms+1,mem); n[k] && n[k] == h[k]; k++); in twoway_strstr() 126 h += k-ms; in twoway_strstr() 131 for (k=ms+1; k>mem && n[k-1] == h[k-1]; k--); in twoway_strstr()
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
D | strstr.c | 36 size_t l, ip, jp, k, p, ms, p0, mem, mem0; in twoway_strstr() local 62 ms = ip; in twoway_strstr() 82 if (ip+1 > ms+1) ms = ip; in twoway_strstr() 86 if (memcmp(n, n+p, ms+1)) { in twoway_strstr() 88 p = MAX(ms, l-ms-1) + 1; in twoway_strstr() 124 for (k=MAX(ms+1,mem); n[k] && n[k] == h[k]; k++); in twoway_strstr() 126 h += k-ms; in twoway_strstr() 131 for (k=ms+1; k>mem && n[k-1] == h[k-1]; k--); in twoway_strstr()
|
/third_party/musl/porting/liteos_m/kernel/src/string/ |
D | strstr.c | 36 size_t l, ip, jp, k, p, ms, p0, mem, mem0; in twoway_strstr() local 62 ms = ip; in twoway_strstr() 82 if (ip+1 > ms+1) ms = ip; in twoway_strstr() 86 if (memcmp(n, n+p, ms+1)) { in twoway_strstr() 88 p = MAX(ms, l-ms-1) + 1; in twoway_strstr() 124 for (k=MAX(ms+1,mem); n[k] && n[k] == h[k]; k++); in twoway_strstr() 126 h += k-ms; in twoway_strstr() 131 for (k=ms+1; k>mem && n[k-1] == h[k-1]; k--); in twoway_strstr()
|