Home
last modified time | relevance | path

Searched full:fill (Results 1 – 25 of 110) sorted by relevance

12345

/arkcompiler/runtime_core/libpandabase/tests/
Dbit_memory_region_test.cpp43 std::fill(data.begin(), data.end(), fill_value); in TEST()
48 std::fill(data.begin(), data.end(), fill_value); in TEST()
69 std::fill(data.begin(), data.end(), fill_value); in TEST()
74 std::fill(data.begin(), data.end(), fill_value); in TEST()
90 data.fill(0); in TEST()
Dbit_vector_test.cpp80 std::fill(vector.begin(), vector.end(), false);
82 std::fill(vector.begin() + 2, vector.begin() + 15, true);
120 std::fill(vector.begin(), vector.end(), true); in TestIteration()
129 std::fill(vector.begin(), vector.end(), false); in TestIteration()
224 data.fill(0);
/arkcompiler/runtime_core/tests/regression/
Ddeopt_true_test.pa17 .function i32 fill(i32[] a0, i32 a1) {
46 call.short fill, v1, v0
Ddeopt_true_call_test.pa20 .function i32 fill(i32[] a0, i32 a1) {
49 call.short fill, v1, v0
Ddeopt_false_test.pa17 .function i32 fill(i32[] a0, i32 a1) {
47 call.short fill, v1, v0
/arkcompiler/runtime_core/runtime/arch/amd64/
Dshorty.S33 orl $0xFFFFF000, \shorty_reg // fill the high 20 bits by 0xFFFFF
43 orl $0xFFFFF000, \shorty_reg // fill the high 20 bits by 0xFFFFF
/arkcompiler/runtime_core/runtime/arch/aarch64/
Dshorty.S32 orr \shorty_reg, \shorty_reg, #0xFFFFF000 // fill the high 20 bits by 0xFFFFF
41 orr \shorty_reg, \shorty_reg, #0xFFFFF000 // fill the high 20 bits by 0xFFFFF
/arkcompiler/runtime_core/runtime/arch/arm/
Dshorty.S32 orr \shorty_reg, \shorty_reg, #0xF0000000 // fill the high 20 bits by 0xFFFFF
40 orr \shorty_reg, \shorty_reg, #0xF0000000 // fill the high 20 bits by 0xFFFFF
/arkcompiler/runtime_core/runtime/arch/x86/
Dshorty.S33 orl $0xFFFFF000, \shorty_reg // fill the high 20 bits by 0xFFFFF
43 orl $0xFFFFF000, \shorty_reg // fill the high 20 bits by 0xFFFFF
/arkcompiler/runtime_core/runtime/tooling/
Dpt_hook_type_info.h51 is_enabled_.fill(true); in EnableAll()
56 is_enabled_.fill(false); in DisableAll()
/arkcompiler/runtime_core/runtime/mem/
Dtlab.cpp30 Fill(address, size); in TLAB()
35 void TLAB::Fill(void *address, size_t size) in Fill() function in panda::mem::TLAB
42 …LOG_TLAB_ALLOCATOR(DEBUG) << "Fill a TLAB with buffer at addr " << std::hex << address << " with s… in Fill()
/arkcompiler/ets_runtime/test/moduletest/array/
Darray.js27 arr1.fill(0, 2, 4);
31 arr2.fill(0, 2, 4);
/arkcompiler/runtime_core/libpandabase/utils/
Dbit_vector.h35 inline void fill(panda::BitVectorIterator<IsConst> first, panda::BitVectorIterator<IsConst> last, b…
238 …friend void std::fill(panda::BitVectorIterator<_IsConst> first, panda::BitVectorIterator<_IsConst>…
363 std::fill(begin() + initial_size, begin() + bits, false); in resize()
371 std::fill(begin(), end(), false); in clear()
452 std::fill(storage_.begin(), storage_.end(), 0); in Reset()
653 inline void fill(panda::BitVectorIterator<IsConst> first, panda::BitVectorIterator<IsConst> last, b… in fill() function
657 std::fill(first.data_ + 1, last.data_, value ? ~0LLU : 0); in fill()
/arkcompiler/runtime_core/runtime/mem/gc/
Dgc_stats.h89 std::fill(begin(objects_stats_), end(objects_stats_), in GCInstanceStats()
91 std::fill(begin(memory_stats_), end(memory_stats_), in GCInstanceStats()
93 …std::fill(begin(time_stats_), end(time_stats_), SimpleHistogram<uint64_t>(helpers::ValueType::VALU… in GCInstanceStats()
/arkcompiler/runtime_core/tests/checked/
Dconst_array_test.pa28 #! CHECKER Fill ConstArray
42 #! CHECKER Fill ConstArray AOT
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dspill_fills_resolver.h28 * There are 3 spill-fill location types:
33 * Each spill-fill's source and destination is described by index inside these locations;
Dspill_fills_resolver.cpp131 std::fill(reg_write_.begin(), reg_write_.end(), false); in NeedToResolve()
132 std::fill(stack_write_.begin(), stack_write_.end(), false); in NeedToResolve()
173 …std::fill(moves_table_.begin(), moves_table_.end(), MoveInfo {INVALID_LOCATION_INDEX, DataType::NO… in CollectSpillFillsData()
174 std::fill(loads_count_.begin(), loads_count_.end(), 0); in CollectSpillFillsData()
/arkcompiler/runtime_core/docs/diagrams/
Dg1-concurrent-marking-activity.puactivity23 :Fill RemSets;
Dg1gc-gc-activity.puactivity17 :Process not processed cards from CardTable to fill RemSets;
/arkcompiler/runtime_core/runtime/bridge/arch/x86/
Dhandle_call_v8_id16_x86.S20 movl (%esp), %esi // fill insn*
Dhandle_call_v4_v4_id16_x86.S23 movl (%esp), %esi // fill insn*
/arkcompiler/runtime_core/compiler/tools/paoc/
Dpaoc_clusters.h72 // Fill clusters_ in order of presence in JSON-obj: in InitClusters()
81 // Fill current cluster: in InitClusters()
110 // Fill special_options_: in InitClustersMap()
/arkcompiler/runtime_core/verification/util/
Denum_array.h39 arr.fill(T {args...});
/arkcompiler/ets_frontend/ts2panda/tools/
DastPrinter.ts38 export let SyntaxKind = Fill();
40 function Fill(): Array<Array<string>> { function
/arkcompiler/runtime_core/runtime/interpreter/
Dcache.h49 data_.fill({}); in Clear()

12345