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

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

Completed in 494 milliseconds