Home
last modified time | relevance | path

Searched full:point (Results 1 – 25 of 439) sorted by relevance

12345678910>>...18

/arkcompiler/runtime_core/verification/util/
Drange.h108 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/
Dcallee_info_test.js53 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/
Dfile_format.md166 | `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 …]
Dassembly_format.md15 * 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…
Drationale-for-bytecode.md55 ; 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
Dglossary.md63 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/
DBUILD.gn18 entry_point = "--entry-point=A"
25 entry_point = "--entry-point=merge"
/arkcompiler/ets_runtime/test/quickfix/
DBUILD.gn34 entry_point = "--entry-point=base"
40 entry_point = "--entry-point=base"
/arkcompiler/runtime_core/compiler/docs/
Dloop_peeling.md4 … 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/
Dutf.h31 * code point code point code point
Dutf.cpp45 * 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/
Dlive_registers.h97 // 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.
Dlive_registers.cpp110 // 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/
Dcircuit_ir_specification.md319 #### 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/
Dutf_helper_test.cpp303 … 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/
Du32tof32.yaml18 title: Conversions between integer and floating point types
84 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
Du32tof64.yaml18 title: Conversions between integer and floating point types
84 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
Di32tof32.yaml18 title: Conversions between integer and floating point types
84 …Load different values (objects, strings, types, 32-bit floating point values, 32-bit integer value…
Di64tof64.yaml18 title: Conversions between integer and floating point types
99 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
Di32tof64.yaml18 title: Conversions between integer and floating point types
84 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
Df32tof64.yaml18 title: Conversions between integer and floating point types
94 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
Di64tof32.yaml18 title: Conversions between integer and floating point types
86 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
Du64tof32.yaml18 title: Conversions between integer and floating point types
105 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
Du64tof64.yaml18 title: Conversions between integer and floating point types
105 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
Df64tof32.yaml18 title: Conversions between integer and floating point types
102 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…

12345678910>>...18