Home | History | Annotate | Download | only in codeflinger

Lines Matching defs:immed8

559 uint32_t ARMAssembler::immed8_pre(int32_t immed8, int W)
561 uint32_t offset = abs(immed8);
563 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
565 immed8);
567 return (1<<24) | (1<<22) | (((uint32_t(immed8)>>31)^1)<<23) |
571 uint32_t ARMAssembler::immed8_post(int32_t immed8)
573 uint32_t offset = abs(immed8);
575 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
577 immed8);
579 return (1<<22) | (((uint32_t(immed8)>>31)^1)<<23) |