Home | History | Annotate | Download | only in codeflinger

Lines Matching defs:immed8

545 uint32_t ARMAssembler::immed8_pre(int32_t immed8, int W)
547 uint32_t offset = abs(immed8);
549 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
551 immed8);
553 return (1<<24) | (1<<22) | (((uint32_t(immed8)>>31)^1)<<23) |
557 uint32_t ARMAssembler::immed8_post(int32_t immed8)
559 uint32_t offset = abs(immed8);
561 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
563 immed8);
565 return (1<<22) | (((uint32_t(immed8)>>31)^1)<<23) |