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

/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.cpp43 uint64_t helper_sign_extend(uint64_t pVal, uint64_t pOri_width) argument
45 assert(pOri_width <= 64);
46 if (pOri_width == 64)
49 uint64_t mask = (~((uint64_t)0)) >> (64 - pOri_width);
52 uint64_t sign_bit = 1 << (pOri_width - 1);

Completed in 56 milliseconds