/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | state_machine.h | 2 * 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) \ 33 static void sm_ ## machine ## [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | state_machine.h | 2 * 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) \ 33 static void sm_ ## machine ## [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | raw-machine-assembler.h | 17 #include "src/compiler/machine-operator.h" 64 MachineOperatorBuilder* machine() { return &machine_; } in machine() function in v8::internal::compiler::RawMachineAssembler 100 return AddNode(machine()->StackSlot(rep, alignment)); in StackSlot() 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() in UnalignedStore() [all...] |
H A D | representation-change.cc | 13 #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() in GetFloat32RepresentationFor() [all...] |
H A D | int64-lowering.cc | 11 #include "src/compiler/machine-operator.h" 25 Graph* graph, MachineOperatorBuilder* machine, in Int64Lowering() 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() in LowerNode() 24 Int64Lowering( Graph* graph, MachineOperatorBuilder* machine, CommonOperatorBuilder* common, SimplifiedOperatorBuilder* simplified, Zone* zone, Signature<MachineRepresentation>* signature, std::unique_ptr<Int64LoweringSpecialCase> special_case) Int64Lowering() argument [all...] |
H A D | wasm-compiler.cc | 22 #include "src/codegen/machine-type.h" 35 #include "src/compiler/machine-operator.h" 279 return AddNode(graph()->NewNode(mcgraph()->machine()->LoadImmutable(rep), in LoadImmutable() 482 mcgraph()->machine()->Is64() ? ChangeUint32ToUint64(index) : index; in WasmArrayElementOffset() 741 mcgraph()->machine()->StackPointerGreaterThan(StackCheckKind::kWasm), in StackCheck() 844 MachineOperatorBuilder* m = mcgraph()->machine(); in Binop() 1129 MachineOperatorBuilder* m = mcgraph()->machine(); in Unop() 1384 return mcgraph()->machine()->Is32() in Unop() 1423 return graph()->NewNode(mcgraph()->machine()->S128Const(value)); in Simd128Constant() 1443 MachineOperatorBuilder* m = mcgraph()->machine(); in Select() [all...] |
H A D | graph-assembler.cc | 79 machine()->Is64() in UniqueIntPtrConstant() 120 return AddNode(graph()->NewNode(machine()->LoadFramePointer())); in LoadFramePointer() 146 return AddNode(graph()->NewNode(machine()->Name(), input)); \ 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() in TruncateFloat64ToInt64() [all...] |
H A D | basic-block-instrumentor.cc | 12 #include "src/compiler/machine-operator.h" 78 MachineOperatorBuilder machine(graph->zone()); in Instrument() 115 graph->NewNode(machine.Load(MachineType::Uint32()), counters_array, in Instrument() 117 Node* inc = graph->NewNode(machine.Int32Add(), load, one); in Instrument() 121 Node* overflow = graph->NewNode(machine.Uint32LessThan(), inc, load); in Instrument() 122 Node* overflow_mask = graph->NewNode(machine.Int32Sub(), zero, overflow); in Instrument() 124 graph->NewNode(machine.Word32Or(), inc, overflow_mask); in Instrument() 127 graph->NewNode(machine.Store(StoreRepresentation( in Instrument()
|
H A D | machine-operator-reducer.cc | 5 #include "src/compiler/machine-operator-reducer.h" 19 #include "src/compiler/machine-graph.h" 72 const Operator* IntNAdd(MachineOperatorBuilder* machine) { in IntNAdd() argument 73 return machine->Int32Add(); in IntNAdd() 132 static const Operator* IntNAdd(MachineOperatorBuilder* machine) { in IntNAdd() argument 133 return machine->Int64Add(); in IntNAdd() 192 return graph()->NewNode(machine()->Float64Mul(), lhs, rhs); in Float64Mul() 197 graph()->NewNode(machine()->Float64Add(), Float64Constant(0.0), value); in Float64PowHalf() 199 graph()->NewNode(machine()->Float64LessThanOrEqual(), value, in Float64PowHalf() 203 graph()->NewNode(machine() in Float64PowHalf() 2398 MachineOperatorBuilder* MachineOperatorReducer::machine() const { machine() function in v8::internal::compiler::MachineOperatorReducer [all...] |
H A D | decompression-optimizer.cc | 47 MachineOperatorBuilder* machine) in DecompressionOptimizer() 50 machine_(machine), in DecompressionOptimizer() 208 NodeProperties::ChangeOp(node, machine()->Load(compressed_load_rep)); in ChangeLoad() 212 machine()->LoadImmutable(compressed_load_rep)); in ChangeLoad() 216 machine()->ProtectedLoad(compressed_load_rep)); in ChangeLoad() 220 machine()->UnalignedLoad(compressed_load_rep)); in ChangeLoad() 45 DecompressionOptimizer(Zone* zone, Graph* graph, CommonOperatorBuilder* common, MachineOperatorBuilder* machine) DecompressionOptimizer() argument
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_compute.c | 39 struct tgsi_exec_machine *machine, in cs_prepare() 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 in cs_prepare() 38 cs_prepare(const struct sp_compute_shader *cs, struct tgsi_exec_machine *machine, int local_x, int local_y, int local_z, int g_w, int g_h, int g_d, int b_w, int b_h, int b_d, struct tgsi_sampler *sampler, struct tgsi_image *image, struct tgsi_buffer *buffer ) cs_prepare() argument 84 cs_run(const struct sp_compute_shader *cs, int g_w, int g_h, int g_d, struct tgsi_exec_machine *machine, bool restart) cs_run() argument 129 cs_delete(const struct sp_compute_shader *cs, struct tgsi_exec_machine *machine) cs_delete() argument [all...] |
H A D | sp_fs_exec.c | 56 struct tgsi_exec_machine *machine, in exec_prepare() 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() 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 in exec_run() 55 exec_prepare( const struct sp_fragment_shader_variant *var, struct tgsi_exec_machine *machine, struct tgsi_sampler *sampler, struct tgsi_image *image, struct tgsi_buffer *buffer ) exec_prepare() argument 111 exec_run( const struct sp_fragment_shader_variant *var, struct tgsi_exec_machine *machine, struct quad_header *quad, bool early_depth_test ) exec_run() argument 178 exec_delete(struct sp_fragment_shader_variant *var, struct tgsi_exec_machine *machine) exec_delete() argument [all...] |
H A D | sp_quad_fs.c | 66 struct tgsi_exec_machine *machine = softpipe->fs_machine; in shade_quad() local 74 machine->flatshade_color = softpipe->rasterizer->flatshade ? TRUE : FALSE; in shade_quad() 75 return softpipe->fs_variant->run( softpipe->fs_variant, machine, quad, softpipe->early_depth ); in shade_quad() 109 struct tgsi_exec_machine *machine = softpipe->fs_machine; in shade_quads() local 112 tgsi_exec_set_constant_buffers(machine, PIPE_MAX_CONSTANT_BUFFERS, in shade_quads() 116 machine->InterpCoefs = quads[0]->coef; in shade_quads()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_vs_exec.c | 52 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 in vs_exec_run_linear() [all...] |
H A D | draw_gs.c | 83 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 in tgsi_fetch_gs_input() local 201 struct tgsi_exec_machine *machine = shader->machine; tgsi_gs_prepare() local 210 struct tgsi_exec_machine *machine = shader->machine; tgsi_gs_run() local [all...] |
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | utils.py | 98 # 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 [all...] |
/third_party/python/Lib/ |
H A D | _osx_support.py | 335 # on the current machine it is better to not use an SDK 499 def get_platform_osx(_config_vars, osname, release, machine): 506 # machine is going to compile and link as if it were 518 # return the same machine type for the platform string. 536 machine = 'fat' 542 machine = archs[0] 544 machine = 'universal2' 546 machine = 'fat' 548 machine = 'intel' 550 machine [all...] |
H A D | platform.py | 428 machine = os.uname().machine 429 if machine in ('ppc', 'Power Macintosh'): 431 machine = 'PowerPC' 433 return release, versioninfo, machine 436 def mac_ver(release='', versioninfo=('', '', ''), machine=''): 439 versioninfo, machine) with versioninfo being a tuple (version, 453 return release, versioninfo, machine 546 compatible format e.g. "system-version-machine". 577 """ Helper to determine the node name of this machine 951 def machine(): global() function [all...] |
/third_party/curl/tests/unit/ |
H A D | unit1307.c | 280 enum system machine; variable 284 machine = SYSTEM_MACOS; 287 machine = SYSTEM_LINUX; 289 machine == SYSTEM_LINUX ? "linux" : "mac"); 292 machine = SYSTEM_CUSTOM; 299 if((result & LINUX_DIFFER) && (machine == SYSTEM_LINUX)) 301 else if((result & MAC_DIFFER) && (machine == SYSTEM_MACOS))
|
/third_party/ltp/lib/ |
H A D | tst_kernel.c | 34 return strstr(buf->machine, "64") ? 64 : 32; in get_kernel_bits_from_uname() 55 if (!strcmp(buf.machine, "armv8l") || !strcmp(buf.machine, "armv8b") in tst_kernel_bits() 56 || !strcmp(buf.machine, "s390x")) in tst_kernel_bits() 61 * programs. This will cause buf.machine to report as i686 even though in tst_kernel_bits() 64 if (!strcmp(buf.machine, "i686") && in tst_kernel_bits() 87 tst_resm(TINFO, "uname.machine=%s kernel is %ibit", in tst_kernel_bits() 88 buf.machine, kernel_bits); in tst_kernel_bits()
|
/third_party/elfutils/tests/ |
H A D | dwelf_elf_e_machine_string.c | 43 const char *machine; in main() local 61 machine = dwelf_elf_e_machine_string (em); in main() 62 printf ("0x%x %s\n", em, machine); in main() 63 assert (machine != NULL); in main()
|
/third_party/vk-gl-cts/scripts/build/ |
H A D | common.py | 58 machine = platform.machine() 60 if not machine in MACHINE_BITS: 61 raise Exception("Unknown platform.machine() '%s'" % machine) 63 return MACHINE_BITS[machine]
|
/third_party/vk-gl-cts/scripts/ctsbuild/ |
H A D | common.py | 58 machine = platform.machine() 60 if not machine in MACHINE_BITS: 61 raise Exception("Unknown platform.machine() '%s'" % machine) 63 return MACHINE_BITS[machine]
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
H A D | test-assembly.py | 38 def positive_test(machine, assembly): 40 expected = parse_hex_8(machine) 73 (machine, assembly) = case.split(' ') 74 record_case(case, positive_test(machine, assembly))
|
/third_party/libuv/test/ |
H A D | test-uname.c | 61 ASSERT_OK(strcmp(buffer.machine, "ppc64")); in TEST_IMPL() 63 ASSERT_OK(strcmp(buffer.machine, buf.machine)); in TEST_IMPL()
|