Home
last modified time | relevance | path

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

/third_party/vixl/src/aarch64/
Dpointer-auth-aarch64.cc158 int error_lsb = GetTopPACBit(ptr, type) - 2; in AuthPAC() local
159 uint64_t error_mask = UINT64_C(0x3) << error_lsb; in AuthPAC()
160 return (original_ptr & ~error_mask) | (error_code << error_lsb); in AuthPAC()
Dsimulator-aarch64.cc3680 int error_lsb = GetTopPACBit(addr, kInstructionPointer) - 2; in Simulator() local
3681 if (((addr >> error_lsb) & 0x3) != 0x0) { in Simulator()
4078 int error_lsb = GetTopPACBit(address, kInstructionPointer) - 2; in Simulator() local
4079 if (((address >> error_lsb) & 0x3) != 0x0) { in Simulator()
/third_party/node/deps/v8/src/execution/arm64/
Dpointer-auth-arm64.cc233 int error_lsb = GetTopPACBit(ptr, type) - 2; in AuthPAC() local
234 uint64_t error_mask = UINT64_C(0x3) << error_lsb; in AuthPAC()
238 return (original_ptr & ~error_mask) | (error_code << error_lsb); in AuthPAC()