/arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
D | fldarr.32.yaml | 31 - file-name: "fldarr.32" 40 - sig: fldarr.32 v:in:f32[] 44 …description: Check fldarr.32 reads items from array of different size and type in Panda Assembly c… 51 fldarr.32 v0 62 - sig: fldarr.32 v:in:f32[] 66 …description: Check fldarr.32 reads items from array of different size and type in PandaAssembly co… 74 fldarr.32 v0 86 - sig: fldarr.32 v:in:f32[] 91 … description: Check array of primitive types for 'fldarr.32' instruction in Panda Assembly context. 108 fldarr.32 v0 [all …]
|
D | fstarr.32.yaml | 32 - file-name: "fstarr.32" 38 - sig: fstarr.32 v1:in:f32[], v2:in:i32 48 - sig: fstarr.32 v1:in:f32[], v2:in:i32 54 description: Check 'fstarr.32' instruction with valid register numbers. 59 fstarr.32 %s, %s 70 fstarr.32 a0, a1 # valid registers 84 - sig: fstarr.32 v1:in:f32[], v2:in:i32 89 description: Check 'fstarr.32' instruction with invalid register numbers. 92 fstarr.32 %s, *s 123 - sig: fstarr.32 v1:in:f32[], v2:in:i32 [all …]
|
/arkcompiler/ets_runtime/test/aottest/shl/ |
D | expect_output.txt | 14 32 15 32 16 32 17 32 18 32 19 -32
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | hash_base.h | 31 * \brief Create 32 bits Hash from \param key via \param seed. 35 * @return 32 bits hash 42 * \brief Create 32 bits Hash from \param key. 45 * @return 32 bits hash 52 * \brief Create 32 bits Hash from MUTF8 \param string. 54 * @return 32 bits hash 61 * \brief Create 32 bits Hash from MUTF8 \param string. 64 * @return 32 bits hash
|
D | hash.h | 36 * \brief Create 32 bits Hash from \param key via \param seed. 40 * @return 32 bits hash 48 * \brief Create 32 bits Hash from \param key. 51 * @return 32 bits hash 59 * \brief Create 32 bits Hash from MUTF8 \param string. 61 * @return 32 bits hash 69 * \brief Create 32 bits Hash from MUTF8 \param string. 72 * @return 32 bits hash 92 constexpr uint32_t FOUR_BYTES = 32U; 156 …// note that the numbers are for 32 bits specifically, see https://github.com/HowardHinnant/hash_a… in merge_hashes()
|
D | murmur3_hash.h | 15 // This is the murmur3 32 bit hash implementation 31 // 32 32 32 8 8 8 32 // Firstly, we proceed each 32 bits block from key; 59 static constexpr uint32_t MAX_BITS = 32; 95 // Iterate for each 32bits in MurmurHash3() 116 // blocks is a pointer to the end of 32bits section in MurmurHash3() 146 // Iterate for each 32bits in MurmurHash3String()
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/ |
D | objectLiteralAssignability16-expected.txt | 442 "line": 32, 456 "line": 32, 460 "line": 32, 475 "line": 32, 479 "line": 32, 486 "line": 32, 490 "line": 32, 497 "line": 32, 501 "line": 32, 515 "line": 32, [all …]
|
D | expression_4-expected.txt | 720 "line": 32, 724 "line": 32, 731 "line": 32, 735 "line": 32, 745 "line": 32, 749 "line": 32, 756 "line": 32, 760 "line": 32, 769 "line": 32, 773 "line": 32, [all …]
|
D | objectDestructuring-expected.txt | 996 "column": 32 1592 "line": 32, 1596 "line": 32, 1616 "line": 32, 1620 "line": 32, 1635 "line": 32, 1639 "line": 32, 1649 "line": 32, 1653 "line": 32, 1660 "line": 32, [all …]
|
D | expression_3-expected.txt | 797 "line": 32, 801 "line": 32, 814 "line": 32, 818 "line": 32, 828 "line": 32, 832 "line": 32, 839 "line": 32, 843 "line": 32, 850 "line": 32, 854 "line": 32, [all …]
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | divergentAccessors1.ts | 38 ihgs.foo = "32"; 39 AssertType(ihgs.foo = "32", "string"); 41 AssertType("32", "string"); 65 t_hgs.foo = "32"; 66 AssertType(t_hgs.foo = "32", "string"); 68 AssertType("32", "string");
|
D | divergentAccessorsTypes1.ts | 70 t.foo = 32; 71 AssertType(t.foo = 32, "int"); 73 AssertType(32, "int"); 105 t.foo = 32; 106 AssertType(t.foo = 32, "int"); 108 AssertType(32, "int"); 140 t.foo = 32; 141 AssertType(t.foo = 32, "int"); 143 AssertType(32, "int");
|
D | asOperator1.ts | 40 // Should parse as a union type, not a bitwise 'or' of (32 as number) and 'string' 41 let j = 32 as number|string; 43 AssertType(32 as number|string, "union"); 44 AssertType(32, "int");
|
D | objectLiteralArraySpecialization.ts | 26 let thing = create([ { name: "bob", id: 24 }, { name: "doug", id: 32 } ]); // should not error 28 AssertType(create([ { name: "bob", id: 24 }, { name: "doug", id: 32 } ]), "MyArrayWrapper<{ name: s… 30 AssertType([ { name: "bob", id: 24 }, { name: "doug", id: 32 } ], "{ name: string; id: number; }[]"… 36 AssertType({ name: "doug", id: 32 }, "{ name: string; id: number; }"); 40 AssertType(32, "int");
|
D | declFileRegressionTests.ts | 23 let n = { w: null, x: '', y: () => { }, z: 32 }; 25 AssertType({ w: null, x: '', y: () => { }, z: 32 }, "{ w: null; x: string; y: () => void; z: number… 33 AssertType(32, "int");
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
D | constpool_value.h | 65 using ConstPoolIndexField = BitField<uint32_t, 0, 32>; // 32: 32 bit 67 using ConstPoolTypeField = BitField<ConstPoolType, 32, 4>; // 32: offset, 4: 4bit
|
/arkcompiler/runtime_core/compiler/docs/ |
D | interface_inline_cache.md | 27 Cache structure:(offset addr)/(class addr) 32bit/32bit 48 2. cache's high 32 save the `offset addr`,cache's low 32 save the `class addr` 55 1. `class addr` is just the point to a class, in ark runtime, class point is 32bit 63 because method* is 64bit, it must be indirectly stored,cache only have 32bit to use 96 (ClassA.method_1* - ClassB.method_n*) > 2 ^ 32 101 ((ClassA.method_1* - ClassB.method_n*) / 2 ^ 3) < 2 ^ 32
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
D | test-ts-parameter-property-expected.txt | 133 "column": 32 144 "column": 32 611 "line": 32, 615 "line": 32, 625 "line": 32, 629 "line": 32, 637 "line": 32, 641 "line": 32, 649 "line": 32, 653 "line": 32, [all …]
|
D | test-cyclic-module-import-expected.txt | 174 "column": 32 205 "column": 32 437 "column": 32 559 "line": 32, 563 "line": 32, 581 "line": 32, 585 "line": 32, 592 "line": 32, 596 "line": 32, 604 "line": 32, [all …]
|
D | test-tuple-type5-expected.txt | 157 "column": 32 1522 "line": 32, 1534 "line": 32, 1538 "line": 32, 1555 "line": 32, 1559 "line": 32, 1566 "line": 32, 1570 "line": 32, 1577 "line": 32, 1581 "line": 32, [all …]
|
D | test-keyword-identify5-expected.txt | 101 "column": 32 441 "line": 32, 453 "line": 32, 457 "line": 32, 467 "line": 32, 471 "line": 32, 480 "line": 32,
|
D | test_export-declaration-named-namespace-expected.txt | 544 "line": 32, 561 "line": 32, 565 "line": 32, 575 "line": 32, 579 "line": 32, 586 "line": 32, 590 "line": 32, 598 "line": 32, 602 "line": 32,
|
/arkcompiler/runtime_core/tests/cts-assembly/ |
D | arrays-04.pa | 21 # - sig: fldarr.32 vs 31 # - sig: fstarr.32 vs1, vs2 51 fstarr.32 v1, v2 64 fldarr.32 v1
|
/arkcompiler/ets_frontend/es2panda/test/parser/js/ |
D | test-try-statement-expected.txt | 289 "line": 32, 293 "line": 32, 301 "line": 32, 305 "line": 32, 317 "line": 32,
|
/arkcompiler/runtime_core/libpandafile/ |
D | types.yaml | 67 width: 32 75 width: 32 83 width: 32
|