Searched refs:inst (Results 1 – 4 of 4) sorted by relevance
134 static u4 InstA(u2 inst) { return (inst >> 8) & 0x0f; } in InstA() argument135 static u4 InstB(u2 inst) { return inst >> 12; } in InstB() argument136 static u4 InstAA(u2 inst) { return inst >> 8; } in InstAA() argument148 u2 inst = bytecode[0]; in DecodeInstruction() local149 Opcode opcode = OpcodeFromBytecode(inst); in DecodeInstruction()159 dec.vA = InstA(inst); in DecodeInstruction()160 dec.vB = InstB(inst); in DecodeInstruction()163 dec.vA = InstA(inst); in DecodeInstruction()164 dec.vB = s4(InstB(inst) << 28) >> 28; // sign extend 4-bit value in DecodeInstruction()167 dec.vA = InstAA(inst); in DecodeInstruction()[all …]
439 except AnritsuError as inst:441 "{}\n".format(inst)) # Typically RUNNING already459 except AnritsuError as inst:461 "{}\n".format(inst)) # Typically STOPPED already527 except AnritsuError as inst:529 "{}\n".format(inst)) # Typically RUNNING already559 except AnritsuError as inst:561 "{}\n".format(inst)) # Typically STOPPED already
92 def test_case_fn(inst): argument93 inst.stream_music_on_codec(**codec_config)94 proto = inst.run_analysis_and_generate_proto(**codec_config)95 inst.raise_pass_fail(proto)
98 final String inst = mDevice.executeShellCommand(CHECK_PACKAGE_CMD); in ensureDeviceSetup() local99 if (inst != null) { in ensureDeviceSetup()100 Matcher matcher = PACKAGE_VERSION_PAT.matcher(inst); in ensureDeviceSetup()