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

1 2 34 5 6 7 8 91011>>

  /cts/suite/audio_quality/lib/src/task/
TaskProcess.cpp 175 UniquePtr<void_ptr, DefaultDelete<void_ptr[]> > outputs; local
186 if (!prepareParams(mOutput, builtIn ? info->mOutputTypes : NULL, outputs, outputValues,
193 result = (mBuiltin.*(info->mFunction))(inputs.get(), outputs.get());
205 mOutput.size(), outputTypes.get(), outputs.get());
214 reinterpret_cast<android::sp<Buffer>*>((outputs.get())[i]);
225 reinterpret_cast<TaskCase::Value*>((outputs.get())[i]);
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraDevice.java 162 public void configureOutputs(List<Surface> outputs) throws CameraAccessException {
164 if (outputs == null) {
165 outputs = new ArrayList<Surface>();
170 HashSet<Surface> addSet = new HashSet<Surface>(outputs); // Streams to create
178 if (!outputs.contains(s)) {
219 if (outputs.size() > 0) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 309 outputs = []
313 outputs.append(filename)
316 outputs.append(filename + "c")
318 outputs.append(filename + "o")
320 outputs += [
326 return outputs
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 309 outputs = []
313 outputs.append(filename)
316 outputs.append(filename + "c")
318 outputs.append(filename + "o")
320 outputs += [
326 return outputs
  /external/chromium_org/tools/gn/
ninja_target_writer.cc 255 // outputs as outputs, and the data as inputs.
257 const Target::FileList& outputs = target_->outputs(); local
258 for (size_t i = 0; i < outputs.size(); i++) {
260 RemovePrefix(outputs[i].value(),
274 // Last write a stamp rule to collect all outputs.
307 const Target::FileList& outputs = target_->outputs(); local
309 for (size_t i = 0; i < outputs.size(); i++)
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
chrome_scaled_image_unittest.py 83 outputs = '\n'.join('<output filename="out/%s%s" type="%s" context="%s" />'
90 <outputs>
92 </outputs>
97 ''' % (outputs, structures),
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
radeon_llvm.h 95 LLVMValueRef outputs[RADEON_LLVM_MAX_OUTPUTS][TGSI_NUM_CHANNELS]; member in struct:radeon_llvm_context
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_llvm.h 95 LLVMValueRef outputs[RADEON_LLVM_MAX_OUTPUTS][TGSI_NUM_CHANNELS]; member in struct:radeon_llvm_context
  /frameworks/base/core/java/android/hardware/camera2/
CameraDevice.java 137 * or a only some of the outputs. This method must be called before requests
210 * requests. Finally, once the device is idle, it then reconfigures its outputs, and calls the
216 * <p>Using larger resolution outputs, or more outputs, can result in slower
219 * <p>Configuring the outputs with an empty or null list will transition the camera into an
228 * @param outputs The new set of Surfaces that should be made available as
245 public void configureOutputs(List<Surface> outputs) throws CameraAccessException;
284 * surfaces must be configured as active outputs with
310 * currently configured as outputs. Or if the handler is null, the listener
330 * configured as active outputs with {@link #configureOutputs} befor
    [all...]
  /cts/suite/audio_quality/lib/src/
SignalProcessingImpl.cpp 114 int nOutputs, bool* outputTypes, void** outputs)
191 android::sp<Buffer>* buffer = reinterpret_cast<android::sp<Buffer>*>(outputs[i]);
221 TaskCase::Value* val = reinterpret_cast<TaskCase::Value*>(outputs[i]);
  /external/chromium_org/tools/grit/
grit_info.py 6 '''Tool to determine inputs and outputs of a grit file.
21 def Outputs(filename, defines, ids_file):
102 print (' ./grit_info.py --outputs [-D foo] [-f resource_ids] ' +
109 parser.add_option("--outputs", action="store_true", dest="outputs")
151 elif options.outputs:
154 "Expected exactly 2 arguments for --outputs.")
157 outputs = [posixpath.join(prefix, f)
158 for f in Outputs(filename, defines, options.ids_file)]
159 return '\n'.join(outputs)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_fs.c 238 LLVMValueRef outputs[PIPE_MAX_SHADER_OUTPUTS][TGSI_NUM_CHANNELS]; local
293 memset(outputs, 0, sizeof outputs);
344 outputs, sampler, &shader->info.base);
352 if (color0 != -1 && outputs[color0][3]) {
354 LLVMValueRef alpha = LLVMBuildLoad(builder, outputs[color0][3], "alpha");
374 if (pos0 != -1 && outputs[pos0][2]) {
375 z = LLVMBuildLoad(builder, outputs[pos0][2], "output.z");
418 if(outputs[attrib][chan]) {
419 /* XXX: just initialize outputs to point at colors[] an
468 LLVMValueRef outputs[PIPE_MAX_SHADER_OUTPUTS][TGSI_NUM_CHANNELS]; local
    [all...]
  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 201 <outputs />
205 outputs = root.children[2]
208 isinstance(outputs, grit.node.empty.OutputsNode))
211 cpp_header = self.__CreateCppHeaderOutputNode(outputs, self.header_dir)
215 self.__CreateRcOutputNode(outputs, lang, self.rc_dir)
217 self.__CreateAndroidXmlOutputNode(outputs, lang, self.xml_res_dir)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.c 238 LLVMValueRef outputs[PIPE_MAX_SHADER_OUTPUTS][TGSI_NUM_CHANNELS]; local
293 memset(outputs, 0, sizeof outputs);
344 outputs, sampler, &shader->info.base);
352 if (color0 != -1 && outputs[color0][3]) {
354 LLVMValueRef alpha = LLVMBuildLoad(builder, outputs[color0][3], "alpha");
374 if (pos0 != -1 && outputs[pos0][2]) {
375 z = LLVMBuildLoad(builder, outputs[pos0][2], "output.z");
418 if(outputs[attrib][chan]) {
419 /* XXX: just initialize outputs to point at colors[] an
468 LLVMValueRef outputs[PIPE_MAX_SHADER_OUTPUTS][TGSI_NUM_CHANNELS]; local
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ScriptGroup.java 29 * External connections are grouped into inputs and outputs.
30 * All outputs are produced by a script kernel and placed into a
395 ArrayList<IO> outputs = new ArrayList<IO>(); local
421 outputs.add(new IO(kid));
453 sg.mOutputs = new IO[outputs.size()];
454 for (int ct=0; ct < outputs.size(); ct++) {
455 sg.mOutputs[ct] = outputs.get(ct);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptGroup.java 29 * External connections are grouped into inputs and outputs.
30 * All outputs are produced by a script kernel and placed into a
420 ArrayList<IO> outputs = new ArrayList<IO>(); local
446 outputs.add(new IO(kid));
478 sg.mOutputs = new IO[outputs.size()];
479 for (int ct=0; ct < outputs.size(); ct++) {
480 sg.mOutputs[ct] = outputs.get(ct);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_build_ext.py 197 outputs = _build_ext.get_outputs(self)
202 outputs.append(base+'.py')
203 outputs.append(base+'.pyc')
205 outputs.append(base+'.pyo')
206 return outputs
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_build_ext.py 197 outputs = _build_ext.get_outputs(self)
202 outputs.append(base+'.py')
203 outputs.append(base+'.pyc')
205 outputs.append(base+'.pyo')
206 return outputs
  /external/chromium_org/chromeos/display/
output_configurator_unittest.cc 97 const std::vector<OutputConfigurator::OutputSnapshot>& outputs) {
98 outputs_ = outputs;
162 const std::vector<OutputConfigurator::OutputSnapshot>& outputs) OVERRIDE {
166 outputs.size() >= 1 ? outputs[0].crtc : 0,
167 outputs.size() >= 2 ? outputs[1].crtc : 0));
199 // Outputs to be returned by GetOutputs().
216 const std::vector<int64>& outputs) const OVERRIDE { return state_; }
301 // Predefined modes that can be used by outputs
314 std::vector<OutputConfigurator::OutputSnapshot> outputs; local
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
ninja.py 329 # 1) for a given input, you can compute all derived outputs by matching
367 Returns None if there are no outputs (e.g. a settings-only 'none' type
493 def _WinIdlRule(self, source, prebuild, outputs):
494 """Handle the implicit VS .idl rule for one source file. Fills |outputs|
515 outputs.extend(output)
522 outputs = []
524 self._WinIdlRule(source, prebuild, outputs)
525 return outputs
530 representing the outputs of these steps."""
531 outputs = [
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 80 std::vector<struct ureg_dst> outputs; member in struct:sm4_to_tgsi_converter
119 check(op.indices[0].disp < outputs.size());
120 return outputs[op.indices[0].disp];
689 if(outputs.size() <= (unsigned)idx)
690 outputs.resize(idx + 1);
692 outputs[idx] = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, idx);
694 outputs[idx] = ureg_DECL_output(ureg, TGSI_SEMANTIC_GENERIC, idx);
709 if(outputs.size() <= (unsigned)idx)
710 outputs.resize(idx + 1);
712 outputs[idx] = ureg_DECL_output(ureg, sm4_to_pipe_sv[dcl.sv], 0)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 80 std::vector<struct ureg_dst> outputs; member in struct:sm4_to_tgsi_converter
119 check(op.indices[0].disp < outputs.size());
120 return outputs[op.indices[0].disp];
689 if(outputs.size() <= (unsigned)idx)
690 outputs.resize(idx + 1);
692 outputs[idx] = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, idx);
694 outputs[idx] = ureg_DECL_output(ureg, TGSI_SEMANTIC_GENERIC, idx);
709 if(outputs.size() <= (unsigned)idx)
710 outputs.resize(idx + 1);
712 outputs[idx] = ureg_DECL_output(ureg, sm4_to_pipe_sv[dcl.sv], 0)
    [all...]
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 53 SortedVector <audio_io_handle_t> outputs; local
94 if (checkOutputsForDevice(device, state, outputs) != NO_ERROR) {
97 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %d outputs",
98 outputs.size());
102 if (!outputs.isEmpty()) {
122 for (size_t i = 0; i < outputs.size(); i++) {
123 mpClientInterface->setParameters(outputs[i], paramStr);
139 checkOutputsForDevice(device, state, outputs);
162 // outputs must be closed after checkOutputForAllStrategies() is executed
163 if (!outputs.isEmpty())
675 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); local
2074 SortedVector<audio_io_handle_t> outputs; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_vs_draw.c 34 * outputs and missing ones must be inserted.
198 /* Since we're inserting new outputs in between, the following outputs
274 /* Fix writes to outputs. */
375 vs->outputs.wpos = vs->outputs.generic[transform.last_generic + 1];
376 vs->outputs.generic[transform.last_generic + 1] = ATTR_UNUSED;
  /external/mesa3d/src/gallium/drivers/r300/
r300_vs_draw.c 34 * outputs and missing ones must be inserted.
198 /* Since we're inserting new outputs in between, the following outputs
274 /* Fix writes to outputs. */
375 vs->outputs.wpos = vs->outputs.generic[transform.last_generic + 1];
376 vs->outputs.generic[transform.last_generic + 1] = ATTR_UNUSED;

Completed in 1225 milliseconds

1 2 34 5 6 7 8 91011>>