/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | type_helpers.h | 63 constexpr explicit int128_type(std::int64_t v) : lo(v) {} 65 std::int64_t lo {0}; 68 return (hi == 0) && (lo == v);
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | type_helpers.h | 74 constexpr explicit Int128Type(std::int64_t v) : lo(v) {} 78 std::int64_t lo {0}; 81 return (hi == 0) && (lo == v);
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | sort_helper.h | 50 int lo, int hi, int start, JSHandle<JSTaggedValue> fn); 51 static int CountRunAndMakeAscending(JSThread *thread, JSHandle<TaggedArray> &array, int lo, int h,
|
H A D | sort_helper.cpp | 57 int lo, int hi, const JSHandle<JSTaggedValue> &fn) in CountRunAndMakeAscending() 59 ASSERT(lo < hi); in CountRunAndMakeAscending() 60 int runHi = lo + 1; in CountRunAndMakeAscending() 82 ReverseRange(thread, array, lo, lo + runLength); in CountRunAndMakeAscending() 102 int lo, int hi, int start, JSHandle<JSTaggedValue> fn) 104 ASSERT(lo <= start && start <= hi); 105 if (start == lo) { 112 int left = lo; 56 CountRunAndMakeAscending(JSThread *thread, JSHandle<TaggedArray> &array, int lo, int hi, const JSHandle<JSTaggedValue> &fn) CountRunAndMakeAscending() argument
|
/arkcompiler/runtime_core/static_core/runtime/entrypoints/ |
H A D | string_index_of.h | 158 uint64_t lo = __builtin_bswap64(static_cast<uint64_t>(val)); in ClzInSwappedBytes() local 159 if (lo == 0) { in ClzInSwappedBytes() 162 return Clz(lo); in ClzInSwappedBytes()
|
/arkcompiler/runtime_core/static_core/compiler/tests/aarch64/ |
H A D | encoder64_test_2.cpp | 52 uint32_t lo = RandomGen<T>(); in TestCmp64() local 55 T tmp1 = hi | (lo + 1U); in TestCmp64() 56 T tmp2 = hi | lo; in TestCmp64() 155 uint32_t lo = RandomGen<T>(); in TestCompare64() local 158 T tmp1 = hi | (lo + 1U); in TestCompare64() 159 T tmp2 = hi | lo; in TestCompare64()
|
/arkcompiler/runtime_core/static_core/compiler/tests/aarch32/ |
H A D | encoder32_test_2.cpp | 108 uint32_t lo = RandomGen<T>(); in TestCompare64() local 111 T tmp1 = hi | (lo + 1U); in TestCompare64() 112 T tmp2 = hi | lo; in TestCompare64()
|
H A D | encoder32_test_1.cpp | 1883 uint32_t lo = RandomGen<T>(); in TestCmp64() local 1886 T tmp1 = hi | (lo + 1U); in TestCmp64() 1887 T tmp2 = hi | lo; in TestCmp64()
|
/arkcompiler/runtime_core/static_core/compiler/tests/amd64/ |
H A D | encoder64_test_2.cpp | 51 uint32_t lo = RandomGen<T>(); in TestCompare64() local 54 T tmp1 = hi | (lo + 1U); in TestCompare64() 55 T tmp2 = hi | lo; in TestCompare64()
|
H A D | encoder64_test_1.cpp | 1896 uint32_t lo = RandomGen<T>(); in TestCmp64() local 1899 T tmp1 = hi | (lo + 1U); in TestCmp64() 1900 T tmp2 = hi | lo; in TestCmp64()
|
/arkcompiler/runtime_core/compiler/tests/aarch32/ |
H A D | encoder32_test.cpp | 2284 uint32_t lo = random_gen<T>(); in TestCmp64() local 2287 T tmp1 = hi | (lo + 1U); in TestCmp64() 2288 T tmp2 = hi | lo; in TestCmp64() 2391 uint32_t lo = random_gen<T>(); in TestCompare64() local 2394 T tmp1 = hi | (lo + 1U); in TestCompare64() 2395 T tmp2 = hi | lo; in TestCompare64()
|
/arkcompiler/runtime_core/compiler/tests/amd64/ |
H A D | encoder64_test.cpp | 2316 uint32_t lo = random_gen<T>(); in TestCmp64() local 2319 T tmp1 = hi | (lo + 1U); in TestCmp64() 2320 T tmp2 = hi | lo; in TestCmp64() 2422 uint32_t lo = random_gen<T>(); in TestCompare64() local 2425 T tmp1 = hi | (lo + 1U); in TestCompare64() 2426 T tmp2 = hi | lo; in TestCompare64()
|
/arkcompiler/runtime_core/compiler/tests/aarch64/ |
H A D | encoder64_test.cpp | 2426 uint32_t lo = random_gen<T>(); in TestCmp64() local 2429 T tmp1 = hi | (lo + 1U); in TestCmp64() 2430 T tmp2 = hi | lo; in TestCmp64() 2529 uint32_t lo = random_gen<T>(); in TestCompare64() local 2532 T tmp1 = hi | (lo + 1U); in TestCompare64() 2533 T tmp2 = hi | lo; in TestCompare64()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/ |
H A D | encode.cpp | 60 return vixl::aarch64::Condition::lo; in Convert()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch32/ |
H A D | encode.cpp | 52 return vixl::aarch32::lo; in Convert()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | 19953 const lo = 1 << 22; 19984 t ? this._objFlags |= lo : this._objFlags &= -4194305; 19987 return !!(this._objFlags & lo); [all...] |