/arkcompiler/ets_runtime/test/moduletest/arrayFilterCase/ |
H A D | arrayFilterCase.js | 18 const result = words.filter((word) => word.length > 6); 23 const modifiedWords = wordss.filter((word, index, arr) => { 25 return word.length < 6; 31 const appendedWords = words1.filter((word, index, arr) => { 33 return word.length < 6; 37 const deleteWords = words2.filter((word, index, arr) => { 39 return word.length < 6;
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
H A D | gc_bitset.h | 25 // |----word(32 bit)----|----word(32 bit)----|----...----|----word(32 bit)----|----word(32 bit)----| 137 uint32_t word = words[i]; in IterateMarkedBits() local 138 while (word != 0) { in IterateMarkedBits() 139 index = static_cast<uint32_t>(__builtin_ctz(word)); in IterateMarkedBits() 144 word &= ~(1u << index); in IterateMarkedBits() 157 uint32_t word = words[i]; 158 while (word ! [all...] |
H A D | jit_fort.cpp | 260 void JitFortGCBitset::MarkStartAddr(bool awaitInstall, uintptr_t startAddr, uint32_t index, uint32_t &word) in MarkStartAddr() argument 264 word &= ~(1u << index); in MarkStartAddr() 266 word &= ~(1u << index); in MarkStartAddr() 267 word &= ~(1u << (index+1)); in MarkStartAddr() 271 void JitFortGCBitset::MarkEndAddr(bool awaitInstall, uintptr_t endAddr, uint32_t index, uint32_t &word) in MarkEndAddr() argument 276 word &= ~(1u << index); in MarkEndAddr() 291 uint32_t word = words[i]; in IterateMarkedBitsConst() local 292 while (word != 0) { in IterateMarkedBitsConst() 293 index = static_cast<uint32_t>(__builtin_ctz(word)); in IterateMarkedBitsConst() 298 MarkStartAddr(awaitInstall, startAddr, index, word); in IterateMarkedBitsConst() [all...] |
H A D | jit_fort.h | 116 void MarkStartAddr(bool awaitInstall, uintptr_t startAddr, uint32_t index, uint32_t &word); 117 void MarkEndAddr(bool awaitInstall, uintptr_t endAddr, uint32_t index, uint32_t &word);
|
H A D | verification.cpp | 74 MarkWord word(object); in VerifyInactiveSemiSpaceMarkedObject() 75 if (!word.IsForwardingAddress()) { in VerifyInactiveSemiSpaceMarkedObject() 79 TaggedObject *value = word.ToForwardingAddress(); in VerifyInactiveSemiSpaceMarkedObject()
|
/arkcompiler/ets_runtime/test/moduletest/arrayfind/ |
H A D | arrayfind.js | 67 const deleteWords = words.find((word, index, arr) => { 69 word="asd" 70 return word == "asd"
|
/arkcompiler/ets_runtime/test/moduletest/arrayFindIndexCase/ |
H A D | findIndex.js | 50 const deleteWords = words.findIndex((word, index, arr) => { 52 return word == "limits"
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | datainfo.h | 184 uint64 word = info[i]; 188 while (word) { 189 int32 index = __builtin_ffsll(static_cast<int64>(word)); 209 word = word >> static_cast<uint64>(index);
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | object_header.h | 16 // - Get/Set Mark or Class word 19 // Methods, specific for Class word: 25 // Methods, specific for Mark word: 157 MarkWord word = AtomicGetMark(); in SetMarkedForGC() local 159 res = AtomicSetMark<false>(word, word.SetMarkedForGC()); in SetMarkedForGC() 170 MarkWord word = AtomicGetMark(); in SetUnMarkedForGC() local 172 res = AtomicSetMark<false>(word, word.SetUnMarkedForGC()); in SetUnMarkedForGC()
|
/arkcompiler/runtime_core/static_core/templates/ |
H A D | messages.rb | 59 word = scanner.scan(/[A-Z0-9][a-z0-9]*/) 60 if word.empty? 63 words << word
|
/arkcompiler/runtime_core/templates/ |
H A D | messages.rb | 59 word = scanner.scan(/[A-Z0-9][a-z0-9]*/) 60 if word.empty? 63 words << word
|
/arkcompiler/ets_frontend/ets2panda/scripts/ |
H A D | es2panda_pre_test.py | 36 for word in searched_words: 37 if any(word in line for word in searched_words):
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | murmur3_hash.h | 75 static uint32_t Rotl(uint32_t word, uint8_t shift) in Rotl() argument 77 return (word << shift) | (word >> (MAX_BITS - shift)); in Rotl()
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | murmur3_hash.h | 72 static uint32_t Rotl(uint32_t word, uint8_t shift) in Rotl() argument 74 return (word << shift) | (word >> (MAX_BITS - shift)); in Rotl()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
H A D | bitmap.cpp | 33 if (GetWordIdx(end) == GetWordIdx(begin)) { // [begin, end] in the same word in ClearBitsInRange() 93 BitmapWordType word = wordAddr->load(std::memory_order_acquire); in AtomicTestBit() local 94 return (word & mask) != 0; in AtomicTestBit()
|
H A D | bitmap.h | 58 for (BitmapWordType word : bitmap_) { in GetSetBitCount() 59 countMarkBits += Popcount(word); in GetSetBitCount() 153 // first word, clear bits before begin in IterateOverSetBitsInRange() 160 // last partial word, clear bits after right boundary in IterateOverSetBitsInRange() 315 * @brief Compute word index from bit index. 348 * @param begin_within_word - beginning index within word, in range [0, BITSPERWORD). 349 * @param end_within_word - end index within word, in range [0, BITSPERWORD]. Make sure end_within_word is
|
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/topLevelStmts/ |
H A D | globalClassHandler.h | 75 util::UString ReplaceSpecialCharacters(util::UString *word) const;
|
H A D | globalClassHandler.cpp | 153 util::UString GlobalClassHandler::ReplaceSpecialCharacters(util::UString *word) const in ReplaceSpecialCharacters() 193 auto text = word->View().Mutf8(); in ReplaceSpecialCharacters()
|
/arkcompiler/runtime_core/static_core/irtoc/lang/ |
H A D | instruction.rb | 217 InstructionsData.types[:word] = nil 222 @type = name == :word ? (Options.arch_64_bits? ? 'u64' : 'u32') :
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | date_parse.h | 74 int ReadAlphabet(char *word, int size)
in ReadAlphabet() argument 79 word[length] = GetLower(value_);
in ReadAlphabet()
|
H A D | js_thread.cpp | 416 MarkWord word(value.GetTaggedObject()); in IterateHandleWithCheck() 417 if (word.IsForwardingAddress()) { in IterateHandleWithCheck() 418 object = word.ToForwardingAddress(); in IterateHandleWithCheck()
|
/arkcompiler/ets_runtime/test/moduletest/elements_kind/ |
H A D | elements_kind.js | 1411 const result = words.filter((word) => word.length > 6);
|
/arkcompiler/ets_runtime/test/moduletest/elements_kind_generic/ |
H A D | elements_kind_generic.js | 1404 const result = words.filter((word) => word.length > 6);
|
/arkcompiler/ets_runtime/test/moduletest/array/ |
H A D | array.js | 1169 const longWords = words.filter(word => word.length >= 5);
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | mcr_circuit_builder.cpp | 1251 GateRef CircuitBuilder::Rotl(GateRef word, uint32_t shift) in Rotl() argument 1254 return Int32Or(Int32LSL(word, Int32(shift)), Int32LSR(word, Int32(MAX_BITS - shift))); in Rotl()
|