Searched defs:immed8 (Results 1 - 4 of 4) sorted by last modified time

/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.cpp559 uint32_t ARMAssembler::immed8_pre(int32_t immed8, int W) argument
561 uint32_t offset = abs(immed8);
563 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
565 immed8); local
567 return (1<<24) | (1<<22) | (((uint32_t(immed8)>>31)^1)<<23) |
571 uint32_t ARMAssembler::immed8_post(int32_t immed8) argument
573 uint32_t offset = abs(immed8);
575 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
577 immed8); local
579 return (1<<22) | (((uint32_t(immed8)>>3
[all...]
H A DARMAssemblerInterface.cpp52 uint32_t ARMAssemblerInterface::__immed8_pre(int32_t immed8, int W) argument
54 uint32_t offset = abs(immed8);
56 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
58 immed8); local
60 return (1<<24) | (1<<22) | (((uint32_t(immed8)>>31)^1)<<23) |
H A DARMAssemblerProxy.cpp135 uint32_t ARMAssemblerProxy::immed8_pre(int32_t immed8, int W) argument
137 return mTarget->immed8_pre(immed8, W);
140 uint32_t ARMAssemblerProxy::immed8_post(int32_t immed8) argument
142 return mTarget->immed8_post(immed8);
H A DMIPSAssembler.cpp296 uint32_t ArmToMipsAssembler::immed8_pre(int32_t immed8, int W) argument
298 // uint32_t offset = abs(immed8);
302 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
304 immed8); local
308 uint32_t ArmToMipsAssembler::immed8_post(int32_t immed8) argument
310 // uint32_t offset = abs(immed8);
312 LOG_ALWAYS_FATAL_IF(abs(immed8) >= 0x100,
314 immed8); local
315 amode.value = immed8;

Completed in 47 milliseconds