Home
last modified time | relevance | path

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

12345678910>>...140

/third_party/wpa_supplicant/wpa_supplicant-2.9/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 …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/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 …]
/third_party/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 …]
/third_party/python/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 …]
/third_party/node/deps/v8/src/compiler/
Draw-machine-assembler.h17 #include "src/compiler/machine-operator.h"
64 MachineOperatorBuilder* machine() { return &machine_; } in machine() function
100 return AddNode(machine()->StackSlot(rep, alignment));
136 const Operator* op = machine()->Load(type); in Load()
144 const Operator* op = machine()->LoadImmutable(type); in LoadImmutable()
180 return AddNode(machine()->Store(StoreRepresentation(rep, write_barrier)), in Store()
217 if (machine()->UnalignedLoadSupported(rep)) { in UnalignedLoad()
218 return AddNode(machine()->Load(type), base, index); in UnalignedLoad()
220 return AddNode(machine()->UnalignedLoad(type), base, index); in UnalignedLoad()
230 if (machine()->UnalignedStoreSupported(rep)) { in UnalignedStore()
[all …]
Dint64-lowering.cc11 #include "src/compiler/machine-operator.h"
25 Graph* graph, MachineOperatorBuilder* machine, in Int64Lowering() argument
31 machine_(machine), in Int64Lowering()
47 if (!machine()->Is32()) { in LowerGraph()
155 *index_high = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes()
158 *index_low = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes()
247 LowerLoadOperator(node, rep, machine()->Load(MachineType::Int32())); in LowerNode()
254 machine()->UnalignedLoad(MachineType::Int32())); in LowerNode()
261 machine()->LoadImmutable(MachineType::Int32())); in LowerNode()
282 machine()->Store(StoreRepresentation( in LowerNode()
[all …]
Drepresentation-change.cc13 #include "src/compiler/machine-operator.h"
195 // value to the full machine word size and stores implicitly truncate, in GetRepresentationFor()
457 op = machine()->ChangeInt64ToFloat64(); in GetTaggedPointerRepresentationFor()
652 op = machine()->ChangeInt32ToFloat64(); in GetFloat32RepresentationFor()
654 op = machine()->TruncateFloat64ToFloat32(); in GetFloat32RepresentationFor()
661 op = machine()->ChangeUint32ToFloat64(); in GetFloat32RepresentationFor()
663 op = machine()->TruncateFloat64ToFloat32(); in GetFloat32RepresentationFor()
674 op = machine()->TruncateFloat64ToFloat32(); in GetFloat32RepresentationFor()
677 op = machine()->TruncateFloat64ToFloat32(); in GetFloat32RepresentationFor()
681 op = machine()->ChangeInt64ToFloat64(); in GetFloat32RepresentationFor()
[all …]
Dgraph-assembler.cc79 machine()->Is64() in UniqueIntPtrConstant()
120 return AddNode(graph()->NewNode(machine()->LoadFramePointer())); in LoadFramePointer()
146 return AddNode(graph()->NewNode(machine()->Name(), input)); \ in JSGRAPH_SINGLETON_CONSTANT_LIST()
153 return AddNode(graph()->NewNode(machine()->Name(), left, right)); \
161 graph()->NewNode(machine()->Name(), left, right, control())); \
195 CHECK(machine()->Float64RoundDown().IsSupported()); in Float64RoundDown()
196 return AddNode(graph()->NewNode(machine()->Float64RoundDown().op(), value)); in Float64RoundDown()
200 CHECK(machine()->Float64RoundTruncate().IsSupported()); in Float64RoundTruncate()
202 graph()->NewNode(machine()->Float64RoundTruncate().op(), value)); in Float64RoundTruncate()
207 graph()->NewNode(machine()->TruncateFloat64ToInt64(kind), value)); in TruncateFloat64ToInt64()
[all …]
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_compute.c39 struct tgsi_exec_machine *machine, in cs_prepare() argument
49 * Bind tokens/shader to the interpreter's machine state. in cs_prepare()
51 tgsi_exec_machine_bind_shader(machine, in cs_prepare()
55 if (machine->SysSemanticToIndex[TGSI_SEMANTIC_THREAD_ID] != -1) { in cs_prepare()
56 unsigned i = machine->SysSemanticToIndex[TGSI_SEMANTIC_THREAD_ID]; in cs_prepare()
58 machine->SystemValue[i].xyzw[0].i[j] = local_x + j; in cs_prepare()
59 machine->SystemValue[i].xyzw[1].i[j] = local_y; in cs_prepare()
60 machine->SystemValue[i].xyzw[2].i[j] = local_z; in cs_prepare()
64 if (machine->SysSemanticToIndex[TGSI_SEMANTIC_GRID_SIZE] != -1) { in cs_prepare()
65 unsigned i = machine->SysSemanticToIndex[TGSI_SEMANTIC_GRID_SIZE]; in cs_prepare()
[all …]
Dsp_fs_exec.c56 struct tgsi_exec_machine *machine, in exec_prepare() argument
62 * Bind tokens/shader to the interpreter's machine state. in exec_prepare()
64 tgsi_exec_machine_bind_shader(machine, in exec_prepare()
107 /* TODO: hide the machine struct in here somewhere, remove from this
112 struct tgsi_exec_machine *machine, in exec_run() argument
119 &machine->QuadPos); in exec_run()
122 machine->Face = (float) (quad->input.facing * -2 + 1); in exec_run()
124 machine->NonHelperMask = quad->inout.mask; in exec_run()
125 quad->inout.mask &= tgsi_exec_machine_run( machine, 0 ); in exec_run()
142 sizeof(machine->Outputs[i])); in exec_run()
[all …]
/third_party/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()
103 struct tgsi_exec_machine *machine = evs->machine; in vs_exec_run_linear() local
109 tgsi_exec_set_constant_buffers(machine, PIPE_MAX_CONSTANT_BUFFERS, in vs_exec_run_linear()
113 unsigned i = machine->SysSemanticToIndex[TGSI_SEMANTIC_INSTANCEID]; in vs_exec_run_linear()
114 assert(i < ARRAY_SIZE(machine->SystemValue)); in vs_exec_run_linear()
116 machine->SystemValue[i].xyzw[0].i[j] = shader->draw->instance_id; in vs_exec_run_linear()
138 unsigned vid = machine->SysSemanticToIndex[TGSI_SEMANTIC_VERTEXID]; in vs_exec_run_linear()
139 assert(vid < ARRAY_SIZE(machine->SystemValue)); in vs_exec_run_linear()
[all …]
Ddraw_gs.c83 struct tgsi_exec_machine *machine = shader->machine; in tgsi_fetch_gs_outputs() local
93 unsigned num_verts_per_prim = machine->Primitives[stream][prim_idx]; in tgsi_fetch_gs_outputs()
94 unsigned prim_offset = machine->PrimitiveOffsets[stream][prim_idx]; in tgsi_fetch_gs_outputs()
96 machine->Primitives[stream][prim_idx]; in tgsi_fetch_gs_outputs()
105 output[slot][0] = machine->Outputs[idx + slot].xyzw[0].f[0]; in tgsi_fetch_gs_outputs()
106 output[slot][1] = machine->Outputs[idx + slot].xyzw[1].f[0]; in tgsi_fetch_gs_outputs()
107 output[slot][2] = machine->Outputs[idx + slot].xyzw[2].f[0]; in tgsi_fetch_gs_outputs()
108 output[slot][3] = machine->Outputs[idx + slot].xyzw[3].f[0]; in tgsi_fetch_gs_outputs()
130 struct tgsi_exec_machine *machine = shader->machine; in tgsi_fetch_gs_input() local
136 int primid_sv = machine->SysSemanticToIndex[TGSI_SEMANTIC_PRIMID]; in tgsi_fetch_gs_input()
[all …]
/third_party/node/deps/openssl/openssl/ssl/statem/
DREADME.md1 State Machine Design
5 state machine code to aid future maintenance.
7 The state machine code replaces an older state machine present in OpenSSL
8 versions 1.0.2 and below. The new state machine has the following objectives:
25 - Control complexity: only the state machine can change state: keep all
26 the state changes local to the state machine component
28 The message flow state machine is divided into a reading sub-state machine and a
29 writing sub-state machine. See the source comments in statem.c for a more
32 Conceptually the state machine component is designed as follows:
42 | Core state machine code |
[all …]
/third_party/openssl/ssl/statem/
DREADME.md1 State Machine Design
5 state machine code to aid future maintenance.
7 The state machine code replaces an older state machine present in OpenSSL
8 versions 1.0.2 and below. The new state machine has the following objectives:
25 - Control complexity: only the state machine can change state: keep all
26 the state changes local to the state machine component
28 The message flow state machine is divided into a reading sub-state machine and a
29 writing sub-state machine. See the source comments in statem.c for a more
32 Conceptually the state machine component is designed as follows:
42 | Core state machine code |
[all …]
/third_party/node/deps/v8/tools/testrunner/local/
Dutils.py98 # host S390 machine. This facility is required for supporting Simd on V8.
162 machine = platform.machine()
163 return (machine and
165 not arch.startswith(machine))
171 machine = platform.machine()
172 machine = machine.lower() # Windows 7 capitalizes 'AMD64'.
173 if machine.startswith('arm'):
175 elif (not machine) or (not re.match('(x|i[3-6])86$', machine) is None):
177 elif machine == 'i86pc':
179 elif machine == 'x86_64':
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
Deap.h2 * EAP peer state machine functions (RFC 4137)
29 * enum eapol_bool_var - EAPOL boolean state variables for EAP state machine
31 * These variables are used in the interface between EAP peer state machine and
34 * EAP state machine to get and set the variables.
40 * EAP state machine reads and writes this value.
47 * Set to TRUE in lower layer, FALSE in EAP state machine.
54 * EAP state machine writes this value.
61 * Set to TRUE in EAP state machine, FALSE in lower layer.
68 * Set to TRUE in EAP state machine, FALSE in lower layer.
75 * Set to TRUE in lower layer, FALSE in EAP state machine.
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
Deap.h2 * EAP peer state machine functions (RFC 4137)
29 * enum eapol_bool_var - EAPOL boolean state variables for EAP state machine
31 * These variables are used in the interface between EAP peer state machine and
34 * EAP state machine to get and set the variables.
40 * EAP state machine reads and writes this value.
47 * Set to true in lower layer, false in EAP state machine.
54 * EAP state machine writes this value.
61 * Set to true in EAP state machine, false in lower layer.
68 * Set to true in EAP state machine, false in lower layer.
75 * Set to true in lower layer, false in EAP state machine.
[all …]
/third_party/ltp/testcases/network/multicast/mc_commo/
DREADME.1st1 This test requires two machines on the same subnet. Each machine must have the same
2 path setup for the test, i.e. if Machine A has "/testcases/mc_commo" for the files, then
3 Machine B must also have the same path setup. Machine B would be exported as the
4 RHOST on Machine A, i.e. 'export RHOST=<Machine B hostname>'. If this
6 the machine specified as the RHOST must have a ".rhosts" file in root's home
7 directory with the hostname of the local machine that's running the test. This is to
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DPasses.h45 /// MachineFunctionPrinter pass - This pass prints out the machine function to
78 /// MachineDominators - This pass is a machine dominators analysis pass.
81 /// MachineDominanaceFrontier - This pass is a machine dominators analysis pass.
84 /// MachineRegionInfo - This pass computes SESE regions for machine functions.
87 /// EdgeBundles analysis - Bundle machine CFG edges.
91 /// variable is life and sets machine operand kill flags.
94 /// PHIElimination - This pass eliminates machine instruction PHI nodes
118 /// MachineScheduler - This pass schedules machine instructions.
121 /// PostMachineScheduler - This pass schedules machine instructions postRA.
147 /// machine basic blocks.
[all …]
/third_party/ltp/testcases/network/nfsv4/locks/
Dlocktests.py31 class Machine: class
44 class Client(Machine):
46 def __init__(self, machine): argument
48 self.machine=machine
52 self.command="ssh "+user+"@"+self.machine+" "+self.command
73 command="scp "+fichier+" "+user+"@"+self.machine+":"+path
77 class Serveur(Machine):
102 print("-c <machine> : host list to deploy/run/clean the test")
103 print("-s <machine> : NFS server to use to setup the test")
104 print("-n <num> : number of processes each test machine will lauch to perform the test")
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DCOFFImportFile.cpp32 static bool is32bit(MachineTypes Machine) { in is32bit() argument
33 switch (Machine) { in is32bit()
35 llvm_unreachable("unsupported machine"); in is32bit()
45 static uint16_t getImgRelRelocation(MachineTypes Machine) { in getImgRelRelocation() argument
46 switch (Machine) { in getImgRelRelocation()
48 llvm_unreachable("unsupported machine"); in getImgRelRelocation()
93 MachineTypes Machine, bool MinGW) { in getNameType() argument
104 if (Machine == IMAGE_FILE_MACHINE_I386 && Sym.startswith("_")) in getNameType()
140 MachineTypes Machine; member in llvm::object::__anone3c011d90111::ObjectFactory
149 : Machine(M), ImportName(S), Library(S.drop_back(4)), in ObjectFactory()
[all …]
/third_party/curl/docs/libcurl/opts/
DCURLOPT_NETRC.md41 Only machine name, user name and password are taken into account (init macros
58 after that *machine*, which ever information is not specified.
65 and password after that *machine*, which ever information is not
70 The **.netrc** file format is simple: you specify lines with a machine name
71 and follow the login and password that are associated with that machine.
79 ## machine <name>
82 file for a machine token that matches the hostname specified in the URL. Once
84 file is reached or another "machine" is encountered.
88 This is the same as "machine" name except that default matches any name. There
89 can be only one default token, and it must be after all machine tokens. To
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/MIRParser/
DMIParser.h1 //===- MIParser.h - Machine Instructions Parser -----------------*- C++ -*-===//
9 // This file declares the function that parses the machine instructions.
186 /// Parse the machine basic block definitions, and skip the machine
189 /// This function runs the first parsing pass on the machine function's body.
190 /// It parses only the machine basic block definitions and creates the machine
191 /// basic blocks in the given machine function.
193 /// The machine instructions aren't parsed during the first pass because all
194 /// the machine basic blocks aren't defined yet - this makes it impossible to
195 /// resolve the machine basic block references.
201 /// Parse the machine instructions.
[all …]
/third_party/ltp/testcases/network/tcp_cmds/
DREADME5 of the remote machine, i.e.
10 machine. So if pan's root path is "/home/ltptests" on the test machine, then
11 it must also be located in "/home/ltptests" on the remote machine (RHOST).
14 machine, b/c some tests use this also. You will also need to setup a ".rhosts" file in
15 root's home directory on the remote machine, with the name of the local machine listed.
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eapol_supp/
Deapol_supp_sm.c37 unsigned int idleWhile; /* for EAP state machine */
57 /* Supplicant PAE state machine */
82 /* Key Receive state machine */
90 /* Supplicant Backend state machine */
164 /* Port Timers state machine - implemented as a function that will be called
240 * clearing it on initialization does not change actual state machine in SM_STATE()
323 * Prevent EAP peer state machine from failing due to prior in SM_STATE()
560 * clearing it on initialization does not change actual state machine in SM_STATE()
862 * Backend state machine is waiting for eapNoResp or eapResp to be set in eapol_sm_getSuppRsp()
863 * and these are only set in the EAP state machine when the processing in eapol_sm_getSuppRsp()
[all …]

12345678910>>...140