Lines Matching refs:u2
27 Opcode OpcodeFromBytecode(u2 bytecode) { in OpcodeFromBytecode()
106 size_t GetWidthFromBytecode(const u2* bytecode) { in GetWidthFromBytecode()
113 u2 elemWidth = bytecode[1]; in GetWidthFromBytecode()
136 static u4 InstA(u2 inst) { return (inst >> 8) & 0x0f; } in InstA()
137 static u4 InstB(u2 inst) { return inst >> 12; } in InstB()
138 static u4 InstAA(u2 inst) { return inst >> 8; } in InstAA()
141 static u4 FetchU4(const u2* ptr) { return ptr[0] | (u4(ptr[1]) << 16); } in FetchU4()
144 static u8 FetchU8(const u2* ptr) { in FetchU8()
149 Instruction DecodeInstruction(const u2* bytecode) { in DecodeInstruction()
150 u2 inst = bytecode[0]; in DecodeInstruction()
239 u2 regList = bytecode[2]; in DecodeInstruction()
286 u2 regList = bytecode[2]; in DecodeInstruction()