Home
last modified time | relevance | path

Searched full:machine (Results 1 – 25 of 5553) sorted by relevance

12345678910>>...223

/external/wpa_supplicant_8/src/utils/
Dstate_machine.h2 * wpa_supplicant/hostapd - State machine definitions
9 * implement a state machine. In addition to including this header file, each
10 * file implementing a state machine must define STATE_MACHINE_DATA to be the
24 * SM_STATE - Declaration of a state machine function
25 * @machine: State machine name
26 * @state: State machine state
28 * This macro is used to declare a state machine function. It is used in place
32 #define SM_STATE(machine, state) \ argument
33 static void sm_ ## machine ## _ ## state ## _Enter(STATE_MACHINE_DATA *sm, \
37 * SM_ENTRY - State machine function entry point
[all …]
/external/elfutils/tests/
Dsaridx.c32 #define MACHINE(name) [name] = #name macro
33 MACHINE (EM_NONE),
34 MACHINE (EM_M32),
35 MACHINE (EM_SPARC),
36 MACHINE (EM_386),
37 MACHINE (EM_68K),
38 MACHINE (EM_88K),
39 MACHINE (EM_860),
40 MACHINE (EM_MIPS),
41 MACHINE (EM_MIPS_RS3_LE),
[all …]
/external/v8/src/compiler/
Draw-machine-assembler.h12 #include "src/compiler/machine-operator.h"
53 MachineOperatorBuilder* machine() { return &machine_; } in machine() function
88 return AddNode(machine()->StackSlot(rep)); in StackSlot()
128 return AddNode(machine()->Load(rep), base, index); in Load()
136 return AddNode(machine()->Store(StoreRepresentation(rep, write_barrier)), in Store()
146 if (machine()->UnalignedLoadSupported(rep, 1)) { in UnalignedLoad()
147 return AddNode(machine()->Load(rep), base, index); in UnalignedLoad()
149 return AddNode(machine()->UnalignedLoad(rep), base, index); in UnalignedLoad()
158 if (machine()->UnalignedStoreSupported(t, 1)) { in UnalignedStore()
159 return AddNode(machine()->Store(StoreRepresentation( in UnalignedStore()
[all …]
Drepresentation-change.cc11 #include "src/compiler/machine-operator.h"
134 // value to the full machine word size and stores implicitly truncate, in GetRepresentationFor()
260 op = machine()->ChangeFloat32ToFloat64(); in GetTaggedSignedRepresentationFor()
459 op = machine()->ChangeInt32ToFloat64(); in GetFloat32RepresentationFor()
461 op = machine()->TruncateFloat64ToFloat32(); in GetFloat32RepresentationFor()
468 op = machine()->ChangeUint32ToFloat64(); in GetFloat32RepresentationFor()
470 op = machine()->TruncateFloat64ToFloat32(); in GetFloat32RepresentationFor()
482 op = machine()->TruncateFloat64ToFloat32(); in GetFloat32RepresentationFor()
485 op = machine()->TruncateFloat64ToFloat32(); in GetFloat32RepresentationFor()
520 op = machine()->ChangeInt32ToFloat64(); in GetFloat64RepresentationFor()
[all …]
Dint64-lowering.cc10 #include "src/compiler/machine-operator.h"
23 Int64Lowering::Int64Lowering(Graph* graph, MachineOperatorBuilder* machine, in Int64Lowering() argument
28 machine_(machine), in Int64Lowering()
43 if (!machine()->Is32()) { in LowerGraph()
114 index_high = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes()
117 index_low = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes()
161 load_op = machine()->Load(MachineType::Int32()); in LowerNode()
164 load_op = machine()->UnalignedLoad(MachineType::Int32()); in LowerNode()
215 store_op = machine()->Store(StoreRepresentation( in LowerNode()
219 store_op = machine()->UnalignedStore(MachineRepresentation::kWord32); in LowerNode()
[all …]
/external/toolchain-utils/
Dafe_lock_machine.py23 """Raised when machine does not respond to ping."""
27 """Raised when cannot find info about machine on machine servers."""
31 """Raised when user requests to add/remove a ChromeOS HW Lab machine.."""
35 """Raised when user requests to add a machine that's already on the server."""
39 """Raised when attempt to add/remove a machine from local server fails."""
43 """Raised when server fails to lock/unlock machine as requested."""
47 """Raised when user attmepts to unlock machine locked by someone else."""
56 """Raised when cannot get information about lab machine from lab server."""
74 in the Python virtual machine (and signal handling) and cannot be changed.
89 remotes: A list of machine names or ip addresses to be managed. Names
[all …]
/external/mesa3d/src/mesa/program/
Dprog_execute.c80 const struct gl_program_machine *machine) in get_src_register_pointer() argument
82 const struct gl_program *prog = machine->CurProgram; in get_src_register_pointer()
87 reg += machine->AddressReg[0][0]; in get_src_register_pointer()
97 return machine->Temporaries[reg]; in get_src_register_pointer()
103 return machine->VertAttribs[reg]; in get_src_register_pointer()
108 return machine->Attribs[reg][machine->CurElement]; in get_src_register_pointer()
114 return machine->Outputs[reg]; in get_src_register_pointer()
126 assert(reg < (GLint) ARRAY_SIZE(machine->SystemValues)); in get_src_register_pointer()
127 return machine->SystemValues[reg]; in get_src_register_pointer()
144 struct gl_program_machine *machine) in get_dst_register_pointer() argument
[all …]
/external/skia/site/dev/testing/
Dskialab.md34 Each machine is labeled with its hostname and the number or letter used to
38 associated with. Each device connects to a host machine, either directly or
41 **Disclaimer: Please ONLY make changes on a lab machine as a last resort, as it
45 made on the machine (such as a driver update), please contact an infra team
52 ### Locating the host machine for a failing bot
56 machine where a failing bot is running in order to debug the failure.
62 builder and buildslave. Click the "Lookup" link next to "Host machine". This
65 select the machine which runs the buildslave in question.
66 3. The information box will display the hostname of the machine as well as the
67 KVM switch and number used to access the machine, if the machine is in the
[all …]
/external/toolchain-utils/crosperf/
Dbenchmark_run.py48 self.machine = None
67 # Just use the first machine for running the cached version,
72 self.profiler_args, self.machine_manager, self.machine,
98 self._logger, self.log_level, self.label, self.machine, output, err,
105 # Try to acquire a machine now.
106 self.machine = self.AcquireMachine()
107 self.cache.machine = self.machine
108 self.result = self.RunTest(self.machine)
110 self.cache.remote = self.machine.name
112 self.machine)
[all …]
Dmachine_manager.py4 """Machine Manager module."""
37 """Raised when cannot find/access the machine locks directory."""
45 """The machine class."""
82 machine=self.name,
120 #TODO yunlian: when the machine in rebooting, it will not return
125 machine=self.name,
127 assert ret == 0, 'Could not get meminfo from machine: %s' % self.name
135 machine=self.name,
137 assert ret == 0, 'Could not get cpuinfo from machine: %s' % self.name
157 machine=self.name,
[all …]
Dsuite_runner.py60 def Run(self, machine, label, benchmark, test_args, profiler_args): argument
62 self.PinGovernorExecutionFrequencies(machine, label.chromeos_root)
64 self.DecreaseWaitTime(machine, label.chromeos_root)
65 ret_tup = self.Telemetry_Run(machine, label, benchmark, profiler_args)
67 self.DecreaseWaitTime(machine, label.chromeos_root)
68 ret_tup = self.Telemetry_Crosperf_Run(machine, label, benchmark,
71 ret_tup = self.Test_That_Run(machine, label, benchmark, test_args,
114 set_cpu_freq, machine=machine_name, chromeos_root=chromeos_root)
115 self.logger.LogFatalIf(ret, 'Could not pin frequencies on machine: %s' %
122 'ls ' + FILE, machine=machine_name, chromeos_root=chromeos_root)
[all …]
/external/toolchain-utils/deprecated/
Drun_benchmarks.py12 hostname/IP of Chromeos machine
71 def RunBrowserBenchmark(chromeos_root, board, bench, machine): argument
78 machine: name of chromeos machine
82 ret = run_tests.RunRemoteTests(chromeos_root, machine, board, benchname)
86 def RunStartupBenchmark(chromeos_root, board, machine): argument
92 machine: name of chromeos machine
96 ret = run_tests.RunRemoteTests(chromeos_root, machine, board, benchname)
100 def RunCpuBenchmark(chromeos_root, bench, workdir, machine): argument
107 machine: name of chromeos machine
116 # Delete any existing run directories on machine.
[all …]
/external/autotest/client/cros/cellular/
Dlabconfig.py51 # server control file, on whatever machine the test was
83 def _get_dut(self, machine=None): argument
84 """Returns the DUT record for machine from cell["duts"]
86 machine: name or IP of machine. None: for "the current machine".
89 machine we're running on. The important thing is that this
95 if self.ip and not machine:
96 machine = self.ip
98 if not machine:
105 machine = get_interface_ip(interface)
106 if machine:
[all …]
/external/llvm/docs/
DMIRLangRef.rst2 Machine IR (MIR) Format Reference Manual
14 This document is a reference manual for the Machine IR (MIR) serialization
16 LLVM's :ref:`machine specific intermediate representation
17 <machine code representation>`.
32 contain the serialized machine functions.
58 the machine copy propagation pass in the ``stop-after`` option, as it runs
61 ``llc -stop-after machine-cp bug-trigger.ll > test.mir``
86 - The ``MCSymbol`` machine operands are only printed, they can't be parsed.
126 Machine Functions
129 The remaining YAML documents contain the machine functions. This is an example
[all …]
/external/autotest/client/cros/cellular/pseudomodem/
Dstate_machine.py33 In interactive mode, the state machine object exposes a dbus object under
37 In this mode, the state machine waits for a dbus method call
58 @returns: True, if the state machine has been cancelled or has
67 Tells the state machine to stop transitioning to further states.
75 Run this machine in interactive mode.
77 This function must be called before |Start|. In this mode, the machine
93 logging.info('Running state machine in interactive mode')
98 """ Start the state machine. """
106 Advance a step on a state machine running in interactive mode.
108 @returns: True if the state machine was advanced. False otherwise.
[all …]
Dstate_machine_factory.py22 state machine.
48 machine to pseudomodem, please add it here so that tests can easily run
64 Set the given machine to be launched in interative mode.
66 @param machine_name: The name of the machine to be launched in
75 Create an instance of the given machine.
77 @param machine_name: The name of the machine to be created. All
78 supported machine names are exported as constants in the
80 @param *args, **kwargs: Arguments to pass to the machine constructor.
81 @returns: A new instance of the deseried machine
85 machine = cdma_activate_machine.CdmaActivateMachine(*args, **kwargs)
[all …]
Dclient.py180 print '\nExpected one argument: Name of state machine\n'
185 print '\nNo such interactive state machine.\n'
190 def do_is_waiting(self, machine): argument
192 Determine if a machine is waiting for an advance call.
194 @param machine: Case sensitive name of the machine.
195 @return: True if |machine| is waiting to be advanced by the user.
198 ism = self._get_state_machine(machine)
205 print ('\nState machine is %swaiting.\n' %
209 (machine, repr(e)))
215 print ('\nUsage: is_waiting <state-machine-name>\n'
[all …]
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_compute.c40 struct tgsi_exec_machine *machine, in cs_prepare() argument
50 * Bind tokens/shader to the interpreter's machine state. in cs_prepare()
52 tgsi_exec_machine_bind_shader(machine, in cs_prepare()
56 if (machine->SysSemanticToIndex[TGSI_SEMANTIC_THREAD_ID] != -1) { in cs_prepare()
57 unsigned i = machine->SysSemanticToIndex[TGSI_SEMANTIC_THREAD_ID]; in cs_prepare()
59 machine->SystemValue[i].xyzw[0].i[j] = w; in cs_prepare()
60 machine->SystemValue[i].xyzw[1].i[j] = h; in cs_prepare()
61 machine->SystemValue[i].xyzw[2].i[j] = d; in cs_prepare()
65 if (machine->SysSemanticToIndex[TGSI_SEMANTIC_GRID_SIZE] != -1) { in cs_prepare()
66 unsigned i = machine->SysSemanticToIndex[TGSI_SEMANTIC_GRID_SIZE]; in cs_prepare()
[all …]
/external/autotest/server/hosts/
Dfactory_unittest.py55 """Generate a machine dictionary with the specified parameters.
57 @param hostname: hostname of machine
61 @return: machine dict with mocked AFE Host object and fake AfeStore.
104 machine = _gen_machine_dict()
106 machine,
117 machine = _gen_machine_dict(labels=['os:foo'])
119 host_obj = factory.create_host(machine)
127 machine = _gen_machine_dict(labels=['os:foo'],
131 host_obj = factory.create_host(machine)
139 machine = _gen_machine_dict()
[all …]
Dfactory.py51 def _get_host_arguments(machine): argument
61 @param machine: machine dict
66 hostname, afe_host = server_utils.get_host_info_from_machine(machine)
67 connection_pool = server_utils.get_connection_pool_from_machine(machine)
68 host_info_store = host_info.get_store_from_machine(machine)
151 def create_host(machine, host_class=None, connectivity_class=None, **args): argument
157 @param machine: A dict representing the device under test or a String
159 If it is a machine dict, the 'hostname' key is required.
172 detected_args = _get_host_arguments(machine)
193 # create a custom host class for this machine and return an instance of it
[all …]
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_vs_exec.c49 struct tgsi_exec_machine *machine; member
70 if (evs->machine->Tokens != shader->state.tokens) { in vs_exec_prepare()
71 tgsi_exec_machine_bind_shader(evs->machine, in vs_exec_prepare()
97 struct tgsi_exec_machine *machine = evs->machine; in vs_exec_run_linear() local
103 tgsi_exec_set_constant_buffers(machine, PIPE_MAX_CONSTANT_BUFFERS, in vs_exec_run_linear()
107 unsigned i = machine->SysSemanticToIndex[TGSI_SEMANTIC_INSTANCEID]; in vs_exec_run_linear()
108 assert(i < ARRAY_SIZE(machine->SystemValue)); in vs_exec_run_linear()
110 machine->SystemValue[i].xyzw[0].i[j] = shader->draw->instance_id; in vs_exec_run_linear()
131 unsigned vid = machine->SysSemanticToIndex[TGSI_SEMANTIC_VERTEXID]; in vs_exec_run_linear()
132 assert(vid < ARRAY_SIZE(machine->SystemValue)); in vs_exec_run_linear()
[all …]
/external/toolchain-utils/crb/
Dmachine_manager_singleton.py49 assert cros_machine, "Machine can't be None"
56 locked = lock_machine.Machine(cros_machine.name).Lock(True, sys.argv[0])
63 machine=cros_machine.name)
84 assert self._machines, ('Could not lock any machine in %s' %
91 for m in [machine for machine in self._machines if not machine.locked]:
96 for m in [machine for machine in self._machines if not machine.locked]:
101 for m in [machine for machine in self._machines if not machine.locked]:
108 def ReleaseMachine(self, machine): argument
111 if machine.name == m.name:
123 assert lock_machine.Machine(m.name).Unlock(True) == True, (
[all …]
/external/python/cpython2/Lib/test/
Dtest_netrc.py20 machine host1.domain.com login log1 password pass1 account acct1
46 machine host.domain.com login log password #pass account acct
51 machine host.domain.com login log password pass# account acct
56 machine host.domain.com login log password pa#ss account acct
67 machine foo.domain.com login bar password pass
68 machine bar.domain.com login foo password pass
74 machine foo.domain.com login bar password pass
75 machine bar.domain.com login foo password pass
81 machine foo.domain.com login bar password pass
82 machine bar.domain.com login foo password pass
[all …]
/external/python/cpython2/PC/VS9.0/
Dbuild.bat61 set machine=AMD64 variable
64 set machine=IX86 variable
81 nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" clean all
82 nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" install
88 …nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" TCLDIR="%tcldir%…
89 …nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" TCLDIR="%tcldir%…
90 …nmake -f makefile.vc MACHINE=%machine% DEBUG=%debug_flag% INSTALLDIR="%tcltkdir%" TCLDIR="%tcldir%…
96 …nmake -f python.mak DEBUG=%debug_flag% MACHINE=%machine% TCL_DIR="%tcldir%" TK_DIR="%tkdir%" INSTA…
97 …nmake -f python.mak DEBUG=%debug_flag% MACHINE=%machine% TCL_DIR="%tcldir%" TK_DIR="%tkdir%" INSTA…
98 …nmake -f python.mak DEBUG=%debug_flag% MACHINE=%machine% TCL_DIR="%tcldir%" TK_DIR="%tkdir%" INSTA…
/external/autotest/client/site_tests/platform_DBusMachineIdRotation/
Dplatform_DBusMachineIdRotation.py15 """Verify that /var/lib/dbus/machine-id is properly rotated.
18 we actually don't use /var/lib/dbus/machine-id for
24 """Allocates the machine-id file to use and initialize it."""
25 fd, self._machine_id_file = tempfile.mkstemp(prefix='machine-id-rot-')
30 """Cleans up the allocated machine-id file."""
34 """Helper function to read the machine-id file."""
41 subprocess.check_call(['cros-machine-id-regen', '-r', 'network',
48 """Check that the machine-id is not regenerated unless a given amount
51 subprocess.check_call(['cros-machine-id-regen', '-r', 'network',
58 # that the machine-id hasn't been regenerated.
[all …]

12345678910>>...223