/external/mesa3d/src/mesa/program/ |
D | prog_execute.c | 80 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/wpa_supplicant_8/src/utils/ |
D | state_machine.h | 32 #define SM_STATE(machine, state) \ argument 33 static void sm_ ## machine ## _ ## state ## _Enter(STATE_MACHINE_DATA *sm, \ 46 #define SM_ENTRY(machine, state) \ argument 47 if (!global || sm->machine ## _state != machine ## _ ## state) { \ 49 wpa_printf(MSG_DEBUG, STATE_MACHINE_DEBUG_PREFIX ": " #machine \ 52 sm->machine ## _state = machine ## _ ## state; 65 #define SM_ENTRY_M(machine, _state, data) \ argument 66 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \ 69 #machine " entering state " #_state); \ 71 sm->data ## _ ## state = machine ## _ ## _state; [all …]
|
/external/v8/src/compiler/ |
D | raw-machine-assembler.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() 164 machine()->UnalignedStore(UnalignedStoreRepresentation(rep)), base, in UnalignedStore() [all …]
|
D | representation-change.cc | 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() 525 op = machine()->ChangeUint32ToFloat64(); in GetFloat64RepresentationFor() 528 op = machine()->ChangeUint32ToFloat64(); in GetFloat64RepresentationFor() [all …]
|
D | int64-lowering.cc | 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() 315 graph()->NewNode(machine()->Word32And(), GetReplacementLow(left), in LowerNode() [all …]
|
D | wasm-compiler.cc | 151 graph()->NewNode(jsgraph()->machine()->Word32Equal(), node, in TrapIfEq32() 169 AddTrapIfTrue(reason, graph()->NewNode(jsgraph()->machine()->Word64Equal(), in TrapIfEq64() 488 jsgraph()->machine()->Load(MachineType::Pointer()), in StackCheck() 492 Node* pointer = graph()->NewNode(jsgraph()->machine()->LoadStackPointer()); in StackCheck() 495 graph()->NewNode(jsgraph()->machine()->UintLessThan(), limit, pointer); in StackCheck() 525 MachineOperatorBuilder* m = jsgraph()->machine(); in Binop() 794 MachineOperatorBuilder* m = jsgraph()->machine(); in Unop() 1143 if (!jsgraph()->machine()->Word32ShiftIsSafe()) { in MaskShiftCount32() 1150 node = graph()->NewNode(jsgraph()->machine()->Word32And(), node, in MaskShiftCount32() 1159 if (!jsgraph()->machine()->Word32ShiftIsSafe()) { in MaskShiftCount64() [all …]
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_vs_exec.c | 49 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 …]
|
D | draw_gs.c | 81 struct tgsi_exec_machine *machine = shader->machine; in tgsi_fetch_gs_outputs() local 92 unsigned num_verts_per_prim = machine->Primitives[prim_idx]; in tgsi_fetch_gs_outputs() 94 machine->Primitives[prim_idx]; in tgsi_fetch_gs_outputs() 102 output[slot][0] = machine->Outputs[idx + slot].xyzw[0].f[0]; in tgsi_fetch_gs_outputs() 103 output[slot][1] = machine->Outputs[idx + slot].xyzw[1].f[0]; in tgsi_fetch_gs_outputs() 104 output[slot][2] = machine->Outputs[idx + slot].xyzw[2].f[0]; in tgsi_fetch_gs_outputs() 105 output[slot][3] = machine->Outputs[idx + slot].xyzw[3].f[0]; in tgsi_fetch_gs_outputs() 127 struct tgsi_exec_machine *machine = shader->machine; in tgsi_fetch_gs_input() local 146 machine->Inputs[idx].xyzw[0].u[prim_idx] = shader->in_prim_idx; in tgsi_fetch_gs_input() 147 machine->Inputs[idx].xyzw[1].u[prim_idx] = shader->in_prim_idx; in tgsi_fetch_gs_input() [all …]
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_compute.c | 40 struct tgsi_exec_machine *machine, in cs_prepare() argument 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() 68 machine->SystemValue[i].xyzw[0].i[j] = g_w; in cs_prepare() [all …]
|
D | sp_fs_exec.c | 64 struct tgsi_exec_machine *machine, in exec_prepare() argument 72 tgsi_exec_machine_bind_shader(machine, in exec_prepare() 120 struct tgsi_exec_machine *machine, in exec_run() argument 127 &machine->QuadPos); in exec_run() 130 machine->Face = (float) (quad->input.facing * -2 + 1); in exec_run() 132 machine->NonHelperMask = quad->inout.mask; in exec_run() 133 quad->inout.mask &= tgsi_exec_machine_run( machine, 0 ); in exec_run() 150 sizeof(machine->Outputs[i])); in exec_run() 154 &machine->Outputs[i], in exec_run() 164 quad->output.depth[j] = machine->Outputs[i].xyzw[2].f[j]; in exec_run() [all …]
|
/external/v8/tools/testrunner/local/ |
D | utils.py | 84 machine = platform.machine() 85 return (machine and 87 not arch.startswith(machine)) 93 machine = platform.machine() 94 machine = machine.lower() # Windows 7 capitalizes 'AMD64'. 95 if machine.startswith('arm'): 97 elif (not machine) or (not re.match('(x|i[3-6])86$', machine) is None): 99 elif machine == 'i86pc': 101 elif machine == 'x86_64': 103 elif machine == 'amd64': [all …]
|
/external/autotest/client/cros/cellular/ |
D | labconfig.py | 83 def _get_dut(self, machine=None): argument 95 if self.ip and not machine: 96 machine = self.ip 98 if not machine: 105 machine = get_interface_ip(interface) 106 if machine: 108 machine) 109 self.ip = machine 114 if not machine: 123 if machine == dut["address"] or machine == dut["name"]: [all …]
|
/external/autotest/server/hosts/ |
D | factory_unittest.py | 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() 143 host_obj = factory.create_host(machine) 150 machine = _gen_machine_dict() 151 host_obj = factory.create_host(machine) [all …]
|
D | factory.py | 51 def _get_host_arguments(machine): argument 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 172 detected_args = _get_host_arguments(machine) 206 def create_testbed(machine, **kwargs): argument 219 detected_args = _get_host_arguments(machine) 225 def create_target_machine(machine, **kwargs): argument 244 hostname = machine['hostname'] if isinstance(machine, dict) else machine [all …]
|
/external/toolchain-utils/crosperf/ |
D | benchmark_run.py | 48 self.machine = None 72 self.profiler_args, self.machine_manager, self.machine, 98 self._logger, self.log_level, self.label, self.machine, output, err, 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) 116 if self.machine: 118 self.machine) [all …]
|
D | machine_manager.py | 82 machine=self.name, 125 machine=self.name, 135 machine=self.name, 157 machine=self.name, 167 machine=self.name, 240 def GetChromeVersion(self, machine): argument 246 machine=machine.name, 250 machine.name) 256 def ImageMachine(self, machine, label): argument 259 if checksum and (machine.checksum == checksum): [all …]
|
D | suite_runner.py | 60 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) 122 'ls ' + FILE, machine=machine_name, chromeos_root=chromeos_root) 129 sed_command + FILE, machine=machine_name, chromeos_root=chromeos_root) [all …]
|
/external/autotest/tko/ |
D | draw_graphs | 32 ($test, $machine) = ($1, $2); 33 print " === Analysing data file: $data_file $test $machine\n"; 34 push @machines, $machine; 43 $results{$test}{$machine}{$version} = $data; 53 foreach $machine (@machines) { 55 graph_plot($machine, "${test}.full.${machine}", 57 graph_plot($machine, "${test}.${machine}", 64 my ($machine, $filename, $test, @plot_versions) = @_; 67 print " ----- test: $test machine: $machine $#plot_versions\n"; 70 my $results = $results{$test}{$machine}{$version};
|
/external/toolchain-utils/deprecated/ |
D | run_benchmarks.py | 71 def RunBrowserBenchmark(chromeos_root, board, bench, machine): argument 82 ret = run_tests.RunRemoteTests(chromeos_root, machine, board, benchname) 86 def RunStartupBenchmark(chromeos_root, board, machine): argument 96 ret = run_tests.RunRemoteTests(chromeos_root, machine, board, benchname) 100 def RunCpuBenchmark(chromeos_root, bench, workdir, machine): argument 122 machine=machine) 130 dest_machine=machine, 152 machine=machine) 192 if options.machine is None: 204 options.machine) [all …]
|
/external/skia/site/dev/testing/ |
D | skialab.md | 34 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/autotest/client/cros/cellular/pseudomodem/ |
D | state_machine_factory.py | 85 machine = cdma_activate_machine.CdmaActivateMachine(*args, **kwargs) 87 machine = connect_machine.ConnectMachine(*args, **kwargs) 89 machine = connect_cdma_machine.ConnectCdmaMachine(*args, **kwargs) 91 machine = disable_machine.DisableMachine(*args, **kwargs) 93 machine = disconnect_machine.DisconnectMachine(*args, **kwargs) 95 machine = enable_machine.EnableMachine(*args, **kwargs) 97 machine = register_machine.RegisterMachine(*args, **kwargs) 99 machine = register_cdma_machine.RegisterCdmaMachine(*args, **kwargs) 105 machine.EnterInteractiveMode(self._bus) 106 return machine
|
/external/autotest/server/ |
D | base_utils.py | 203 for machine in machines: 204 mappings['ident'].append(machine) 233 def parse_machine(machine, user='root', password='', port=22): argument 240 if '@' in machine: 241 user, machine = machine.split('@', 1) 252 bare_ipv6 = '[' != machine[0] and re.search(r':.*:', machine) 255 if not bare_ipv6 and re.search(r':\d*$', machine): 256 machine, port = machine.rsplit(':', 1) 261 if machine[0] == '[' and machine[-1] == ']': 262 machine = machine[1:-1] [all …]
|
/external/mesa3d/src/mesa/swrast/ |
D | s_fragprog.c | 161 init_machine(struct gl_context *ctx, struct gl_program_machine *machine, in init_machine() argument 175 machine->Attribs = span->array->attribs; in init_machine() 177 machine->DerivX = (GLfloat (*)[4]) span->attrStepX; in init_machine() 178 machine->DerivY = (GLfloat (*)[4]) span->attrStepY; in init_machine() 179 machine->NumDeriv = VARYING_SLOT_MAX; in init_machine() 181 machine->Samplers = program->SamplerUnits; in init_machine() 186 machine->Attribs[VARYING_SLOT_FACE][col][0] = 1.0F - span->facing; in init_machine() 189 machine->CurElement = col; in init_machine() 192 machine->StackDepth = 0; in init_machine() 194 machine->FetchTexelLod = fetch_texel_lod; in init_machine() [all …]
|
/external/llvm/test/MC/PowerPC/ |
D | ppc-machine.s | 5 # For now, the only thing we check is that the .machine directive 8 .machine push 9 .machine any 10 .machine pop 12 .machine "push" 13 .machine "any" 14 .machine "pop"
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vb_program.c | 74 struct gl_program_machine machine; member 225 init_machine(struct gl_context *ctx, struct gl_program_machine *machine, in init_machine() argument 229 memcpy(machine->VertAttribs, ctx->Current.Attrib, in init_machine() 232 machine->NumDeriv = 0; in init_machine() 235 machine->StackDepth = 0; in init_machine() 237 machine->FetchTexelLod = vp_fetch_texel; in init_machine() 238 machine->FetchTexelDeriv = NULL; /* not used by vertex programs */ in init_machine() 240 machine->Samplers = ctx->VertexProgram._Current->SamplerUnits; in init_machine() 242 machine->SystemValues[SYSTEM_VALUE_INSTANCE_ID][0] = (GLfloat) instID; in init_machine() 294 struct gl_program_machine *machine = &store->machine; in run_vp() local [all …]
|