Searched defs:BIT_MASK (Results 1 - 1 of 1) sorted by relevance

/art/compiler/dex/quick/arm64/
H A Dtarget_arm64.cc251 #define BIT_MASK(w) ((UINT64_C(1) << (w)) - UINT64_C(1)) macro
256 value = value & BIT_MASK(width);
257 return ((value & BIT_MASK(rotate)) << (width - rotate)) | (value >> rotate);
263 uint64_t result = value & BIT_MASK(width);
302 uint64_t bits = BIT_MASK(imm_s + 1);
310 uint64_t bits = BIT_MASK((imm_s & mask) + 1);

Completed in 42 milliseconds