Home
last modified time | relevance | path

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

/art/compiler/utils/arm/
Dassembler_arm.cc274 const uint32_t offset_mask = (1 << 12) - 1; in encoding3() local
276 uint32_t offset = encoding & offset_mask; in encoding3()
278 return (encoding & ~offset_mask) | ((offset & 0xf0) << 4) | (offset & 0xf); in encoding3()
286 const uint32_t offset_mask = (1 << 12) - 1; in vencoding() local
288 uint32_t offset = encoding & offset_mask; in vencoding()