| /arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/ |
| D | DataView.ets.j2 | 83 {%- set impls = ['Little', 'Big'] if bit != 8 else ['Big'] %} 95 … {%- set methodName = ('Big' if bit == 64 and mode != 'Float' else '') + mode + '{}'.format(bit) %} 100 * @returns read value (big endian) 103 return this.get{{methodName}}Big(byteOffset) 108 * @param byteOffset zero index to write (big endian) 111 this.set{{methodName}}Big(byteOffset, value) 119 * @returns read value (big endian) 122 return this.get{{methodName}}Big(byteOffset) 127 * @param byteOffset zero index to write (big endian) 130 this.set{{methodName}}Big(byteOffset, value) [all …]
|
| /arkcompiler/ets_frontend/arkguard/test/grammar/string_validation/ |
| D | string_big.ts | 20 assert(str.big() === '<big>abc</big>', 'success');
|
| /arkcompiler/runtime_core/taihe/test/ani_bigint/idl/ |
| D | bigint_test.taihe | 23 let big = BigInt.asIntN(64, tmp); 24 let lg : long = big.getLong(); 37 let big: BigInt = 0n; 40 big = (big << 64n) | tmp; 42 return big;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | DataView.ets | 83 * @returns read value (big endian) 91 * @param byteOffset zero index to write (big endian) 100 * @returns read value (big endian) 108 * @param byteOffset zero index to write (big endian) 157 * @returns read value (big endian) 165 * @param byteOffset zero index to write (big endian) 174 * @returns read value (big endian) 182 * @param byteOffset zero index to write (big endian) 230 * @returns read value (big endian) 238 * @param byteOffset zero index to write (big endian) [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/ |
| D | DoubleInvoke.ets | 33 const big:BigInt = 1234567890n; 34 let tmp = Number(big);
|
| /arkcompiler/ets_runtime/test/sharedtest/sharedJSON/ |
| D | expect_output.txt | 45 {"big":1122334455667788999,"small":123,"deci":1234567890.0123456,"shortExp":1.79e+308,"longExp":1.7… 46 {"big":1122334455667788999,"small":123,"deci":1234567890.0123456,"shortExp":1.79e+308,"longExp":1.7… 56 {"big":1122334455667788999,"small":123,"deci":1234567890.0123456,"shortExp":1.79e+308,"longExp":1.7… 57 {"big":1122334455667788999,"small":123,"deci":1234567890.0123456,"shortExp":1.79e+308,"longExp":1.7…
|
| D | sharedJSON.ts | 37 let input = '{"big":1122334455667788999,"small":123,"deci":1234567890.0123456,"shortExp":1.79e+308,… 121 print(obj.big); 122 print((typeof obj.big === "bigint")); 129 print(obj2.big); 162 print(obj.big); 163 print((typeof obj.big === "bigint")); 170 print(obj2.big); 200 print(obj.big); 205 print((typeof obj.big === "number"));
|
| /arkcompiler/ets_runtime/test/aottest/ldsuperbyname/ |
| D | expect_output.txt | 14 Animal big then dog!
|
| D | ldsuperbyname.ts | 21 return 'Animal big then ';
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/interop/ |
| D | interop_convert_import_js.js | 19 export let foo4 = {big: 123n} property
|
| D | interop_convert_import.ets | 22 let a3: bigint = foo4.big as bigint
|
| D | interop_convert_import.ets.migrate.ets | 30 let a3: bigint = foo4.getProperty("big").toBigInt()
|
| /arkcompiler/toolchain/websocket/test/ |
| D | frame_builder_test.cpp | 88 // everything is encoded as big-endian 110 // everything is encoded as big-endian 167 // everything is encoded as big-endian
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | aot_pgo.md | 56 Now, we only dump profiling data to file when runtime destory to avoid big impact on VM.
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/not_initialized_variable/ |
| D | complex_types.ets | 17 big,
|
| /arkcompiler/runtime_core/static_core/plugins/ets/sdk/api/ |
| D | @ohos.buffer.ets | 1039 * Writes a signed integer to the buffer at the specified offset using big-endian format 1059 * Reads a signed integer from the buffer at the specified offset using big-endian format 1128 * Writes an unsigned integer to the buffer at the specified offset using big-endian format 1148 * Reads an unsigned integer from the buffer at the specified offset using big-endian format 1242 … * Reads a signed 64-bit integer from the buffer at the specified offset using big-endian format 1262 … * Reads an unsigned 64-bit integer from the buffer at the specified offset using big-endian format 1282 * Reads a 64-bit double from the buffer at the specified offset using big-endian format 1302 * Reads a 32-bit float from the buffer at the specified offset using big-endian format 1332 … * Reads a signed 16-bit integer from the buffer at the specified offset using big-endian format 1352 … * Reads a signed 32-bit integer from the buffer at the specified offset using big-endian format [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
| D | ets_class_root.cpp | 20 // CC-OFFNXT(huge_cyclomatic_complexity) big switch case
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | murmur3_hash.h | 105 // Do this because we don't want to dispatch Big/Little endianness. in MurmurHash3() 166 // Do this because we don't want to dispatch Big/Little endianness. in MurmurHash3String()
|
| /arkcompiler/ets_runtime/test/aottest/builtin_inlining/math/Cbrt/ |
| D | builtinMathCbrt.ts | 135 throw new Error("big value") 144 print(Math.cbrt(throwingObj)); //: Error: big value
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/ |
| D | ets_method_signature_test.cpp | 112 EtsMethodSignature big("J[BI[CI[IZ:I"); in TEST_F() local 113 EXPECT_EQ(big.GetProto(), Method::Proto( in TEST_F()
|
| /arkcompiler/runtime_core/static_core/libpandabase/utils/ |
| D | murmur3_hash.h | 102 // Do this because we don't want to dispatch Big/Little endianness. in MurmurHash3() 163 // Do this because we don't want to dispatch Big/Little endianness. in MurmurHash3String()
|
| /arkcompiler/runtime_core/static_core/runtime/mem/ |
| D | humongous_obj_allocator-inl.h | 53 … LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "The align is too big for this allocator. Return nullptr."; in Alloc() 65 // the size is too big in Alloc() 66 … LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "The size is too big for this allocator. Return nullptr."; in Alloc() 426 // This pool is too big for inserting in Reserved in TryToInsert() 427 LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "It is too big for Reserved memory"; in TryToInsert()
|
| /arkcompiler/ets_frontend/ets2panda/lexer/templates/ |
| D | token.inl.erb | 18 // CC-OFFNXT(huge_method,huge_cyclomatic_complexity,G.FUN.01-CPP) big switch-case, solid logic
|
| /arkcompiler/runtime_core/static_core/assembler/ |
| D | annotation.h | 100 // CC-OFFNXT(huge_cyclomatic_complexity[C], huge_method[C], G.FUN.01-CPP) big switch case 175 // CC-OFFNXT(huge_method[C], G.FUN.01-CPP) big switch case 238 // CC-OFFNXT(huge_cyclomatic_complexity[C], huge_method[C], G.FUN.01-CPP) big switch case 313 // CC-OFFNXT(huge_cyclomatic_complexity[C], huge_method[C], G.FUN.01-CPP) big switch case
|
| /arkcompiler/runtime_core/static_core/libpandabase/mem/ |
| D | stack_like_allocator.h | 32 // 1. Allocate big memory piece via mmap.
|