Home
last modified time | relevance | path

Searched refs:words (Results 1 – 10 of 10) sorted by relevance

/ark/runtime_core/templates/
Dmessages.rb57 words = []
63 words << word
66 words
/ark/runtime_core/libpandabase/utils/
Dbit_vector.h464 size_t words = GetWordIndex(last_index); in PopCount() local
466 for (size_t i = 0; i < words; i++) { in PopCount()
470 res += Popcount(storage_[words] & ((1U << offset) - 1)); in PopCount()
577 size_t words = RoundUp(bits, WORD_BITS) / WORD_BITS; in EnsureSpace() local
578 if (words > storage_.size()) { in EnsureSpace()
582 storage_.resize(std::max(storage_.size() * GROW_MULTIPLIER, words)); in EnsureSpace()
/ark/runtime_core/verification/util/
Dbit_vector.h385 size_t words = SizeInWordsFromSizeInBits(sz); in process() local
388 if (words > 0) { in process()
389 for (; pos < (words - (last_word_partially_filled ? 1 : 0)); ++pos) { in process()
/ark/js_runtime/ecmascript/napi/
Djsnapi.cpp586 …ueRef> BigIntRef::CreateBigWords(const EcmaVM *vm, bool sign, uint32_t size, const uint64_t* words) in CreateBigWords() argument
589 JSHandle<BigInt> big = BigInt::CreateBigWords(thread, sign, size, words); in CreateBigWords()
608 void BigIntRef::GetWordsArray(bool* signBit, size_t wordCount, uint64_t* words) in GetWordsArray() argument
615 words[index] = static_cast<uint64_t>(bigintVal->GetDigit(count++)); in GetWordsArray()
616words[index] |= static_cast<uint64_t>(bigintVal->GetDigit(count++)) << 32; // 32 : int32_t bits in GetWordsArray()
619 words[index] = static_cast<uint64_t>(bigintVal->GetDigit(count++)); in GetWordsArray()
620words[index] |= static_cast<uint64_t>(bigintVal->GetDigit(count++)) << 32; // 32 : int32_t bits in GetWordsArray()
622 words[index] = static_cast<uint64_t>(bigintVal->GetDigit(count++)); in GetWordsArray()
/ark/ts2abc/test262/
Des5_tests.txt6948 language/future-reserved-words/_implements.js
6949 language/future-reserved-words/abstract.js
6950 language/future-reserved-words/boolean.js
6951 language/future-reserved-words/byte.js
6952 language/future-reserved-words/char.js
6953 language/future-reserved-words/class.js
6954 language/future-reserved-words/const.js
6955 language/future-reserved-words/debugger.js
6956 language/future-reserved-words/double.js
6957 language/future-reserved-words/enum.js
[all …]
DCI_tests.txt3125 language/reserved-words/ident-name-keyword-memberexpr-str.js
3126 language/reserved-words/ident-name-keyword-memberexpr.js
3127 language/reserved-words/ident-name-global-property-memberexpr.js
3128 language/reserved-words/ident-name-reserved-word-literal-prop-name.js
3129 language/reserved-words/ident-name-reserved-word-literal-memberexpr-str.js
3130 language/reserved-words/ident-name-global-property-prop-name.js
3131 language/reserved-words/ident-name-global-property-memberexpr-str.js
3132 language/reserved-words/ident-name-keyword-accessor.js
3153 language/future-reserved-words/throws.js
3154 language/future-reserved-words/transient.js
[all …]
/ark/js_runtime/ecmascript/
Djs_bigint.h89 …JSHandle<BigInt> CreateBigWords(JSThread *thread, bool sign, uint32_t size, const uint64_t* words);
Djs_bigint.cpp600 …e<BigInt> BigInt::CreateBigWords(JSThread *thread, bool sign, uint32_t size, const uint64_t* words) in CreateBigWords() argument
604 const uint32_t *digits = reinterpret_cast<const uint32_t *>(words); in CreateBigWords()
/ark/js_runtime/ecmascript/napi/include/
Djsnapi.h369 …ocal<JSValueRef> CreateBigWords(const EcmaVM *vm, bool sign, uint32_t size, const uint64_t* words);
372 void GetWordsArray(bool* signBit, size_t wordCount, uint64_t* words);
/ark/runtime_core/docs/
Drationale-for-bytecode.md21 or, in other words, different CPUs have different _instruction set architectures_. This means