| /arkcompiler/runtime_core/verification/util/ |
| D | range.h | 108 Range BasedAt(Int point) const in BasedAt() argument 110 return Range {point, point + To_ - From_}; in BasedAt() 112 bool Contains(Int point) const in Contains() argument 114 return point >= From_ && point <= To_; in Contains() 116 Int PutInBounds(Int point) const in PutInBounds() argument 118 if (point < From_) { in PutInBounds() 121 if (point > To_) { in PutInBounds() 124 return point; in PutInBounds()
|
| /arkcompiler/runtime_core/libark_defect_scan_aux/tests/unittest/ |
| D | callee_info_test.js | 53 class Point { class 76 class ColorPoint extends Point { 97 let point = new Point(2, 3); 100 let x = point.getCoordinateX(); 101 point.setCoordinateX(x); 102 let point2 = point
|
| /arkcompiler/runtime_core/docs/ |
| D | file_format.md | 166 | `ACC_STRICT` | `0x0800` | Declared strictfp; floating-point mode is FP-strict. | 215 … | `uint32_t` | Offset to the class index structure. The offset must point to a structure in … 217 … | Offset to the line number program index structure. The offset must point to a structure in … 219 …t32_t` | Offset to the literalarray index structure. The offset must point to a structure in … 221 | `index_section_off` | `uint32_t` | Offset to the index section. The offset must point to … 238 | `class_idx_off` | `uint32_t` | Offset to the class index structure. The offset must point to a … 240 | `method_idx_off` | `uint32_t` | Offset to the method index structure. The offset must point to a… 242 | `field_idx_off` | `uint32_t` | Offset to the field index structure. The offset must point to a … 244 | `proto_idx_off` | `uint32_t` | Offset to the proto index structure. The offset must point to a … 267 | `name_off` | `uint32_t` | Offset to the name of the field. The offset must point to … [all …]
|
| D | assembly_format.md | 15 * Panda assembler should not follow any implicit conventions about the name of the entry point. 28 * Floating-point decimal/hexadecimal literals that can be represented with IEEE 754. Hexadecimal fl… 215 | `f32` | 32-bit single precision floating point number, compliant with IEEE 754 standard | 216 | `f64` | 64-bit double precision floating point number, compliant with IEEE 754 standard | 350 ### Program Entry Point 352 … entry point. The name of the entry point must be specified as a part of the input to the assemble…
|
| D | rationale-for-bytecode.md | 55 ; at this point, the top of the stack contains arg1 + arg2 66 ; at this point, virtual register 0 contains arg1 + arg2 105 ; at this point, accumulator register contains arg1 + arg2 177 (acc-reg-reg, acc-reg, acc-imm) and integer-based jumps, but not for floating-point arithmetic 188 with say 64-bit integers. In this case, if we want to add two double-precision floating point
|
| D | glossary.md | 63 Safepoint is used as a point at which we can safely stop the thread, and at this point, all 65 Mutator is at a known point in its interaction with the heap.
|
| /arkcompiler/ets_runtime/test/moduletest/merge/ |
| D | BUILD.gn | 18 entry_point = "--entry-point=A" 25 entry_point = "--entry-point=merge"
|
| /arkcompiler/ets_runtime/test/quickfix/ |
| D | BUILD.gn | 34 entry_point = "--entry-point=base" 40 entry_point = "--entry-point=base"
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | loop_peeling.md | 4 … peeling` optimization modifies the loops with exit-point at loop-header to the loops with exit-po… 22 - loop-header is a single loop-exit point; 55 ### 2. Move exit-point form the loop-header to the loop-backedge block
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | utf.h | 31 * code point code point code point
|
| D | utf.cpp | 45 * code point code point code point 54 * Convert mutf8 sequence to utf16 pair and return pair: [utf16 code point, mutf8 size]. 110 // means that is a single code point, it needs to be represented by three MUTF8 code. in ConvertUtf16ToMUtf8() 357 // means that is a single code point, it needs to be represented by three MUTF8 code. in Utf16ToMUtf8Size()
|
| /arkcompiler/runtime_core/compiler/optimizer/analysis/ |
| D | live_registers.h | 97 // Each LifeIntervalsTreeNode stores intervals covering the mid point associated with a node, these… 99 // mid point and every right child stores intervals started after current node's mid point.
|
| D | live_registers.cpp | 110 // 1) intervals covering mid point; in BuildIntervalsTree() 111 // 2) intervals ended before mid point; in BuildIntervalsTree() 112 // 3) intervals started after mid point. in BuildIntervalsTree()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | circuit_ir_specification.md | 319 #### Floating point unary arithmetic operations 321 * **FNEG**: returns the negation of its floating-point operand. 358 #### Floating-point binary arithmetic operations 360 * **FADD**: returns the sum of its two floating-point operands. 361 * **FSUB**: returns the difference of its two floating-point operands. 362 * **FMUL**: returns the product of its two floating-point operands. 363 * **FEXP**: returns the first floating-point operand raised to the power of the second floating-poi… 364 * **FDIV**: returns the quotient of its two floating-point operands. 365 * **FMOD**: returns the remainder from the division of its two floating-point operands. 399 #### Floating-point binary compare operations [all …]
|
| /arkcompiler/ets_runtime/ecmascript/base/tests/ |
| D | utf_helper_test.cpp | 303 … data length is only 1 and code in 0xd800-0xdfff, means that is a single code point, it needs to be in HWTEST_F_L0() 324 // code point lie in [0x00, 0x7F], it needs to be represented by one UTF8 code. in HWTEST_F_L0() 334 // code point lie in [0x80, 0x7FF], it needs to be represented by two UTF8 code, in HWTEST_F_L0() 343 …// code point lie in [0x800, 0xD7FF] or [0xDCoo, 0xFFFF], it needs to be represented by three UTF8… in HWTEST_F_L0() 411 // code point lie in [0x00, 0x7F], the length of utf8 code element byte is 1 in HWTEST_F_L0() 422 // code point lie in [0x80, 0x7FF], the length of utf8 code element byte is 2 in HWTEST_F_L0() 434 …// code point lie in [0x800, 0xD7FF] or [0xDC00,0xFFFF], the length of utf8 code element byte is 3. in HWTEST_F_L0() 435 …// when code point lie in [0xD800, 0xDBFF], due to the use of UCS-2, it corresponds to 3 utf8 symb… in HWTEST_F_L0() 446 // code point lie in [0x10000, 0x10FFFF], the length of utf8 code element byte is 4. in HWTEST_F_L0() 473 // when code point lie in (0x00, 0xFFFF], the required utf16 code element length is 1. in HWTEST_F_L0() [all …]
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | u32tof32.yaml | 18 title: Conversions between integer and floating point types 84 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
|
| D | u32tof64.yaml | 18 title: Conversions between integer and floating point types 84 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
|
| D | i32tof32.yaml | 18 title: Conversions between integer and floating point types 84 …Load different values (objects, strings, types, 32-bit floating point values, 32-bit integer value…
|
| D | i64tof64.yaml | 18 title: Conversions between integer and floating point types 99 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
|
| D | i32tof64.yaml | 18 title: Conversions between integer and floating point types 84 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
|
| D | f32tof64.yaml | 18 title: Conversions between integer and floating point types 94 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
|
| D | i64tof32.yaml | 18 title: Conversions between integer and floating point types 86 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
|
| D | u64tof32.yaml | 18 title: Conversions between integer and floating point types 105 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
|
| D | u64tof64.yaml | 18 title: Conversions between integer and floating point types 105 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
|
| D | f64tof32.yaml | 18 title: Conversions between integer and floating point types 102 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
|