HomeSort by relevance Sort by last modified time
    Searched refs:Outputs (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/llvm/lib/Target/Hexagon/
HexagonBitTracker.cpp 125 const CellMapType &Inputs, CellMapType &Outputs) const {
141 return evaluateLoad(MI, Inputs, Outputs);
158 if (evaluateFormalCopy(MI, Inputs, Outputs))
187 auto rr0 = [this,Reg] (const BT::RegisterCell &Val, CellMapType &Outputs)
189 putCell(Reg[0], Val, Outputs);
252 return rr0(eIMM(im(1), W0), Outputs);
254 return rr0(RegisterCell(W0).fill(0, W0, BT::BitValue::Zero), Outputs);
256 return rr0(RegisterCell(W0).fill(0, W0, BT::BitValue::One), Outputs);
264 return rr0(RC, Outputs);
272 return rr0(rc(1), Outputs);
    [all...]
HexagonBitTracker.h 30 CellMapType &Outputs) const override;
42 CellMapType &Outputs) const;
44 CellMapType &Outputs) const;
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_exec.c 166 output[slot][0] = CLAMP(machine->Outputs[slot].xyzw[0].f[j], 0.0f, 1.0f);
167 output[slot][1] = CLAMP(machine->Outputs[slot].xyzw[1].f[j], 0.0f, 1.0f);
168 output[slot][2] = CLAMP(machine->Outputs[slot].xyzw[2].f[j], 0.0f, 1.0f);
169 output[slot][3] = CLAMP(machine->Outputs[slot].xyzw[3].f[j], 0.0f, 1.0f);
172 output[slot][0] = machine->Outputs[slot].xyzw[0].f[j];
178 output[slot][0] = machine->Outputs[slot].xyzw[0].f[j];
179 output[slot][1] = machine->Outputs[slot].xyzw[1].f[j];
180 output[slot][2] = machine->Outputs[slot].xyzw[2].f[j];
181 output[slot][3] = machine->Outputs[slot].xyzw[3].f[j];
draw_gs.c 189 output[slot][0] = machine->Outputs[idx + slot].xyzw[0].f[0];
190 output[slot][1] = machine->Outputs[idx + slot].xyzw[1].f[0];
191 output[slot][2] = machine->Outputs[idx + slot].xyzw[2].f[0];
192 output[slot][3] = machine->Outputs[idx + slot].xyzw[3].f[0];
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_sol_state.c 101 * Outputs the 3DSTATE_SO_DECL_LIST command.
130 int buffer = linked_xfb_info->Outputs[i].OutputBuffer;
132 int vert_result = linked_xfb_info->Outputs[i].OutputRegister;
134 (1 << linked_xfb_info->Outputs[i].NumComponents) - 1;
138 assert(linked_xfb_info->Outputs[i].NumComponents == 1);
141 component_mask <<= linked_xfb_info->Outputs[i].ComponentOffset;
154 assert(linked_xfb_info->Outputs[i].DstOffset == next_offset[buffer]);
156 next_offset[buffer] += linked_xfb_info->Outputs[i].NumComponents;
gen6_sol.c 53 unsigned buffer = linked_xfb_info->Outputs[i].OutputBuffer;
56 linked_xfb_info->Outputs[i].DstOffset;
59 linked_xfb_info->Outputs[i].NumComponents,
brw_gs.c 215 linked_xfb_info->Outputs[i].OutputRegister;
217 swizzle_for_offset[linked_xfb_info->Outputs[i].ComponentOffset];
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_fs_exec.c 134 /* store outputs */
147 sizeof(machine->Outputs[i]));
151 &machine->Outputs[i],
160 quad->output.depth[j] = machine->Outputs[i].xyzw[2].f[j];
168 quad->output.stencil[j] = (unsigned)machine->Outputs[i].xyzw[1].f[j];
  /external/mesa3d/src/mesa/tnl/
t_vb_program.c 238 ASSIGN_4V(machine->Outputs[i], 0.0F, 0.0F, 0.0F, 1.0F);
318 GLuint outputs[VERT_RESULT_MAX], numOutputs; local
332 /* make list of outputs to save some time below */
336 outputs[numOutputs++] = i;
398 const GLuint attr = outputs[j];
400 check_float(machine->Outputs[attr][0]);
401 check_float(machine->Outputs[attr][1]);
402 check_float(machine->Outputs[attr][2]);
403 check_float(machine->Outputs[attr][3]);
405 COPY_4V(store->results[attr].data[i], machine->Outputs[attr])
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/
commands.go 50 "tags": {nil, report.Tags, nil, false, "Outputs all tags in the profile"},
51 "raw": {c, report.Raw, nil, false, "Outputs a text representation of the raw profile"},
52 "dot": {c, report.Dot, nil, false, "Outputs a graph in DOT format"},
53 "top": {c, report.Text, nil, false, "Outputs top entries in text form"},
54 "tree": {c, report.Tree, nil, false, "Outputs a text rendering of call graph"},
55 "text": {c, report.Text, nil, false, "Outputs top entries in text form"},
61 "callgrind": {c, report.Callgrind, awayFromTTY("callgraph.out"), false, "Outputs a graph in callgrind format"},
62 "proto": {c, report.Proto, awayFromTTY("pb.gz"), false, "Outputs the profile in compressed protobuf format"},
65 "gif": {c, report.Dot, invokeDot("gif"), false, "Outputs a graph image in GIF format"},
66 "pdf": {c, report.Dot, invokeDot("pdf"), false, "Outputs a graph in PDF format"}
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/commands/
commands.go 50 "tags": {nil, report.Tags, nil, false, "Outputs all tags in the profile"},
51 "raw": {c, report.Raw, nil, false, "Outputs a text representation of the raw profile"},
52 "dot": {c, report.Dot, nil, false, "Outputs a graph in DOT format"},
53 "top": {c, report.Text, nil, false, "Outputs top entries in text form"},
54 "tree": {c, report.Tree, nil, false, "Outputs a text rendering of call graph"},
55 "text": {c, report.Text, nil, false, "Outputs top entries in text form"},
61 "callgrind": {c, report.Callgrind, awayFromTTY("callgraph.out"), false, "Outputs a graph in callgrind format"},
62 "proto": {c, report.Proto, awayFromTTY("pb.gz"), false, "Outputs the profile in compressed protobuf format"},
65 "gif": {c, report.Dot, invokeDot("gif"), false, "Outputs a graph image in GIF format"},
66 "pdf": {c, report.Dot, invokeDot("pdf"), false, "Outputs a graph in PDF format"}
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
CodeExtractor.h 39 /// 1) Find both the inputs and outputs for the extracted region.
42 /// 3) Add allocas for any scalar outputs, adding all of the outputs' allocas
105 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs) const;
112 const ValueSet &outputs,
122 ValueSet &outputs);
  /external/mesa3d/src/mesa/program/
prog_execute.h 64 GLfloat Outputs[MAX_PROGRAM_OUTPUTS][4];
  /build/soong/common/
module.go 40 Outputs WritablePaths
336 Outputs: []string{name},
348 Outputs: []string{name},
364 Outputs: []string{ctx.ModuleName() + suffix},
430 func (a *androidModuleContext) ninjaError(outputs []string, err error) {
433 Outputs: outputs,
444 a.ninjaError(params.Outputs, fmt.Errorf("module %s missing dependencies: %s\n",
456 Outputs: params.Outputs.Strings()
    [all...]
androidmk.go 85 Outputs: []string{transMk.String()},
  /build/blueprint/bootstrap/
bootstrap.go 420 Outputs: []string{aoutFile},
427 Outputs: []string{binaryFile},
458 Outputs: []string{pluginSrc},
496 Outputs: []string{archiveFile},
524 Outputs: []string{mainFile},
541 Outputs: []string{testArchive},
552 Outputs: []string{testFile},
561 Outputs: []string{testPassed},
589 Outputs: []string{target},
602 Outputs: []string{src}
    [all...]
  /build/core/combo/
javac.mk 8 # Outputs:
  /build/blueprint/
ninja_defs.go 65 Restat bool // Whether Ninja should re-stat the rule's outputs.
81 Outputs []string // The list of output targets.
252 Outputs []*ninjaString
275 if len(params.Outputs) == 0 {
276 return nil, errors.New("Outputs param has no elements")
280 b.Outputs, err = parseNinjaStrings(scope, params.Outputs)
282 return nil, fmt.Errorf("error parsing Outputs param: %s", err)
334 outputs = valueList(b.Outputs, pkgNames, outputEscaper
    [all...]
live_tracker.go 51 err = l.addNinjaStringListDeps(def.Outputs)
  /external/vboot_reference/scripts/image_signing/
sign_firmware.sh 23 to <firmware_version>. Outputs signed firmware to <output_firmware>.
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 232 machine->Outputs[FRAG_RESULT_COLOR]);
243 machine->Outputs[FRAG_RESULT_DATA0 + buf]);
250 const GLfloat depth = machine->Outputs[FRAG_RESULT_DEPTH][2];
  /build/soong/cc/
gen.go 55 Outputs: common.WritablePaths{outFile, headerFile},
  /build/soong/java/
gen.go 126 Outputs: []string{"$allLogtagsFile"},
  /external/mesa3d/src/glsl/
linker.cpp 37 * - Types and qualifiers of uniforms, outputs, and global variables defined
60 * - Types and qualifiers of outputs defined in one stage are verified to
628 * Validate that outputs from one stage match inputs of another
639 /* Find all shader outputs in the "producer" stage.
655 * matching outputs already in the symbol table must have the same type and
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.h 255 struct tgsi_exec_vector *Outputs;

Completed in 1284 milliseconds

1 2 3