Searched full:1024 (Results 1 – 25 of 57) sorted by relevance
123
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | gc_test.cpp | 74 for (int i = 0; i < 1024; i++) { in HWTEST_F_L0() 190 … auto newData = thread->GetEcmaVM()->GetNativeAreaAllocator()->AllocateBuffer(1 * 1024 * 1024); in HWTEST_F_L0() 192 NativeAreaAllocator::FreeBufferFunc, nullptr, false, 1 * 1024 * 1024); in HWTEST_F_L0() 194 EXPECT_EQ(newNativeSize - oldNativeSize, 1UL * 1024 * 1024); in HWTEST_F_L0() 196 … auto newData1 = thread->GetEcmaVM()->GetNativeAreaAllocator()->AllocateBuffer(1 * 1024 * 1024); in HWTEST_F_L0() 198 NativeAreaAllocator::FreeBufferFunc, nullptr, false, 1 * 1024 * 1024); in HWTEST_F_L0() 201 EXPECT_TRUE(newNativeSize - oldNativeSize <= 2 * 1024 *1024); in HWTEST_F_L0() 203 … auto newData2 = thread->GetEcmaVM()->GetNativeAreaAllocator()->AllocateBuffer(1 * 1024 * 1024); in HWTEST_F_L0() 205 NativeAreaAllocator::FreeBufferFunc, nullptr, false, 1 * 1024 * 1024); in HWTEST_F_L0() 208 EXPECT_TRUE(newNativeSize - oldNativeSize < 22 * 1024 *1024); in HWTEST_F_L0() [all …]
|
| D | mem_controller_test.cpp | 70 for (int i = 0; i < 1024; i++) { in HWTEST_F_L0() 78 for (int i = 0; i < 1024; i++) { in HWTEST_F_L0()
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | type_converter.h | 85 constexpr std::array<double, 4> COEFFS_MEMORY = {1024, 1024, 1024, 1024};
|
| D | string_helpers.h | 35 static constexpr size_t SIZE = 1024; in Vformat()
|
| /arkcompiler/ets_runtime/test/moduletest/typearray/ |
| D | typearray.js | 107 let a1 = new Array(1024); 108 let a2 = new ctor(1024); 133 let a1 = new ArrayBuffer(1024*1024*8);
|
| /arkcompiler/runtime_core/dprof/libdprof/dprof/ipc/ |
| D | ipc_message.h | 27 static const uint32_t MAX_DATA_SIZE = 1024 * 1024; // 1MB
|
| /arkcompiler/runtime_core/dprof/libstorage/dprof/ |
| D | storage.h | 79 static const size_t MAX_BUFFER_SIZE = 16 * 1024 * 1024; // 16MB
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | native_bytes_from_mallinfo_test.cpp | 41 p2[i] = malloc(4 * 1024 * 1024); in TEST()
|
| D | type_converter_tests.cpp | 25 constexpr size_t ITERATION = 1024; 79 uint64_t bytes = left_part_bytes * 1024 + right_part_bytes;
|
| D | unix_native_stack_test.cpp | 34 char buff[1024] = "abcdefg";
|
| D | code_allocator_test.cpp | 35 static constexpr size_t k1K = 1024;
|
| D | math_helpers_test.cpp | 46 EXPECT_TRUE(IsPowerOfTwo(1024));
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | panda_cache.h | 191 static constexpr uint32_t DEFAULT_FIELD_CACHE_SIZE = 1024U; 192 static constexpr uint32_t DEFAULT_METHOD_CACHE_SIZE = 1024U; 193 static constexpr uint32_t DEFAULT_CLASS_CACHE_SIZE = 1024U;
|
| /arkcompiler/runtime_core/tests/benchmarks/ |
| D | CMakeLists.txt | 56 # Allow to write something like this: 64 * 1024 * 1024 99 panda_add_benchmark("controlflow-recursive" "ControlFlowRecursive" "384 * 1024 * 1024" TRUE TRU…
|
| D | math-partial-sums.pa | 25 movi v0, 1024
|
| /arkcompiler/runtime_core/runtime/methodtrace/ |
| D | trace.h | 97 static const uint32_t FILE_SIZE = 8 * 1024 * 1024;
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | lda.const.yaml | 143 - "#{'i16 1024 { ' + [*1..1024].map do |i| \"#{i} \" end .join + '}' }" 181 - "#{'panda.String 1024 { ' + [*1..1024].map do |i| \"\\\"#{i}\\\" \" end .join + '}' }" 182 - 1024
|
| D | fp.yaml | 313 …# x = 1024 * Math.pow(x, 11) - 2816 * Math.pow(x,9) + 2816 * Math.pow(x,7) - 1232 * Math.pow(x,5) … 327 call pow_mul, v2, v1, v3 # acc = v1^11*1024
|
| /arkcompiler/ets_runtime/test/moduletest/arrayforeach/ |
| D | arrayforeach.js | 42 let array4 = new Array(1024);
|
| /arkcompiler/ets_runtime/test/fuzztest/snapshotserializehugeobject_fuzzer/ |
| D | snapshotserializehugeobject_fuzzer.cpp | 35 const uint32_t hugeSize = 256 * 1024; in SnapshotSerializeHugeObjectFuzzTest()
|
| /arkcompiler/toolchain/websocket/ |
| D | websocket.h | 82 static constexpr int32_t SOCKET_HANDSHAKE_LEN = 1024;
|
| /arkcompiler/runtime_core/runtime/tests/ |
| D | time_utils_test.cpp | 29 constexpr size_t ITERATION = 1024;
|
| D | tlab_test.cpp | 90 constexpr size_t ARRAY_SIZE = 1024; in TEST_F()
|
| /arkcompiler/runtime_core/libpandabase/tests/ringbuf/ |
| D | lock_free_ring_buffer_test.cpp | 29 constexpr auto DEFAULT_BUFFER_SIZE = 1024;
|
| /arkcompiler/ets_runtime/ecmascript/snapshot/tests/ |
| D | snapshot_test.cpp | 251 JSHandle<TaggedArray> array1 = factory->NewTaggedArray(300 * 1024 / 8); in HWTEST_F_L0() 252 JSHandle<TaggedArray> array2 = factory->NewTaggedArray(300 * 1024 / 8); in HWTEST_F_L0()
|
123