Searched full:1000 (Results 1 – 25 of 850) sorted by relevance
12345678910>>...34
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/gclog/ |
| D | utils.py | 43 "us": 1000, 44 "ms": 1000 * 1000, 45 "s": 1000 * 1000 * 1000, 55 return (int(x.timestamp() * 1000) + int(ms)) * 1000 * 1000
|
| /arkcompiler/ets_runtime/test/moduletest/builtins/ |
| D | expect_output.txt | 59 -1000 60 -1000 69 1000 77 -1000 78 -1000 92 -1000 93 -1000 115 -1000 116 -1000 246 1000 [all …]
|
| D | builtinsnumber.js | 35 print(Number.parseFloat("-1000, 0")) 36 print(Number.parseFloat("-1000")) 54 print(parseFloat("-1000, 0")) 55 print(parseFloat("-1000")) 70 print(Number.parseInt("-1000, 0")) 71 print(Number.parseInt("-1000")) 94 print(parseInt("-1000, 0")) 95 print(parseInt("-1000")) 238 n2 = new Number(1000)
|
| /arkcompiler/runtime_core/static_core/tests/cts-assembly/ |
| D | tst-select.pa | 21 ldai 1000 32 ldai 1000 43 ldai 1000 54 ldai 1000 65 ldai 1000 76 ldai 1000 89 ldai 1000 102 ldai 1000 115 ldai 1000 128 ldai 1000 [all …]
|
| D | math-54.pa | 71 movi v1, 1000 78 movi v1, 1000 85 movi v1, 1000
|
| D | math-54-v.pa | 76 movi v1, 1000 83 movi v1, 1000 90 movi v1, 1000
|
| /arkcompiler/runtime_core/tests/cts-assembly/ |
| D | tst-select.pa | 21 ldai 1000 32 ldai 1000 43 ldai 1000 54 ldai 1000 65 ldai 1000 76 ldai 1000 89 ldai 1000 102 ldai 1000 115 ldai 1000 128 ldai 1000 [all …]
|
| D | math-54.pa | 71 movi v1, 1000 78 movi v1, 1000 85 movi v1, 1000
|
| /arkcompiler/ets_frontend/ets2panda/test/compiler/ets/ |
| D | union_types_1.sts | 46 assert x.num == 1000: "Error! The num field of union must be 1000"; 53 assert x.num == 1000: "Error! The num field of union must be 1000"; 56 assert xx.num_to_return() == 1000: "Error! The num field of class `C` must be 1000";
|
| /arkcompiler/ets_runtime/test/perform/map/ |
| D | map.ts | 29 let time = (end - start) / 1000 40 let time = (end - start) / 1000 53 let time = (end - start) / 1000 66 let time = (end - start) / 1000 80 let time = (end - start) / 1000 91 let time = (end - start) / 1000 102 let time = (end - start) / 1000 113 let time = (end - start) / 1000
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/09.classes/Constructor_Declaration/ |
| D | constructor_default_params_0010.sts | 34 super(1000, 2000); 40 let x : X = new X(1000); 41 assert x.dataY1 == 1000; 42 assert x.dataX1 == 1000;
|
| D | constructor_default_params_0009.sts | 40 let x : X = new X(1000); 41 assert x.dataY1 == 1000;
|
| /arkcompiler/ets_runtime/test/perform/set/ |
| D | set.ts | 29 let time = (end - start) / 1000 42 let time = (end - start) / 1000 55 let time = (end - start) / 1000 69 let time = (end - start) / 1000 82 let time = (end - start) / 1000 93 let time = (end - start) / 1000 104 let time = (end - start) / 1000
|
| /arkcompiler/runtime_core/static_core/libpandabase/tests/ |
| D | unix_signal_test.cpp | 76 static const uint32_t TIME_TO_WAIT = 100U * 1000U; // 0.1 second 78 const uint32_t maxTimeoutCounterWait_ = 5U * 60U * 1000U * 1000U / TIME_TO_WAIT; // 5 minutes 226 catcherThread.SetupCallbacks([this]() { sigActionCount_ += 1000U; }, nullptr); in TEST_F() 235 CheckSignalsInsideCycle(SIGQUIT + 1000U); in TEST_F() 238 ASSERT_EQ(sigActionCount_, SIGQUIT + 1000U); in TEST_F() 265 …catcherThread.SetupCallbacks([this]() { sigActionCount_ += 1000U; }, [this]() { sigActionCount_ +=… in TEST_F() 274 CheckSignalsInsideCycle(1000U + SIGQUIT); in TEST_F() 277 ASSERT_EQ(sigActionCount_, 1000U + SIGQUIT + 2000U); in TEST_F()
|
| D | math_helpers_test.cpp | 72 testAbsOrMin(1000L, 1000L); in TEST() 76 testAbsOrMin(-1000L, 1000L); in TEST()
|
| /arkcompiler/ets_runtime/test/perform/object/ |
| D | object.ts | 44 let time = (end - start) / 1000 56 let time = (end - start) / 1000 70 let time = (end - start) / 1000 87 let time = (end - start) / 1000 109 let time = (end - start) / 1000
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/06.statements/02.multiple_catch_clauses_in_try_statements/ |
| D | finally.params.yaml | 79 ret += 1000; 108 ret += 1000; 128 ret += 1000 158 ret += 1000 188 ret += 1000 217 ret += 1000 246 ret += 1000 276 ret += 1000
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
| D | test_gc_ark_pause.py | 29 ms = int(current_ts.microsecond / 1000) 39 self.assertEqual((int(current_ts.timestamp()) * 1000 + ms) * 1000 * 1000, pev.timestamp,
|
| /arkcompiler/ets_frontend/arkguard/test/ut/utils/ |
| D | MemoryUtils.spec.ts | 24 const highBaseLine = 1000 * 1024 * 1024; // 1000MB 25 const highBase = 1000 * 1024 * 1024; // 1000MB
|
| /arkcompiler/ets_runtime/test/perform/dataview/ |
| D | dataview.ts | 30 let time = (end - start) / 1000 43 let time = (end - start) / 1000 56 let time = (end - start) / 1000
|
| /arkcompiler/ets_runtime/test/aottest/set/ |
| D | expect_output.txt | 25 1000 26 1000
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/test_class_methods_returning_values/ets_to_js/js_suites/ |
| D | test_function_return_union.js | 21 const EXPECTED_NUMBER = 1000; 22 const EXPECTED_STRING = '1000';
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | native_bytes_from_mallinfo_test.cpp | 30 void *p1[1000]; in TEST() 31 for (int i = 0; i < 1000; i++) { in TEST() 48 for (int i = 0; i < 1000; i++) { in TEST()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/15.try_statements/02.finally_clause/ |
| D | finally.params.yaml | 79 ret += 1000; 95 ret += 1000 123 ret += 1000 152 ret += 1000
|
| /arkcompiler/runtime_core/static_core/libpandabase/os/ |
| D | time.h | 35 static constexpr uint64_t MICRO_TO_NANO = 1000; 36 static constexpr uint64_t MILLIS_TO_MICRO = 1000;
|
12345678910>>...34