HomeSort by relevance Sort by last modified time
    Searched refs:outputs (Results 51 - 75 of 371) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.c 430 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS],
457 outputs,
470 if (outputs[attrib][chan]) {
475 out = LLVMBuildLoad(builder, outputs[attrib][chan], "");
477 LLVMBuildStore(builder, out, outputs[attrib][chan]);
482 LLVMBuildStore(builder, bld.zero, outputs[attrib][chan]);
484 LLVMBuildStore(builder, bld.one, outputs[attrib][chan]);
666 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS],
682 if (outputs[attrib][chan]) {
683 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], "")
1083 LLVMValueRef outputs[PIPE_MAX_SHADER_OUTPUTS][TGSI_NUM_CHANNELS]; local
    [all...]
  /external/chromium_org/remoting/host/
desktop_resizer_linux.cc 99 return resources_->outputs[0];
300 RROutput* outputs = NULL; local
305 outputs = resources_.get()->outputs;
309 CurrentTime, 0, 0, mode_id, 1, outputs, number_of_outputs);
  /external/chromium_org/tools/gyp/pylib/gyp/
ninja_syntax.py 63 def build(self, outputs, rule, inputs=None, implicit=None, order_only=None,
65 outputs = self._as_list(outputs)
67 out_outputs = list(map(escape_path, outputs))
91 return outputs
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dir_util.py 141 outputs = []
157 outputs.append(dst_name)
160 outputs.extend(
168 outputs.append(dst_name)
170 return outputs
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dir_util.py 141 outputs = []
157 outputs.append(dst_name)
160 outputs.extend(
168 outputs.append(dst_name)
170 return outputs
  /external/chromium_org/tools/python/google/
process_utils.py 160 outputs = [[] for i in xrange(command_num)]
199 outputs[i].append(line)
221 return [(procs[i].returncode, outputs[i]) for i in xrange(command_num)]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
install_lib.py 156 outputs = []
158 outputs.append(os.path.join(output_dir, file[prefix_len:]))
160 return outputs
166 # list of outputs can contain more than just .py files.
install.py 619 outputs = self.get_outputs()
622 for counter in xrange(len(outputs)):
623 outputs[counter] = outputs[counter][root_len:]
625 (self.record, outputs),
656 # Assemble the outputs of all the sub-commands.
657 outputs = []
661 # that outputs doesn't contain duplicate entries
663 if filename not in outputs:
664 outputs.append(filename
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
install_lib.py 156 outputs = []
158 outputs.append(os.path.join(output_dir, file[prefix_len:]))
160 return outputs
166 # list of outputs can contain more than just .py files.
install.py 619 outputs = self.get_outputs()
622 for counter in xrange(len(outputs)):
623 outputs[counter] = outputs[counter][root_len:]
625 (self.record, outputs),
656 # Assemble the outputs of all the sub-commands.
657 outputs = []
661 # that outputs doesn't contain duplicate entries
663 if filename not in outputs:
664 outputs.append(filename
    [all...]
  /external/chromium_org/tools/gn/
target_generator.cc 329 const Value* value = scope_->GetValue("outputs", true);
333 Target::FileList outputs;
334 if (!ExtractListOfRelativeFiles(*value, input_directory_, &outputs, err_))
337 // Validate that outputs are in the output dir.
338 CHECK(outputs.size() == value->list_value().size());
339 for (size_t i = 0; i < outputs.size(); i++) {
342 outputs[i].value(), value->list_value()[i], err_))
345 target_->swap_in_outputs(&outputs);
  /external/chromium_org/build/
copy_test_data_ios.py 69 usage = 'Usage: %prog -o <output_dir> [--inputs] [--outputs] <input_files>'
73 parser.add_option('--outputs', action='store_true', dest='list_outputs')
88 outputs = [os.path.join(options.output_dir, x) for x in escaped_files]
89 return '\n'.join(outputs)
  /external/chromium_org/tools/grit/grit/format/
resource_map.py 31 outputs = root.GetOutputFiles()
33 for output in outputs:
80 'resource_map_header and rc_header outputs')
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
android.py 215 # GYP generated outputs.
231 # Update global list of target outputs, used in dependency tracking.
249 extra_outputs: a list that will be filled in with any outputs of these
258 outputs = action['outputs']
260 # Build up a list of outputs.
263 for out in outputs:
271 extra_sources += outputs
290 # it's superfluous for the "extra outputs", and this avoids accidentally
291 # writing duplicate dummy rules for those outputs
    [all...]
msvs.py 345 def _AddActionStep(actions_dict, inputs, outputs, description, command):
355 outputs: list of outputs
364 'outputs': outputs,
381 inputs, outputs, description, cmd):
389 outputs: list of outputs
394 outputs = _FixPaths(outputs)
    [all...]
  /external/srec/seti/sltsEngine/src/
run_seq_lts.c 73 static SWIsltsResult free_outputs(char **outputs, char **inputs, int num);
407 char ** outputs = NULL; local
417 *poutputs = outputs = (char **) lts_alloc(num, sizeof(char*));
418 if (outputs == NULL) {
431 out = outputs[i] = lts_alloc(olen + 1, sizeof(char));
453 if (ilen > 0) pfprintf(PSTDOUT,"LOAD_TREE: got input %s out %s\n", in, outputs[i]);
454 pfprintf(PSTDOUT,"LOAD_TREE: outputs[%d] len %d out %x out %s\n", i, olen, outputs[i], outputs[i]);
463 free_outputs(outputs, inputs, num)
    [all...]
  /external/chromium_org/chrome/tools/build/
repack_locales.py 118 outputs = []
120 outputs.append(calc_output(locale))
123 return " ".join(['"%s"' % x for x in outputs])
160 parser.add_option("-o", action="store_true", dest="outputs", default=False,
181 print_outputs = options.outputs
203 # Need to know the branding, unless we're just listing the outputs.
  /external/chromium_org/chromeos/display/
output_util_unittest.cc 251 RROutput outputs[] = {1}; local
252 resources.noutput = arraysize(outputs);
253 resources.outputs = outputs;
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIAccess.h 56 MIDIOutputVector outputs() const { return m_outputs; } function in class:WebCore::MIDIAccess
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.h 220 LLVMValueRef (*outputs)[4],
232 LLVMValueRef *outputs,
366 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS]; member in struct:lp_build_tgsi_soa_context
383 * The outputs[] array above is unused then.
452 LLVMValueRef *outputs; member in struct:lp_build_tgsi_aos_context
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_mesa_to_tgsi.c 71 struct ureg_dst outputs[PIPE_MAX_SHADER_OUTPUTS]; member in struct:st_translate
185 assert(t->outputMapping[index] < Elements(t->outputs));
187 return t->outputs[t->outputMapping[index]];
236 assert(t->outputMapping[index] < Elements(t->outputs));
237 return ureg_src(t->outputs[t->outputMapping[index]]); /* not needed? */
987 struct ureg_dst edge_dst = t->outputs[t->outputMapping[VERT_RESULT_EDGE]];
1005 * \param outputMapping maps Mesa fragment program outputs to TGSI
1006 * generic outputs
1036 assert(numOutputs <= Elements(t->outputs));
    [all...]
  /external/libpng/scripts/
libpng-config.in 46 --static revise subsequent outputs for static linking
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.h 220 LLVMValueRef (*outputs)[4],
232 LLVMValueRef *outputs,
366 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS]; member in struct:lp_build_tgsi_soa_context
383 * The outputs[] array above is unused then.
452 LLVMValueRef *outputs; member in struct:lp_build_tgsi_aos_context
  /external/mesa3d/src/mesa/state_tracker/
st_mesa_to_tgsi.c 71 struct ureg_dst outputs[PIPE_MAX_SHADER_OUTPUTS]; member in struct:st_translate
185 assert(t->outputMapping[index] < Elements(t->outputs));
187 return t->outputs[t->outputMapping[index]];
236 assert(t->outputMapping[index] < Elements(t->outputs));
237 return ureg_src(t->outputs[t->outputMapping[index]]); /* not needed? */
987 struct ureg_dst edge_dst = t->outputs[t->outputMapping[VERT_RESULT_EDGE]];
1005 * \param outputMapping maps Mesa fragment program outputs to TGSI
1006 * generic outputs
1036 assert(numOutputs <= Elements(t->outputs));
    [all...]
  /external/srec/seti/sltsEngine/include/
lts_seq_internal.h 126 char **outputs; member in struct:LTS

Completed in 1257 milliseconds

1 23 4 5 6 7 8 91011>>