Home
last modified time | relevance | path

Searched refs:word (Results 1 - 25 of 28) sorted by relevance

12

/arkcompiler/ets_runtime/test/moduletest/arrayFilterCase/
H A DarrayFilterCase.js18 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 Dgc_bitset.h25 // |----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 Djit_fort.cpp260 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 Djit_fort.h116 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 Dverification.cpp74 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 Darrayfind.js67 const deleteWords = words.find((word, index, arr) => {
69 word="asd"
70 return word == "asd"
/arkcompiler/ets_runtime/test/moduletest/arrayFindIndexCase/
H A DfindIndex.js50 const deleteWords = words.findIndex((word, index, arr) => {
52 return word == "limits"
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Ddatainfo.h184 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 Dobject_header.h16 // - 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 Dmessages.rb59 word = scanner.scan(/[A-Z0-9][a-z0-9]*/)
60 if word.empty?
63 words << word
/arkcompiler/runtime_core/templates/
H A Dmessages.rb59 word = scanner.scan(/[A-Z0-9][a-z0-9]*/)
60 if word.empty?
63 words << word
/arkcompiler/ets_frontend/ets2panda/scripts/
H A Des2panda_pre_test.py36 for word in searched_words:
37 if any(word in line for word in searched_words):
/arkcompiler/runtime_core/libpandabase/utils/
H A Dmurmur3_hash.h75 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 Dmurmur3_hash.h72 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 Dbitmap.cpp33 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 Dbitmap.h58 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 DglobalClassHandler.h75 util::UString ReplaceSpecialCharacters(util::UString *word) const;
H A DglobalClassHandler.cpp153 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 Dinstruction.rb217 InstructionsData.types[:word] = nil
222 @type = name == :word ? (Options.arch_64_bits? ? 'u64' : 'u32') :
/arkcompiler/ets_runtime/ecmascript/
H A Ddate_parse.h74 int ReadAlphabet(char *word, int size) in ReadAlphabet() argument
79 word[length] = GetLower(value_); in ReadAlphabet()
H A Djs_thread.cpp416 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 Delements_kind.js1411 const result = words.filter((word) => word.length > 6);
/arkcompiler/ets_runtime/test/moduletest/elements_kind_generic/
H A Delements_kind_generic.js1404 const result = words.filter((word) => word.length > 6);
/arkcompiler/ets_runtime/test/moduletest/array/
H A Darray.js1169 const longWords = words.filter(word => word.length >= 5);
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dmcr_circuit_builder.cpp1251 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()

Completed in 26 milliseconds

12