imm8             1060 tools/chdk_dasm.c             t_value imm8 = (instr&255);
imm8             1073 tools/chdk_dasm.c             imm8 = (imm8>>rot) | (imm8<<(32-rot));
imm8             1076 tools/chdk_dasm.c                 if (imm8>256 && ((imm8&(imm8-1))==0)) {
imm8             1082 tools/chdk_dasm.c                     while (!(imm8&15)) { n+=4; imm8=imm8>>4; }
imm8             1084 tools/chdk_dasm.c                     n += (0x30002010 >> 4*(imm8-1))&15;
imm8             1091 tools/chdk_dasm.c                     if (((int)imm8)<0 && ((int)imm8)>-100) {
imm8             1092 tools/chdk_dasm.c                         *op++='-'; imm8=-imm8;
imm8             1094 tools/chdk_dasm.c                     op = num(op, imm8, 10);
imm8             1099 tools/chdk_dasm.c                 if (instr&(1<<22)) a-=imm8; else a+=imm8;
imm8              358 tools/firmware_load.c     uint32_t imm8 = inst & 0xff;
imm8              359 tools/firmware_load.c     uint32_t offst = (imm8>>rot) | (imm8<<(32-rot));