Home
last modified time | relevance | path

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

12345678910>>...145

/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/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/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/harfbuzz/src/
Dhb-ot-shape-complex-khmer-machine.hh1 #line 1 "hb-ot-shape-complex-khmer-machine.rl"
40 #line 41 "hb-ot-shape-complex-khmer-machine.hh"
58 #line 59 "hb-ot-shape-complex-khmer-machine.hh"
186 #line 43 "hb-ot-shape-complex-khmer-machine.rl"
190 #line 86 "hb-ot-shape-complex-khmer-machine.rl"
209 #line 210 "hb-ot-shape-complex-khmer-machine.hh" in find_syllables_khmer()
217 #line 106 "hb-ot-shape-complex-khmer-machine.rl" in find_syllables_khmer()
225 #line 226 "hb-ot-shape-complex-khmer-machine.hh" in find_syllables_khmer()
240 #line 241 "hb-ot-shape-complex-khmer-machine.hh" in find_syllables_khmer()
278 #line 279 "hb-ot-shape-complex-khmer-machine.hh" in find_syllables_khmer()
[all …]
Dhb-ot-shape-complex-use-machine.hh1 #line 1 "hb-ot-shape-complex-use-machine.rl"
56 #line 57 "hb-ot-shape-complex-use-machine.hh"
98 #line 99 "hb-ot-shape-complex-use-machine.hh"
355 #line 59 "hb-ot-shape-complex-use-machine.rl"
359 #line 176 "hb-ot-shape-complex-use-machine.rl"
442 #line 443 "hb-ot-shape-complex-use-machine.hh" in find_syllables_use()
449 #line 260 "hb-ot-shape-complex-use-machine.rl" in find_syllables_use()
454 #line 455 "hb-ot-shape-complex-use-machine.hh" in find_syllables_use()
469 #line 470 "hb-ot-shape-complex-use-machine.hh" in find_syllables_use()
507 #line 508 "hb-ot-shape-complex-use-machine.hh" in find_syllables_use()
[all …]
/third_party/python/Lib/test/
Dtest_netrc.py21 machine host1.domain.com login log1 password pass1 account acct1
50 machine host.domain.com login log password #pass account acct
55 machine host.domain.com login log password pass# account acct
60 machine host.domain.com login log password pa#ss account acct
71 machine foo.domain.com login bar password pass
72 machine bar.domain.com login foo password pass
78 machine foo.domain.com login bar password pass
79 machine bar.domain.com login foo password pass
85 machine foo.domain.com login bar password pass
86 machine bar.domain.com login foo password pass
[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/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/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/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/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/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::__anon644948390111::ObjectFactory
149 : Machine(M), ImportName(S), Library(S.drop_back(4)), in ObjectFactory()
[all …]
/third_party/ltp/testcases/kernel/mce-test/doc/cases/
Dsoft-inj_panic_ucr.txt22 * mce_reign() until mce_panic("Fatal Machine check",)
30 * Kernel panic message is "Fatal Machine check"
45 * mce_reign() until mce_panic("Fatal Machine check",)
53 * Kernel panic message is "Fatal Machine check"
68 * mce_reign() until mce_panic("Fatal Machine check",)
76 * Kernel panic message is "Fatal Machine check"
91 * mce_reign() until mce_panic("Machine check from unknown source",)
100 * Kernel panic message is "Machine check from unknown source"
119 * Kernel panic message is "Fatal Machine check"
133 * Kernel panic message is "Fatal Machine check"
Dsoft-inj_panic.txt20 * mce_reign() until mce_panic("Fatal Machine check",)
31 * Kernel panic message is "Fatal Machine check"
45 * mce_panic("Fatal machine check on current CPU",);
53 * Kernel panic message is "Fatal machine check on current CPU"
70 * Kernel panic message is "Fatal Machine check"
87 * Kernel panic message is "Fatal Machine check"
104 * Kernel panic message is "Fatal machine check on current CPU"
121 * Kernel panic message is "Fatal Machine check"
139 * Kernel panic message is "Machine check from unknown source"
154 * Kernel panic message is "Fatal Machine check"
[all …]
Dsoft-inj_panic_npcc.txt31 * Kernel panic message is "Fatal Machine check"
46 * Kernel panic message is "Fatal Machine check"
58 * mce_panic("Fatal machine check on current CPU", )
66 * Kernel panic message is "Fatal machine check on current CPU"
82 * Kernel panic message is "Fatal Machine check"
97 * Kernel panic message is "Fatal machine check on current CPU"
113 * Kernel panic message is "Fatal Machine check"
128 * Kernel panic message is "Fatal Machine check"
138 * mce_reign(), mce_panic("Machine check from unknown source") branch
144 * Kernel panic message is "Machine check from unknown source"
/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/multicast/
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 remote machine, with the name of the local machine listed. For example, if
/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 …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/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
249 * clearing it on initialization does not change actual state machine in SM_STATE()
337 * Prevent EAP peer state machine from failing due to prior in SM_STATE()
574 * clearing it on initialization does not change actual state machine in SM_STATE()
878 * Backend state machine is waiting for eapNoResp or eapResp to be set in eapol_sm_getSuppRsp()
879 * and these are only set in the EAP state machine when the processing in eapol_sm_getSuppRsp()
[all …]

12345678910>>...145