| /arkcompiler/ets_runtime/test/aottest/builtin_inlining/bigint/AsIntN/ |
| D | builtinBigIntAsIntN.ts | 106 const max32 = 2n ** (32n - 1n) - 1n; // INT32_MAX = 2147483647 constant 107 const max32_possible_value = 2n ** 32n - 1n; // 11...11b constant 108 const max64 = 2n ** (64n - 1n) - 1n; // INT64_MAX = 9223372036854775807 constant 109 const max64_possible_value = 2n ** 64n - 1n; // 11...11b constant
|
| /arkcompiler/ets_runtime/test/aottest/builtin_inlining/bigint/AsUintN/ |
| D | builtinBigIntAsUintN.ts | 106 const max32 = 2n ** 32n - 1n; // UINT32_MAX = 4294967295 constant 107 const max64 = 2n ** 64n - 1n; // UINT64_MAX = 18446744073709551615 constant
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tools/declgen_ts2sts/test/cookbook_tests/ |
| D | arkts-no-assignment-constant-bigint.ts | 19 export const dec = 123, decBig = 123n; constant 23 export const largeDec = 12345678091234567890n; constant 36 export const neg = -123n; constant 37 export const negHex: -16n = -0x10n; constant 40 export const negZero: 0n = -0n; constant 41 export const baseChange: 255n = 0xFFn; constant 44 export let bigint_v:123n=123n; variable 45 export const baseChange_v: 255n = 0xFFn; constant
|
| /arkcompiler/ets_runtime/common_components/heap/allocator/ |
| D | treap.h | 27 #define CTREE_CHECK_PARENT_AND_LCHILD(n) CheckParentAndLeftChild(n) argument 28 #define CTREE_CHECK_PARENT_AND_RCHILD(n) CheckParentAndRightChild(n) argument 31 #define CTREE_CHECK_PARENT_AND_LCHILD(n) (void(0)) argument 32 #define CTREE_CHECK_PARENT_AND_RCHILD(n) (void(0)) argument 277 void DeleteNode(TreapNode* n) noexcept in DeleteNode() 292 MergeResult MergeAt(TreapNode& n, uint32_t idx, uint32_t num, bool refreshRegionDesc) in MergeAt() 311 MergeResult MergeToRight(TreapNode& n, uint32_t endIdx, uint32_t num, bool refreshRegionDesc) in MergeToRight() 352 MergeResult MergeToLeft(TreapNode& n, uint32_t startIdx, uint32_t num, bool refreshRegionDesc) in MergeToLeft() 393 inline TreapNode* RotateLeftChild(TreapNode& n) const in RotateLeftChild() 402 inline TreapNode* RotateRightChild(TreapNode& n) const in RotateRightChild() [all …]
|
| D | alloc_util.h | 28 constexpr T AllocUtilRndDown(T x, size_t n) in AllocUtilRndDown() 48 constexpr T AllocUtilRndUp(T x, size_t n) in AllocUtilRndUp()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| D | src_position.h | 56 void SetFileNum(uint16 n) in SetFileNum() 61 void SetColumn(uint16 n) in SetColumn() 66 void SetLineNum(uint32 n) in SetLineNum() 71 void SetRawData(uint32 n) in SetRawData() 76 void SetMplLineNum(uint32 n) in SetMplLineNum() 81 void CondSetLineNum(uint32 n) in CondSetLineNum() 86 void CondSetFileNum(uint16 n) in CondSetFileNum()
|
| /arkcompiler/ets_runtime/test/aottest/typeof/ |
| D | typeof.ts | 39 let n:any = null; variable 48 let bigInt = 9007199254740991n; variable
|
| /arkcompiler/toolchain/tooling/dynamic/base/ |
| D | pt_base64.h | 27 static std::size_t constexpr DecodedSize(std::size_t n) in DecodedSize() 32 static std::size_t constexpr EncodedSize(std::size_t n) in EncodedSize()
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | field_data_accessor-inl.h | 224 size_t n = 0; in GetAnnotationsNumber() local 231 size_t n = 0; in GetRuntimeAnnotationsNumber() local 238 size_t n = 0; in GetRuntimeTypeAnnotationsNumber() local 245 size_t n = 0; in GetTypeAnnotationsNumber() local
|
| /arkcompiler/ets_runtime/common_components/base/ |
| D | globals.h | 56 T RoundDown(T x, typename Identity<T>::type n) in RoundDown() 69 constexpr T RoundUp(T x, typename std::remove_reference<T>::type n) in RoundUp() 75 inline T* AlignUp(T* x, uintptr_t n) in AlignUp()
|
| /arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/ |
| D | file.h | 40 Expected<size_t, Error> Read(void *buf, size_t n) const in Read() 49 bool ReadAll(void *buf, size_t n) const in ReadAll() 59 Expected<size_t, Error> Write(const void *buf, size_t n) const in Write() 68 bool WriteAll(const void *buf, size_t n) const in WriteAll()
|
| /arkcompiler/runtime_core/static_core/libpandafile/ |
| D | field_data_accessor-inl.h | 237 size_t n = 0; in GetAnnotationsNumber() local 244 size_t n = 0; in GetRuntimeAnnotationsNumber() local 251 size_t n = 0; in GetRuntimeTypeAnnotationsNumber() local 258 size_t n = 0; in GetTypeAnnotationsNumber() local
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | date_parse.h | 28 static bool IsBetween(int n, int lower, int hign) in IsBetween() 405 static bool MinuteIsValid(int n) in MinuteIsValid() 411 static bool SecondIsValid(int n) in SecondIsValid() 417 static bool HourIsValid(int n) in HourIsValid() 423 static bool MilliSecondIsValid(int n) in MilliSecondIsValid() 458 bool IsValid(int n) const in IsValid() 464 bool IsValidSecond(int n) const in IsValidSecond() 498 static bool MonthIsValid(int n) in MonthIsValid() 503 static bool DayIsValid(int n) in DayIsValid()
|
| /arkcompiler/runtime_core/platforms/windows/libpandabase/ |
| D | file.h | 44 Expected<size_t, Error> Read(void *buf, size_t n) const in Read() 53 bool ReadAll(void *buf, size_t n) const in ReadAll() 63 Expected<size_t, Error> Write(const void *buf, size_t n) const in Write() 72 bool WriteAll(const void *buf, size_t n) const in WriteAll()
|
| /arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
| D | file.h | 48 Expected<size_t, Error> Read(void *buf, size_t n) const in Read() 57 bool ReadAll(void *buf, size_t n) const in ReadAll() 67 Expected<size_t, Error> Write(const void *buf, size_t n) const in Write() 76 bool WriteAll(const void *buf, size_t n) const in WriteAll()
|
| /arkcompiler/runtime_core/platforms/unix/libpandabase/ |
| D | file.h | 51 Expected<size_t, Error> Read(void *buf, size_t n) const in Read() 60 bool ReadAll(void *buf, size_t n) const in ReadAll() 70 Expected<size_t, Error> Write(const void *buf, size_t n) const in Write() 79 bool WriteAll(const void *buf, size_t n) const in WriteAll()
|
| /arkcompiler/runtime_core/libabckit/src/ |
| D | metadata_arkts_inspect_impl.cpp | 73 extern "C" AbckitCoreNamespace *ArktsNamespaceToCoreNamespace(AbckitArktsNamespace *n) in ArktsNamespaceToCoreNamespace() 82 extern "C" AbckitArktsNamespace *CoreNamespaceToArktsNamespace(AbckitCoreNamespace *n) in CoreNamespaceToArktsNamespace() 92 extern "C" AbckitArktsFunction *ArktsV1NamespaceGetConstructor(AbckitArktsNamespace *n) in ArktsV1NamespaceGetConstructor() 445 …SModuleEnumerateNamespaces(AbckitCoreModule *m, void *data, bool (*cb)(AbckitCoreNamespace *n, voi… in ArkTSModuleEnumerateNamespaces() 447 for (auto &n : m->namespaces) { in ArkTSModuleEnumerateNamespaces() local 489 bool ArkTSNamespaceEnumerateNamespaces(AbckitCoreNamespace *n, void *data, in ArkTSNamespaceEnumerateNamespaces() 490 bool (*cb)(AbckitCoreNamespace *n, void *data)) in ArkTSNamespaceEnumerateNamespaces() 500 bool ArkTSNamespaceEnumerateClasses(AbckitCoreNamespace *n, void *data, bool (*cb)(AbckitCoreClass … in ArkTSNamespaceEnumerateClasses() 510 bool ArkTSNamespaceEnumerateTopLevelFunctions(AbckitCoreNamespace *n, void *data, in ArkTSNamespaceEnumerateTopLevelFunctions()
|
| /arkcompiler/ets_frontend/arkguard/test/grammar/types_definition/ |
| D | none_define.ts | 22 let n: null = null; variable
|
| /arkcompiler/ets_frontend/legacy_bin/api8/src/ |
| D | index.js | 2 …node_modules/buffer-from/index.js":e=>{var t=Object.prototype.toString,r="undefined"!=typeof Buffe… argument
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | array_test.cpp | 52 static size_t GetArrayObjectSize(ark::Class *klass, size_t n) in GetArrayObjectSize() 57 static void TestArrayObjectSize(ClassRoot classRoot, uint32_t n) in TestArrayObjectSize()
|
| /arkcompiler/ets_runtime/test/aottest/pgo_store_deopt/ |
| D | pgo_store_deopt.js | 16 function foo(str, n) { argument
|
| /arkcompiler/ets_frontend/es2panda/test/parser/unicode/ |
| D | syntax-error-in-non-utf8-file.js | 16 b = {n:"�o"}; property
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/as/ |
| D | test_object_literal3.ts | 17 let a = { b , a /* @@ label */n ) variable
|
| /arkcompiler/ets_frontend/es2panda/test/type_extractor/testcases/ |
| D | test-builtin-generic-class-type.ts | 18 let n: Array<number> = [1,2]; variable
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ts/ |
| D | objectDestructuring27.ts | 18 … a: { b: [c = 2, d] = ["foo", true] } = { b: [2, "foo"] } } = { a: { k: 2, b: [true, 2n] }, t: 6 }; variable
|