Home | History | Annotate | Download | only in codeflinger

Lines Matching refs:abs

107     LOG_ALWAYS_FATAL_IF(abs(immed12) >= 0x800,
111 ((W&1)<<21) | (abs(immed12)&0x7FF);
116 LOG_ALWAYS_FATAL_IF(abs(immed12) >= 0x800,
120 return (((uint32_t(immed12)>>31)^1)<<23) | (abs(immed12)&0x7FF);
128 reg_imm(abs(Rm), type, shift);
133 return (1<<25) | (((uint32_t(Rm)>>31)^1)<<23) | reg_imm(abs(Rm), type, shift);
139 uint32_t offset = abs(immed8);
141 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
151 uint32_t offset = abs(immed8);
153 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
163 return (1<<24) | (((uint32_t(Rm)>>31)^1)<<23) | ((W&1)<<21) | (abs(Rm)&0xF);
168 return (((uint32_t(Rm)>>31)^1)<<23) | (abs(Rm)&0xF);