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

/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64RelocationHelpers.h46 static inline uint32_t helper_reencode_adr_imm(uint32_t pInst, uint32_t pImm) { argument
48 ((pImm & get_mask(2)) << 29) | ((pImm & (get_mask(19) << 2)) << 3);
52 static inline uint32_t helper_reencode_add_imm(uint32_t pInst, uint32_t pImm) { argument
53 return (pInst & ~(get_mask(12) << 10)) | ((pImm & get_mask(12)) << 10);
70 uint32_t pImm) {
71 return (pInst & ~(get_mask(12) << 10)) | ((pImm & get_mask(12)) << 10);
69 helper_reencode_ldst_pos_imm(uint32_t pInst, uint32_t pImm) argument
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.cpp177 Relocator::DWord pImm) {
180 pTarget |= pImm & 0x0fffU;
181 pTarget |= (pImm & 0xf000U) << 4;
196 Relocator::DWord pImm) {
199 pValue |= (pImm & 0xf000U) << 4;
200 pValue |= (pImm & 0x0800U) << 15;
201 pValue |= (pImm & 0x0700U) << 4;
202 pValue |= (pImm & 0x00ffU);
175 helper_insert_val_movw_movt_inst( Relocator::DWord pTarget, Relocator::DWord pImm) argument
194 helper_insert_val_thumb_movw_movt_inst( Relocator::DWord pValue, Relocator::DWord pImm) argument

Completed in 12 milliseconds