Home
last modified time | relevance | path

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

12345678910>>...488

/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/toolchain-utils/
Dlock_machine.py28 """Raised when machine does not respond to ping."""
32 """Raised when server fails to lock/unlock machine as requested."""
36 """Raised when user attmepts to unlock machine locked by someone else."""
42 """Enum class to hold machine type."""
76 remotes: A list of machine names or ip addresses to be managed. Names
80 a machine that was locked by someone else.
106 def CheckMachine(self, machine, error_msg): argument
107 """Verifies that machine is responding to ping.
110 machine: String containing the name or ip address of machine to check.
114 MachineNotPingable: If machine is not responding to 'ping'
[all …]
/external/python/cpython3/Lib/test/
Dtest_netrc.py28 machine host.domain.com password pass1 login log1 account acct1
36 machine host.domain.com login log1 password pass1 account acct1
62 "machine host.domain.com",
63 "machine host.domain.com login",
64 "machine host.domain.com account",
65 "machine host.domain.com password",
66 "machine host.domain.com login \"\" account",
67 "machine host.domain.com login \"\" password",
68 "machine host.domain.com account \"\" password"
89 "machine host.domain.com invalid",
[all …]
/external/toolchain-utils/crosperf/
Dbenchmark_run.py61 self.machine = None
81 # Just use the first machine for running the cached version,
92 self.machine,
128 self.machine,
140 # Try to acquire a machine now.
141 self.machine = self.AcquireMachine()
142 self.cache.machine = self.machine
143 self.result = self.RunTest(self.machine)
145 self.cache.remote = self.machine.name
147 self.machine_manager.GetChromeVersion(self.machine)
[all …]
Dmachine_manager.py6 """Machine Manager module."""
37 """Raised when cannot find/access the machine locks directory."""
45 """The machine class."""
84 command, machine=self.name, chromeos_root=self.chromeos_root
128 # TODO yunlian: when the machine in rebooting, it will not return
132 command, machine=self.name, chromeos_root=self.chromeos_root
134 assert ret == 0, "Could not get meminfo from machine: %s" % self.name
141 command, machine=self.name, chromeos_root=self.chromeos_root
143 assert ret == 0, "Could not get cpuinfo from machine: %s" % self.name
151 # and may differ on the same type of machine.
[all …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DExecutionVisitor.java34 * This Visitor class may be used for a type-based Java Virtual Machine
40 * externally that the type constraints of the Java Virtual Machine instructions
113 ///** Symbolically executes the corresponding Java Virtual Machine instruction. */
123 /** Symbolically executes the corresponding Java Virtual Machine instruction. */
137 /** Symbolically executes the corresponding Java Virtual Machine instruction. */
144 /** Symbolically executes the corresponding Java Virtual Machine instruction. */
149 /** Symbolically executes the corresponding Java Virtual Machine instruction. */
154 /** Symbolically executes the corresponding Java Virtual Machine instruction. */
160 /** Symbolically executes the corresponding Java Virtual Machine instruction. */
165 /** Symbolically executes the corresponding Java Virtual Machine instruction. */
[all …]
/external/autotest/client/cros/cellular/
Dlabconfig.py61 # server control file, on whatever machine the test was
93 def _get_dut(self, machine=None): argument
94 """Returns the DUT record for machine from cell["duts"]
96 machine: name or IP of machine. None: for "the current machine".
99 machine we're running on. The important thing is that this
105 if self.ip and not machine:
106 machine = self.ip
108 if not machine:
115 machine = get_interface_ip(interface)
116 if machine:
[all …]
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/Uefi/
DUefiBaseType.h214 /// PE32+ Machine type for IA32 UEFI images.
219 /// PE32+ Machine type for IA64 UEFI images.
224 /// PE32+ Machine type for EBC UEFI images.
229 /// PE32+ Machine type for X64 UEFI images.
234 /// PE32+ Machine type for ARM mixed ARM and Thumb/Thumb2 images.
239 /// PE32+ Machine type for AARCH64 A64 images.
244 /// PE32+ Machine type for RISC-V 32/64/128
251 /// PE32+ Machine type for LoongArch 32/64 images.
259 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
260 ((Machine) == EFI_IMAGE_MACHINE_IA32)
[all …]
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Uefi/
DUefiBaseType.h215 /// PE32+ Machine type for IA32 UEFI images.
220 /// PE32+ Machine type for IA64 UEFI images.
225 /// PE32+ Machine type for EBC UEFI images.
230 /// PE32+ Machine type for X64 UEFI images.
235 /// PE32+ Machine type for ARM mixed ARM and Thumb/Thumb2 images.
240 /// PE32+ Machine type for AARCH64 A64 images.
245 /// PE32+ Machine type for RISC-V 32/64/128
254 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
255 ((Machine) == EFI_IMAGE_MACHINE_IA32)
257 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_X64) argument
[all …]
/external/coreboot/src/vendorcode/intel/edk2/uefi_2.4/MdePkg/Include/Uefi/
DUefiBaseType.h222 /// PE32+ Machine type for IA32 UEFI images.
227 /// PE32+ Machine type for IA64 UEFI images.
232 /// PE32+ Machine type for EBC UEFI images.
237 /// PE32+ Machine type for X64 UEFI images.
242 /// PE32+ Machine type for ARM mixed ARM and Thumb/Thumb2 images.
247 /// PE32+ Machine type for AARCH64 A64 images.
254 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
255 (((Machine) == EFI_IMAGE_MACHINE_IA32) || ((Machine) == EFI_IMAGE_MACHINE_EBC))
257 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_X64) argument
261 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
[all …]
/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/Uefi/
DUefiBaseType.h220 /// PE32+ Machine type for IA32 UEFI images.
225 /// PE32+ Machine type for IA64 UEFI images.
230 /// PE32+ Machine type for EBC UEFI images.
235 /// PE32+ Machine type for X64 UEFI images.
240 /// PE32+ Machine type for ARM mixed ARM and Thumb/Thumb2 images.
245 /// PE32+ Machine type for AARCH64 A64 images.
252 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
253 (((Machine) == EFI_IMAGE_MACHINE_IA32) || ((Machine) == EFI_IMAGE_MACHINE_EBC))
255 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_X64) argument
259 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
[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/google-cloud-java/java-distributedcloudedge/proto-google-cloud-distributedcloudedge-v1/src/main/java/com/google/cloud/edgecontainer/v1/
DMachineName.java34 "projects/{project}/locations/{location}/machines/{machine}");
38 private final String machine; field in MachineName
44 machine = null; in MachineName()
50 machine = Preconditions.checkNotNull(builder.getMachine()); in MachineName()
62 return machine; in getMachine()
73 public static MachineName of(String project, String location, String machine) { in of() argument
74 return newBuilder().setProject(project).setLocation(location).setMachine(machine).build(); in of()
77 public static String format(String project, String location, String machine) { in format() argument
81 .setMachine(machine) in format()
93 return of(matchMap.get("project"), matchMap.get("location"), matchMap.get("machine")); in parse()
[all …]
/external/autotest/client/cros/cellular/pseudomodem/
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 …]
Dstate_machine.py37 In interactive mode, the state machine object exposes a dbus object under
41 In this mode, the state machine waits for a dbus method call
62 @returns: True, if the state machine has been cancelled or has
71 Tells the state machine to stop transitioning to further states.
79 Run this machine in interactive mode.
81 This function must be called before |Start|. In this mode, the machine
97 logging.info('Running state machine in interactive mode')
102 """ Start the state machine. """
110 Advance a step on a state machine running in interactive mode.
112 @returns: True if the state machine was advanced. False otherwise.
[all …]
Dclient.py195 print('\nExpected one argument: Name of state machine\n')
200 print('\nNo such interactive state machine.\n')
205 def do_is_waiting(self, machine): argument
207 Determine if a machine is waiting for an advance call.
209 @param machine: Case sensitive name of the machine.
210 @return: True if |machine| is waiting to be advanced by the user.
213 ism = self._get_state_machine(machine)
220 print(('\nState machine is %swaiting.\n' %
224 (machine, repr(e))))
230 print ('\nUsage: is_waiting <state-machine-name>\n'
[all …]
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_compute.c38 struct tgsi_exec_machine *machine, in cs_prepare() argument
48 * Bind tokens/shader to the interpreter's machine state. in cs_prepare()
50 tgsi_exec_machine_bind_shader(machine, in cs_prepare()
54 if (machine->SysSemanticToIndex[TGSI_SEMANTIC_THREAD_ID] != -1) { in cs_prepare()
55 unsigned i = machine->SysSemanticToIndex[TGSI_SEMANTIC_THREAD_ID]; in cs_prepare()
57 machine->SystemValue[i].xyzw[0].i[j] = local_x + j; in cs_prepare()
58 machine->SystemValue[i].xyzw[1].i[j] = local_y; in cs_prepare()
59 machine->SystemValue[i].xyzw[2].i[j] = local_z; in cs_prepare()
63 if (machine->SysSemanticToIndex[TGSI_SEMANTIC_GRID_SIZE] != -1) { in cs_prepare()
64 unsigned i = machine->SysSemanticToIndex[TGSI_SEMANTIC_GRID_SIZE]; in cs_prepare()
[all …]
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/Uefi/
DUefiBaseType.h215 /// PE32+ Machine type for IA32 UEFI images.
220 /// PE32+ Machine type for IA64 UEFI images.
225 /// PE32+ Machine type for EBC UEFI images.
230 /// PE32+ Machine type for X64 UEFI images.
235 /// PE32+ Machine type for ARM mixed ARM and Thumb/Thumb2 images.
240 /// PE32+ Machine type for AARCH64 A64 images.
245 /// PE32+ Machine type for RISC-V 32/64/128
253 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
254 ((Machine) == EFI_IMAGE_MACHINE_IA32)
256 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_X64) argument
[all …]
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_vs_exec.c52 struct tgsi_exec_machine *machine; member
75 if (evs->machine->Tokens != shader->state.tokens) { in vs_exec_prepare()
76 tgsi_exec_machine_bind_shader(evs->machine, in vs_exec_prepare()
102 struct tgsi_exec_machine *machine = evs->machine; in vs_exec_run_linear() local
108 tgsi_exec_set_constant_buffers(machine, PIPE_MAX_CONSTANT_BUFFERS, in vs_exec_run_linear()
112 unsigned i = machine->SysSemanticToIndex[TGSI_SEMANTIC_INSTANCEID]; in vs_exec_run_linear()
113 assert(i < ARRAY_SIZE(machine->SystemValue)); in vs_exec_run_linear()
115 machine->SystemValue[i].xyzw[0].i[j] = shader->draw->instance_id; in vs_exec_run_linear()
137 unsigned vid = machine->SysSemanticToIndex[TGSI_SEMANTIC_VERTEXID]; in vs_exec_run_linear()
138 assert(vid < ARRAY_SIZE(machine->SystemValue)); in vs_exec_run_linear()
[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.
102 machine = _gen_machine_dict()
104 machine,
113 machine = _gen_machine_dict(labels=['os:foo'])
115 host_obj = factory.create_host(machine)
123 machine = _gen_machine_dict(labels=['os:foo'],
127 host_obj = factory.create_host(machine)
135 machine = _gen_machine_dict()
[all …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/
DConstants.java100 … * Flag definitions for Fields in the Java Virtual Machine Specification (Java SE 8 Edition).</a>"
102 …* Flag definitions for Methods in the Java Virtual Machine Specification (Java SE 8 Edition).</a>"
104 …* Flag definitions for Classes in the Java Virtual Machine Specification (Java SE 8 Edition).</a>"
262 * One of the limitations of the Java Virtual Machine.
264 * The Java Virtual Machine Specification, Second Edition, page 152, chapter 4.10.</a>
269 * One of the limitations of the Java Virtual Machine.
271 * The Java Virtual Machine Specification, Second Edition, page 152, chapter 4.10.</a>
277 * Opcode definitions in The Java Virtual Machine Specification</a> */
282 * Opcode definitions in The Java Virtual Machine Specification</a> */
287 * Opcode definitions in The Java Virtual Machine Specification</a> */
[all …]
DConst.java35 * The ClassFile Structure in The Java Virtual Machine Specification</a>
201 * Flag definitions for Fields in the Java Virtual Machine Specification (Java SE 8 Edition).</a>
203 … * Flag definitions for Methods in the Java Virtual Machine Specification (Java SE 8 Edition).</a>
205 … * Flag definitions for Classes in the Java Virtual Machine Specification (Java SE 8 Edition).</a>
335 * The Constant Pool in The Java Virtual Machine Specification</a>
342 * The Constant Pool in The Java Virtual Machine Specification</a>
349 * The Constant Pool in The Java Virtual Machine Specification</a>
356 * The Constant Pool in The Java Virtual Machine Specification</a>
363 * The Constant Pool in The Java Virtual Machine Specification</a>
370 * The Constant Pool in The Java Virtual Machine Specification</a>
[all …]
/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
DMachineImageOrBuilder.java30 * [Output Only] The creation timestamp for this machine image in RFC3339 text format.
42 * [Output Only] The creation timestamp for this machine image in RFC3339 text format.
54 * [Output Only] The creation timestamp for this machine image in RFC3339 text format.
104 …* [Input Only] Whether to attempt an application consistent machine image by informing the OS to p…
116 …* [Input Only] Whether to attempt an application consistent machine image by informing the OS to p…
129 * [Output Only] A unique identifier for this machine image. The server defines this identifier.
141 * [Output Only] A unique identifier for this machine image. The server defines this identifier.
192 * [Output Only] The resource type, which is always compute#machineImage for machine image.
204 * [Output Only] The resource type, which is always compute#machineImage for machine image.
216 * [Output Only] The resource type, which is always compute#machineImage for machine image.
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/
DMachinePassRegistry.def81 // MACHINE_FUNCTION_ANALYSIS("lazy-machine-bfi", LazyMachineBlockFrequencyInfoAnalysis())
82 // MACHINE_FUNCTION_ANALYSIS("machine-bfi", MachineBlockFrequencyInfoAnalysis())
83 // MACHINE_FUNCTION_ANALYSIS("machine-loops", MachineLoopInfoAnalysis())
84 // MACHINE_FUNCTION_ANALYSIS("machine-dom-frontier", MachineDominanceFrontierAnalysis())
85 // MACHINE_FUNCTION_ANALYSIS("machine-dom-tree", MachineDominatorTreeAnalysis())
86 // MACHINE_FUNCTION_ANALYSIS("machine-ore", MachineOptimizationRemarkEmitterPassAnalysis())
87 // MACHINE_FUNCTION_ANALYSIS("machine-post-dom-tree", MachinePostDominatorTreeAnalysis())
88 // MACHINE_FUNCTION_ANALYSIS("machine-region-info", MachineRegionInfoPassAnalysis())
89 // MACHINE_FUNCTION_ANALYSIS("machine-trace-metrics", MachineTraceMetricsAnalysis())
99 // MACHINE_FUNCTION_PASS("free-machine-function", FreeMachineFunctionPass, ())
[all …]

12345678910>>...488