Home
last modified time | relevance | path

Searched refs:inst (Results 1 – 4 of 4) sorted by relevance

/tools/dexter/slicer/
Ddex_bytecode.cc134 static u4 InstA(u2 inst) { return (inst >> 8) & 0x0f; } in InstA() argument
135 static u4 InstB(u2 inst) { return inst >> 12; } in InstB() argument
136 static u4 InstAA(u2 inst) { return inst >> 8; } in InstAA() argument
148 u2 inst = bytecode[0]; in DecodeInstruction() local
149 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 …]
/tools/test/connectivity/acts/framework/acts/test_utils/power/tel_simulations/
DBaseSimulation.py439 except AnritsuError as inst:
441 "{}\n".format(inst)) # Typically RUNNING already
459 except AnritsuError as inst:
461 "{}\n".format(inst)) # Typically STOPPED already
527 except AnritsuError as inst:
529 "{}\n".format(inst)) # Typically RUNNING already
559 except AnritsuError as inst:
561 "{}\n".format(inst)) # Typically STOPPED already
/tools/test/connectivity/acts/tests/google/bt/performance/
DBtCodecSweepTest.py92 def test_case_fn(inst): argument
93 inst.stream_music_on_codec(**codec_config)
94 proto = inst.run_analysis_and_generate_proto(**codec_config)
95 inst.raise_pass_fail(proto)
/tools/tradefederation/core/src/com/android/tradefed/device/
DWifiHelper.java98 final String inst = mDevice.executeShellCommand(CHECK_PACKAGE_CMD); in ensureDeviceSetup() local
99 if (inst != null) { in ensureDeviceSetup()
100 Matcher matcher = PACKAGE_VERSION_PAT.matcher(inst); in ensureDeviceSetup()