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

1 2

  /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;
BitTracker.cpp 736 const CellMapType &Inputs, CellMapType &Outputs) const {
752 putCell(RD, Res, Outputs);
769 putCell(RD, Res, Outputs);
849 dbgs() << "Outputs:\n";
    [all...]
BitTracker.h 418 // the input values. Place the results in the Outputs map. Return "true"
421 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...]
  /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/core/combo/
javac.mk 8 # 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];
  /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;
tgsi_exec.c 683 struct tgsi_exec_vector *outputs; local
692 outputs = align_malloc(sizeof(struct tgsi_exec_vector) *
695 if (!outputs) {
701 align_free(mach->Outputs);
704 mach->Outputs = outputs;
838 mach->Outputs = align_malloc(sizeof(struct tgsi_exec_vector) * PIPE_MAX_ATTRIBS, 16);
839 if (!mach->Inputs || !mach->Outputs)
867 align_free(mach->Outputs);
884 align_free(mach->Outputs);
4271 struct tgsi_exec_vector outputs[PIPE_MAX_ATTRIBS]; local
    [all...]
  /external/libvpx/libvpx/build/make/
gen_msvs_proj.sh 89 Outputs="\$(IntDir)\\$objf" \
gen_msvs_vcxproj.sh 98 tag_content Outputs "\$(IntDir)$objf" \
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
gen_msvs_proj.sh 159 Outputs="\$(IntDir)\\$objf" \
gen_msvs_vcxproj.sh 172 tag_content Outputs "\$(IntDir)$objf" \
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 161 ValueSet &Outputs) const {
178 Outputs.insert(&*II);
289 /// constructFunction - make a function based on inputs and outputs, as follows:
293 const ValueSet &outputs,
300 DEBUG(dbgs() << "outputs: " << outputs.size() << "\n");
302 // This function returns unsigned, outputs will go back by reference.
321 for (ValueSet::const_iterator I = outputs.begin(), E = outputs.end();
337 if (AggregateArgs && (inputs.size() + outputs.size() > 0))
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudformation/
test_connection.py 31 "Outputs" : {
411 <Outputs>
417 </Outputs>
450 self.assertEqual(len(stack.outputs), 1)
451 self.assertEqual(stack.outputs[0].description, 'Server URL')
452 self.assertEqual(stack.outputs[0].key, 'ServerURL')
453 self.assertEqual(stack.outputs[0].value, 'http://url/')

Completed in 291 milliseconds

1 2