Searched refs:get_mask (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64RelocationHelpers.h42 static inline uint32_t get_mask(uint32_t pValue) { function in namespace:mcld
47 return (pInst & ~((get_mask(2) << 29) | (get_mask(19) << 5))) |
48 ((pImm & get_mask(2)) << 29) | ((pImm & (get_mask(19) << 2)) << 3);
53 return (pInst & ~(get_mask(12) << 10)) | ((pImm & get_mask(12)) << 10);
59 return (pInst & ~get_mask(26)) | (pOff & get_mask(26));
65 return (pInst & ~(get_mask(1
[all...]
H A DAArch64Relocator.cpp488 A += pReloc.target() & get_mask(pParent.getSize(pReloc.type()));

Completed in 35 milliseconds