/third_party/typescript/tests/baselines/reference/ |
H A D | es6ModuleConstEnumDeclaration2.js | 36 const enum e6 { 44 var y2 = e6.x; 90 let e6;
91 (function (e6) {
92 e6[e6["x"] = 0] = "x";
93 e6[e6["y"] = 1] = "y";
94 e6[e6[" [all...] |
H A D | es6ModuleEnumDeclaration.js | 36 enum e6 { 44 var y2 = e6.x; 90 let e6;
91 (function (e6) {
92 e6[e6["x"] = 0] = "x";
93 e6[e6["y"] = 1] = "y";
94 e6[e6[" [all...] |
H A D | augmentedTypesEnum.js | 25 enum e6 { One } 26 module e6 { } // ok 83 var e6;
variable 84 (function (e6) {
85 e6[e6["One"] = 0] = "One";
86 })(e6 || (e6 = {}));
|
H A D | es6ModuleConstEnumDeclaration.js | 36 const enum e6 { 44 var y2 = e6.x; 63 var y2 = 0 /* e6.x */;
|
H A D | objectLiteralErrors.js | 8 var e6 = { a: 0, 'a': 0 }; 62 var e6 = { a: 0, 'a': 0 };
|
H A D | typeParameterUsedAsConstraint.js | 28 var e6 = <T, U extends T, V extends U>() => { } 80 var e6 = function () { };
function
|
/third_party/selinux/libsepol/tests/ |
H A D | test-ebitmap.c | 258 ebitmap_t e1, e2, e3, e4, e5, e6; in test_ebitmap_init_range() local 277 CU_ASSERT_EQUAL(ebitmap_init_range(&e6, 0, UINT32_MAX), -EOVERFLOW); in test_ebitmap_init_range() 279 ebitmap_destroy(&e6); in test_ebitmap_init_range() 507 ebitmap_t e6; in test_ebitmap_and() local 512 ebitmap_init(&e6); in test_ebitmap_and() 521 CU_ASSERT_EQUAL(ebitmap_set_bit(&e6, 64, 1), 0); in test_ebitmap_and() 522 CU_ASSERT_EQUAL(ebitmap_set_bit(&e6, 192, 1), 0); in test_ebitmap_and() 523 CU_ASSERT_EQUAL(ebitmap_set_bit(&e6, 319, 1), 0); in test_ebitmap_and() 524 CU_ASSERT_EQUAL(ebitmap_set_bit(&e6, 320, 1), 0); in test_ebitmap_and() 529 CU_ASSERT_EQUAL(ebitmap_and(&dst, &e5, &e6), in test_ebitmap_and() 629 ebitmap_t e6; test_ebitmap_xor() local 908 ebitmap_t e6; test_ebitmap_andnot() local [all...] |
/third_party/decimal.js/test/modules/ |
H A D | intPow.js | 120 t('1.9801312458591796501e+301030', 2, 1e6 + 1); // Math.pow( 2, 1e6 + 1) == Infinity 121 t('5.0501702959901511235e-301031', 2, -1e6 - 1); // Math.pow( 2, -1e6 - 1) == 0 122 t('-1.9801312458591796501e+301030', -2, 1e6 + 1); // Math.pow(-2, 1e6 + 1) == -Infinity 123 t('-5.0501702959901511235e-301031', -2, -1e6 - 1); // Math.pow(-2, -1e6 - 1) == -0 124 t('-1.9801312458591796501e-698971', -0.2, 1e6 + 1); // Math.pow(-0.2, 1e6 [all...] |
/third_party/libinput/tools/ |
H A D | libinput-record.c | 472 (long)(time / (int)1e6), in print_key_event() 473 (long)(time % (int)1e6), in print_key_event() 502 (long)(time / (int)1e6), in print_motion_event() 503 (long)(time % (int)1e6), in print_motion_event() 533 (long)(time / (int)1e6), in print_absmotion_event() 534 (long)(time % (int)1e6), in print_absmotion_event() 564 (long)(time / (int)1e6), in print_pointer_button_event() 565 (long)(time % (int)1e6), in print_pointer_button_event() 617 (long)(time / (int)1e6), in print_pointer_axis_event() 618 (long)(time % (int)1e6), in print_pointer_axis_event() [all...] |
H A D | libinput-replay.py | 219 evtime = evs[0].sec + evs[0].usec / 1e6 + offset 222 if evtime - now > 150 / 1e6: # 150 µs error margin 223 time.sleep(evtime - now - 150 / 1e6) 236 return sec + usec / 1.0e6
|
/third_party/node/lib/internal/perf/ |
H A D | utils.js | 15 return (hr[0] * 1000 + hr[1] / 1e6) - timeOrigin; 22 return ns / 1e6 - timeOrigin;
|
/third_party/node/benchmark/blob/ |
H A D | file.js | 7 n: [1e6], 12 lastModified: Date.now() - 1e6,
|
/third_party/rust/crates/minimal-lexical/src/ |
H A D | table_small.rs | 64 [1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10, 0., 0., 0., 0., 0.]; 68 1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16,
|
/third_party/node/test/parallel/ |
H A D | test-fs-stat-bigint.js | 102 const allowableDelta = Math.ceil(Number(endTime - startTime) / 1e6); 157 const allowableDelta = Math.ceil(Number(endTime - startTime) / 1e6); 189 const allowableDelta = Math.ceil(Number(endTime - startTime) / 1e6); 212 const allowableDelta = Math.ceil(Number(endTime - startTime) / 1e6);
|
/third_party/node/src/ |
H A D | node_perf.cc | 173 (state->performance_last_gc_start_mark - timeOrigin) / 1e6; in MarkGarbageCollectionEnd() 175 (PERFORMANCE_NOW() / 1e6) - (state->performance_last_gc_start_mark / 1e6); in MarkGarbageCollectionEnd() 236 args.GetReturnValue().Set(1.0 * idle_time / 1e6); in LoopIdleTime() 261 args.GetReturnValue().Set(Number::New(args.GetIsolate(), timeOrigin / 1e6)); in GetTimeOrigin()
|
/third_party/node/benchmark/timers/ |
H A D | timers-insert-pooled.js | 5 n: [5e6],
|
H A D | timers-breadth.js | 5 n: [5e6],
|
/third_party/node/benchmark/process/ |
H A D | next-tick-exec.js | 4 n: [4e6],
|
H A D | next-tick-depth.js | 4 n: [7e6],
|
/third_party/node/benchmark/v8/ |
H A D | get-stats.js | 11 n: [1e6],
|
/third_party/node/benchmark/http/ |
H A D | set_header.js | 16 n: [1e6],
|
H A D | check_is_http_token.js | 40 n: [1e6],
|
/third_party/node/benchmark/napi/define_properties/ |
H A D | index.js | 8 n: [5e6],
|
/third_party/node/benchmark/os/ |
H A D | loadavg.js | 7 n: [5e6],
|
/third_party/node/benchmark/querystring/ |
H A D | querystring-unescapebuffer.js | 12 n: [10e6],
|