Lines Matching refs:u2
25 Opcode OpcodeFromBytecode(u2 bytecode) { in OpcodeFromBytecode()
104 size_t GetWidthFromBytecode(const u2* bytecode) { in GetWidthFromBytecode()
111 u2 elemWidth = bytecode[1]; in GetWidthFromBytecode()
134 static u4 InstA(u2 inst) { return (inst >> 8) & 0x0f; } in InstA()
135 static u4 InstB(u2 inst) { return inst >> 12; } in InstB()
136 static u4 InstAA(u2 inst) { return inst >> 8; } in InstAA()
139 static u4 FetchU4(const u2* ptr) { return ptr[0] | (u4(ptr[1]) << 16); } in FetchU4()
142 static u8 FetchU8(const u2* ptr) { in FetchU8()
147 Instruction DecodeInstruction(const u2* bytecode) { in DecodeInstruction()
148 u2 inst = bytecode[0]; in DecodeInstruction()
237 u2 regList = bytecode[2]; in DecodeInstruction()
284 u2 regList = bytecode[2]; in DecodeInstruction()