Home
last modified time | relevance | path

Searched full:amount (Results 1 – 25 of 102) sorted by relevance

12345

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/20.implementation_details/05.keyword_struct_and_arkui/
Dstruct_implements_interface.ets22 amount: double
27 amount: double
31 this.amount = a
35 return this.amount / 2
46 assertEQ(structClass.amount, 50.5)
Dstruct_extends_class.ets22 amount: double
25 return this.amount / 2
33 this.amount = a
44 assertEQ(structClass.amount, 50.5)
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/extension_function_tests/
DcallExtensionFunctionByThisInExtensionAndClassFunction.ets18 return 2 + this.amount();
32 function amount(this:Fruit): int {
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_imm_valid.h130 // For the 32-bit variant: is the shift amount, in the range 0 to 31, opnd input is bitshiftopnd
137 // For the 64-bit variant: is the shift amount, in the range 0 to 63, opnd input is bitshiftopnd
144 // For the 32-bit variant: is the shift amount, in the range 0 to 31, opnd input is immopnd
151 // For the 64-bit variant: is the shift amount, in the range 0 to 63, opnd input is immopnd
214 // Is the left shift amount to be applied after extension in the range 0 to 4, uint32 means value n…
226 // For the 32-bit variant: is the amount by which to shift the immediate left, either 0 or 16
232 // For the 64-bit variant: is the amount by which to shift the immediate left, either 0, 16, 32 or …
Daarch64_cgfunc.h316 …BitShiftOperand &CreateBitShiftOperand(BitShiftOperand::ShiftOp op, uint32 amount, int32 bitLen) c… in CreateBitShiftOperand() argument
318 return *memPool->New<BitShiftOperand>(op, amount, bitLen); in CreateBitShiftOperand()
321 …ExtendShiftOperand &CreateExtendShiftOperand(ExtendShiftOperand::ExtendOp op, uint32 amount, int32… in CreateExtendShiftOperand() argument
323 return *memPool->New<ExtendShiftOperand>(op, amount, bitLen); in CreateExtendShiftOperand()
416 6; /* for 64 bits register, shift amount is 0~63, use 6 bits to store */
418 5; /* for 32 bits register, shift amount is 0~31, use 5 bits to store */
/arkcompiler/runtime_core/static_core/disassembler/templates/
Dbc_ins_to_pandasm_ins.cpp.erb90 // call.acc recieves fixed amount of registers
99 … "between amount of registers specified by instruction format and amount of function's arguments) "
/arkcompiler/runtime_core/static_core/abc2program/templates/
Dabc_inst_convert.cpp.erb99 // call.acc recieves fixed amount of registers
108 … "between amount of registers specified by instruction format and amount of function's arguments) "
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dcleanup.cpp434 size_t amount = 0; in BuildDominators() local
436 map_.insert({fake_root_, amount}); in BuildDominators()
439 amount++; in BuildDominators()
440 map_.insert({inst, amount}); in BuildDominators()
444 amount++; in BuildDominators()
445 map_.insert({pred, amount}); in BuildDominators()
450 Init(amount + 1); in BuildDominators()
460 ASSERT(static_cast<size_t>(dfs_num_) == amount); in BuildDominators()
462 for (size_t i = amount; i > 0; i--) { in BuildDominators()
466 for (size_t i = 1; i <= amount; i++) { in BuildDominators()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dcleanup.cpp553 void Cleanup::BuildDominatorsVisitPhi(Inst *inst, size_t &amount) in BuildDominatorsVisitPhi() argument
555 amount++; in BuildDominatorsVisitPhi()
556 map_.insert({inst, amount}); in BuildDominatorsVisitPhi()
560 amount++; in BuildDominatorsVisitPhi()
561 map_.insert({pred, amount}); in BuildDominatorsVisitPhi()
568 size_t amount = 0; in BuildDominators() local
570 map_.insert({fakeRoot_, amount}); in BuildDominators()
573 BuildDominatorsVisitPhi(inst, amount); in BuildDominators()
576 Init(amount + 1); in BuildDominators()
586 ASSERT(static_cast<size_t>(dfsNum_) == amount); in BuildDominators()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/test/maple_be/
Dcg_aarch64_aarch64_operand_test.cpp52 uint32 amount, int32 bitLen) in MyCreateExtendShiftOperand() argument
56 return *(memPool.New<ExtendShiftOperand>(op, amount, bitLen)); in MyCreateExtendShiftOperand()
Dcg_cg_irbuilder_test.cpp44 …// test method:CreateBitShift(BitShiftOperand::ShiftOp op, uint32 amount, uint32 bitLen, MemPool *… in TEST()
/arkcompiler/runtime_core/compiler/docs/
Daot_resolve_string.md38 - if amount of already filled PLT-slots is above `--resolve-string-aot-threshold` then the resolved…
51 …cing to an object in young space. That information allow to significantly reduce amount of scanned
/arkcompiler/runtime_core/static_core/compiler/docs/
Daot_resolve_string.md38 - if amount of already filled PLT-slots is above `--resolve-string-aot-threshold` then the resolved…
51 …cing to an object in young space. That information allow to significantly reduce amount of scanned
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/02.generic_instantiations/01.type_arguments/
Dmalformed_parameterized_decl_not_same_params_number.ets19 desc: "malformed parameterized generics: wrong amount of type parameters"
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dmonitor.yaml288 …Check that a thread owns a monitor if amount of executed monitorexit instructions is less than amo…
298 …Check that a thread does not own a monitor if amount of executed monitorexit instructions is the s…
299 amount of executed monitorenter instructions
/arkcompiler/runtime_core/abc2program/common/
Dabc_inst_convert.cpp.erb96 … "between amount of registers specified by instruction format and amount of function's arguments) "
/arkcompiler/runtime_core/disassembler/templates/
Dbc_ins_to_pandasm_ins.cpp.erb93 … "between amount of registers specified by instruction format and amount of function's arguments) "
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dcg_irbuilder.cpp145 BitShiftOperand &OperandBuilder::CreateBitShift(BitShiftOperand::ShiftOp op, uint32 amount, uint32 … in CreateBitShift() argument
148 return *mp->New<BitShiftOperand>(op, amount, bitLen); in CreateBitShift()
150 return *alloc.New<BitShiftOperand>(op, amount, bitLen); in CreateBitShift()
/arkcompiler/runtime_core/tests/cts-generator/
DREADME.md10 * `PANDA_CTS_JOBS_NUMBER` - amount of parallel jobs for test execution. Default is 8.
62 -j, --jobs N Amount of concurrent jobs for test execution (default 8)
/arkcompiler/runtime_core/static_core/tests/cts-generator/
DREADME.md10 * `PANDA_CTS_JOBS_NUMBER` - amount of parallel jobs for test execution. Default is 8.
62 -j, --jobs N Amount of concurrent jobs for test execution (default 8)
/arkcompiler/runtime_core/static_core/runtime/mem/
Dheap_manager.h126 // Returns the maximum amount of memory a program can consume.
132 // Returns approximate amount of memory currently consumed by an application.
/arkcompiler/ets_runtime/ecmascript/mem/
Dbarriers.cpp42 …// This conflict is solved by keeping alive weak reference. A small amount of floating garbage may… in Update()
62 …// This conflict is solved by keeping alive weak reference. A small amount of floating garbage may… in UpdateShared()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinstruction_combine.cpp1035 …// 63: The '63' here is used as a mask to limit the shift amount to 0-63 bits, preventing overflow. in ReduceWord64Lsr()
1049 …// 31: The '31' here is used as a mask to limit the shift amount to 0-31 bits, preventing overflow. in ReduceWord32Lsr()
1074 …// 63: The '63' here is used as a mask to limit the shift amount to 0-63 bits, preventing overflow. in ReduceWord64Asr()
1088 …// 31: The '31' here is used as a mask to limit the shift amount to 0-31 bits, preventing overflow. in ReduceWord32Asr()
1094 // Check if the right shift amount is 31 (logical shift by 31 bits). in ReduceWord32Asr()
1100 // Check if the right shift amount is 24 (logical shift by 24 bits). in ReduceWord32Asr()
1120 // Check if the right shift amount is in the range of 1 to 63 bits (inclusive). in ReduceWord64Lsl()
1144 // Check if the right shift amount is in the range of 1 to 31 bits (inclusive). in ReduceWord32Lsl()
/arkcompiler/runtime_core/static_core/libllvmbackend/
Dllvmbackend.yaml131 to specify amount of parallel compilation threads. Value 0 allows to check available
/arkcompiler/runtime_core/libpandabase/mem/ringbuf/
Dlock_free_ring_buffer.h26 …* Lock-free single-producer single-consumer ring-buffer. Push can take infinite amount of time if …

12345