| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/20.implementation_details/05.keyword_struct_and_arkui/ |
| D | struct_implements_interface.ets | 22 amount: double 27 amount: double 31 this.amount = a 35 return this.amount / 2 46 assertEQ(structClass.amount, 50.5)
|
| D | struct_extends_class.ets | 22 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/ |
| D | callExtensionFunctionByThisInExtensionAndClassFunction.ets | 18 return 2 + this.amount(); 32 function amount(this:Fruit): int {
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/ |
| D | aarch64_imm_valid.h | 130 // 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 …
|
| D | aarch64_cgfunc.h | 316 …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/ |
| D | bc_ins_to_pandasm_ins.cpp.erb | 90 // 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/ |
| D | abc_inst_convert.cpp.erb | 99 // 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/ |
| D | cleanup.cpp | 434 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/ |
| D | cleanup.cpp | 553 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/ |
| D | cg_aarch64_aarch64_operand_test.cpp | 52 uint32 amount, int32 bitLen) in MyCreateExtendShiftOperand() argument 56 return *(memPool.New<ExtendShiftOperand>(op, amount, bitLen)); in MyCreateExtendShiftOperand()
|
| D | cg_cg_irbuilder_test.cpp | 44 …// test method:CreateBitShift(BitShiftOperand::ShiftOp op, uint32 amount, uint32 bitLen, MemPool *… in TEST()
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | aot_resolve_string.md | 38 - 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/ |
| D | aot_resolve_string.md | 38 - 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/ |
| D | malformed_parameterized_decl_not_same_params_number.ets | 19 desc: "malformed parameterized generics: wrong amount of type parameters"
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | monitor.yaml | 288 …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/ |
| D | abc_inst_convert.cpp.erb | 96 … "between amount of registers specified by instruction format and amount of function's arguments) "
|
| /arkcompiler/runtime_core/disassembler/templates/ |
| D | bc_ins_to_pandasm_ins.cpp.erb | 93 … "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/ |
| D | cg_irbuilder.cpp | 145 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/ |
| D | README.md | 10 * `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/ |
| D | README.md | 10 * `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/ |
| D | heap_manager.h | 126 // 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/ |
| D | barriers.cpp | 42 …// 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/ |
| D | instruction_combine.cpp | 1035 …// 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/ |
| D | llvmbackend.yaml | 131 to specify amount of parallel compilation threads. Value 0 allows to check available
|
| /arkcompiler/runtime_core/libpandabase/mem/ringbuf/ |
| D | lock_free_ring_buffer.h | 26 …* Lock-free single-producer single-consumer ring-buffer. Push can take infinite amount of time if …
|