Lines Matching defs:value
661 uint32_t ImmediateT32::Decode(uint32_t value) {
662 uint32_t base = value & 0xff;
663 switch (value >> 8) {
674 return base << (32 - (value >> 7));
712 uint32_t ImmediateA32::Decode(uint32_t value) {
713 int rotation = (value >> 8) * 2;
716 value &= 0xff;
717 if (rotation == 0) return value;
718 return (value >> rotation) | (value << (32 - rotation));