Home
last modified time | relevance | path

Searched refs:bit_pattern (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/v8/src/arm64/
Dmacro-assembler-arm64-inl.h1647 const uint64_t bit_pattern, in TestAndBranchIfAnySet() argument
1650 ASSERT(CountSetBits(bit_pattern, bits) > 0); in TestAndBranchIfAnySet()
1651 if (CountSetBits(bit_pattern, bits) == 1) { in TestAndBranchIfAnySet()
1652 Tbnz(reg, MaskToBit(bit_pattern), label); in TestAndBranchIfAnySet()
1654 Tst(reg, bit_pattern); in TestAndBranchIfAnySet()
1661 const uint64_t bit_pattern, in TestAndBranchIfAllClear() argument
1664 ASSERT(CountSetBits(bit_pattern, bits) > 0); in TestAndBranchIfAllClear()
1665 if (CountSetBits(bit_pattern, bits) == 1) { in TestAndBranchIfAllClear()
1666 Tbz(reg, MaskToBit(bit_pattern), label); in TestAndBranchIfAllClear()
1668 Tst(reg, bit_pattern); in TestAndBranchIfAllClear()
Dmacro-assembler-arm64.h692 const uint64_t bit_pattern,
698 const uint64_t bit_pattern,
1542 uint64_t bit_pattern,
Dmacro-assembler-arm64.cc3840 uint64_t bit_pattern, in TestAndSplit() argument
3849 TestAndBranchIfAnySet(reg, bit_pattern, if_any_set); in TestAndSplit()
3851 TestAndBranchIfAllClear(reg, bit_pattern, if_all_clear); in TestAndSplit()
3853 TestAndBranchIfAnySet(reg, bit_pattern, if_any_set); in TestAndSplit()