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

1 23 4 5 6 7 8 91011>>

  /external/v8/src/compiler/
instruction-selector.cc 202 InstructionCode opcode, size_t output_count, InstructionOperand* outputs,
206 Instruction::New(instruction_zone(), opcode, output_count, outputs,
463 outputs(zone),
467 outputs.reserve(descriptor->ReturnCount());
476 InstructionOperandVector outputs; member in struct:v8::internal::compiler::CallBuffer
506 // Collect the projections that represent multiple outputs from this call.
520 // Filter out the outputs that aren't live because no projection uses them.
542 buffer->outputs.push_back(op);
1436 auto* outputs = output_count ? &buffer.outputs.front() : nullptr; local
1522 auto* outputs = &buffer.outputs.front(); local
    [all...]
  /external/v8/src/compiler/mips/
instruction-selector-mips.cc 96 InstructionOperand outputs[2]; local
107 outputs[output_count++] = g.DefineAsRegister(node);
109 outputs[output_count++] = g.DefineAsRegister(cont->result());
115 DCHECK_GE(arraysize(outputs), output_count);
117 selector->Emit(cont->Encode(opcode), output_count, outputs, input_count,
    [all...]
  /external/v8/src/compiler/x87/
instruction-selector-x87.cc 161 InstructionOperand outputs[1]; local
162 outputs[0] = g.DefineAsRegister(node);
168 Emit(code, 1, outputs, input_count, inputs);
374 InstructionOperand outputs[2]; local
406 outputs[output_count++] = g.DefineSameAsFirst(node);
408 outputs[output_count++] = g.DefineAsRegister(cont->result());
414 DCHECK_GE(arraysize(outputs), output_count);
416 selector->Emit(cont->Encode(opcode), output_count, outputs, input_count,
505 InstructionOperand outputs[1]; local
506 outputs[0] = g.DefineAsRegister(result)
573 InstructionOperand outputs[1]; local
    [all...]
  /external/v8/test/cctest/compiler/
test-run-machops.cc 4799 int32_t outputs[kInputSize]; local
4827 int32_t outputs[kInputSize]; local
4850 int32_t outputs[kInputSize]; local
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
RecordingTest.java 116 " does not support color outputs, skipping");
213 " does not support color outputs, skipping");
314 " does not support color outputs, skipping");
370 " does not support color outputs, skipping");
926 List<Surface> outputs = new ArrayList<Surface>(); local
    [all...]
ReprocessCaptureTest.java 68 // reader. If it's true, mFirstImageReader should be used for regular and reprocess outputs.
1279 Surface[] outputs = new Surface[1]; local
    [all...]
CameraDeviceTest.java 434 final ArrayList<Surface> outputs = new ArrayList<>(); local
435 outputs.add(mReaderSurface);
538 camera.createCaptureSession(outputs, mSessionListener, mHandler);
581 Log.i(TAG, "Camera " + mCameraIds[i] + " does not support color outputs, skipping");
635 " does not support color outputs, skipping");
657 " does not support color outputs, skipping");
703 List<Surface> outputs = new ArrayList<>(); local
704 outputs.add(imageReaders.get(i).getSurface());
705 mCamera.createCaptureSession(outputs, sessionListener, mHandler);
812 // Create new session with outputs 1 and 3, ensure output1Surface still can't be prepare
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktOpaqueTypeIndexingTests.cpp 533 std::vector<void*> outputs; local
557 outputs.push_back(&outData[outLookupStride*lookupNdx]);
561 m_executor.execute(m_context, numInvocations, &inputs[0], &outputs[0]);
773 m_shaderSpec.outputs.push_back(Symbol(varName, glu::VarType(outType, glu::PRECISION_HIGHP)));
864 std::vector<void*> outputs; local
889 outputs.push_back(&outValues[readNdx*numInvocations]);
893 m_executor.execute(m_context, numInvocations, inputs.empty() ? DE_NULL : &inputs[0], &outputs[0]);
1093 std::vector<void*> outputs; local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 119 vector<FragmentOutput> outputs; member in struct:deqp::gles3::Functional::OutputVec
123 outputs.push_back(output);
129 return outputs;
136 FragmentOutputCase (Context& context, const char* name, const char* desc, const vector<BufferSpec>& fboSpec, const vector<FragmentOutput>& outputs);
155 FragmentOutputCase::FragmentOutputCase (Context& context, const char* name, const char* desc, const vector<BufferSpec>& fboSpec, const vector<FragmentOutput>& outputs)
158 , m_outputs (outputs)
169 static glu::ShaderProgram* createProgram (const glu::RenderContext& context, const vector<FragmentOutput>& outputs)
179 for (int outNdx = 0; outNdx < (int)outputs.size(); outNdx++)
181 const FragmentOutput& output = outputs[outNdx];
214 for (int outNdx = 0; outNdx < (int)outputs.size(); outNdx++
1039 vector<FragmentOutput> outputs; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
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/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_native.cpp 251 std::vector<ComPtr<IDXGIOutput> > outputs; member in struct:GalliumDXGIAdapter
    [all...]
  /external/opencv3/modules/java/src/
ml.cpp 1069 // float predictProb(Mat inputs, Mat& outputs, Mat& outputProbs, int flags = 0)
1082 Mat& outputs = *((Mat*)outputs_nativeObj); local
1084 float _retval_ = (*me)->predictProb( inputs, outputs, outputProbs, (int)flags );
1106 Mat& outputs = *((Mat*)outputs_nativeObj); local
    [all...]
  /external/v8/src/compiler/arm64/
instruction-selector-arm64.cc 224 InstructionOperand outputs[2]; local
280 outputs[output_count++] = g.DefineAsRegister(node);
284 outputs[output_count++] = g.DefineAsRegister(cont->result());
290 DCHECK_GE(arraysize(outputs), output_count);
292 selector->Emit(cont->Encode(opcode), output_count, outputs, input_count,
1246 InstructionOperand outputs[2]; local
1263 InstructionOperand outputs[2]; local
1280 InstructionOperand outputs[2]; local
1297 InstructionOperand outputs[2]; local
    [all...]
  /external/v8/src/compiler/mips64/
instruction-selector-mips64.cc 101 InstructionOperand outputs[2]; local
112 outputs[output_count++] = g.DefineAsRegister(node);
114 outputs[output_count++] = g.DefineAsRegister(cont->result());
120 DCHECK_GE(arraysize(outputs), output_count);
122 selector->Emit(cont->Encode(opcode), output_count, outputs, input_count,
887 InstructionOperand outputs[2]; local
889 outputs[output_count++] = g.DefineAsRegister(node);
893 outputs[output_count++] = g.DefineAsRegister(success_output);
896 this->Emit(kMips64TruncLS, output_count, outputs, 1, inputs);
903 InstructionOperand outputs[2] local
919 InstructionOperand outputs[2]; local
936 InstructionOperand outputs[2]; local
    [all...]
  /external/v8/src/compiler/ppc/
instruction-selector-ppc.cc 103 InstructionOperand outputs[2]; local
105 outputs[output_count++] = g.DefineAsRegister(node);
109 outputs[output_count++] = g.DefineAsRegister(success_output);
112 selector->Emit(opcode, output_count, outputs, 1, inputs);
126 InstructionOperand outputs[2]; local
137 outputs[output_count++] = g.DefineAsRegister(node);
139 outputs[output_count++] = g.DefineAsRegister(cont->result());
145 DCHECK_GE(arraysize(outputs), output_count);
147 selector->Emit(cont->Encode(opcode), output_count, outputs, input_count,
    [all...]
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 141 InstructionOperand outputs[1]; local
142 outputs[0] = g.DefineAsRegister(node);
148 Emit(code, 1, outputs, input_count, inputs);
356 InstructionOperand outputs[2]; local
388 outputs[output_count++] = g.DefineSameAsFirst(node);
390 outputs[output_count++] = g.DefineAsRegister(cont->result());
396 DCHECK_GE(arraysize(outputs), output_count);
398 selector->Emit(cont->Encode(opcode), output_count, outputs, input_count,
520 InstructionOperand outputs[1]; local
521 outputs[0] = g.DefineAsRegister(result)
863 InstructionOperand outputs[2]; local
879 InstructionOperand outputs[2]; local
895 InstructionOperand outputs[2]; local
911 InstructionOperand outputs[2]; local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
Camera2ReprocessCaptureTest.java 85 // reader. If it's true, mFirstImageReader should be used for regular and reprocess outputs.
1030 Surface[] outputs = new Surface[1]; local
    [all...]
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 74 SortedVector <audio_io_handle_t> outputs; local
113 if (checkOutputsForDevice(device, state, outputs, paramStr) != NO_ERROR) {
116 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
117 outputs.size());
144 checkOutputsForDevice(device, state, outputs, paramStr);
168 // outputs must be closed after checkOutputForAllStrategies() is executed
169 if (!outputs.isEmpty()) {
170 for (size_t i = 0; i < outputs.size(); i++) {
171 AudioOutputDescriptor *desc = mOutputs.valueFor(outputs[i]);
172 // close unused outputs after device disconnection or direct outputs that have bee
683 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); local
2295 SortedVector<audio_io_handle_t> outputs; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmInstructionTests.cpp 217 spec.outputs.push_back(BufferSp(new Float32Buffer(negativeFloats)));
281 spec.outputs.push_back(BufferSp(new Float32Buffer(negativeFloats)));
347 spec.outputs.push_back(BufferSp(new Float32Buffer(negativeFloats)));
456 spec.outputs.push_back(BufferSp(new Float32Buffer(outputFloats)));
556 spec.outputs.push_back(BufferSp(new Float32Buffer(outputFloats)));
628 spec1.outputs.push_back(BufferSp(new Vec4Buffer(outputFloats1)));
677 spec2.outputs.push_back(BufferSp(new Float32Buffer(outputFloats2)));
725 spec3.outputs.push_back(BufferSp(new Float32Buffer(outputFloats3)));
769 spec4.outputs.push_back(BufferSp(new Float32Buffer(outputFloats4)));
846 spec.outputs.push_back(BufferSp(new Float32Buffer(outputFloats)))
2554 vector<float> outputs; local
2580 vector<float> outputs; local
2603 vector<float> outputs; local
2633 vector<float> outputs; local
2656 vector<float> outputs; local
3228 InstanceContext (const RGBA (&inputs)[4], const RGBA (&outputs)[4], const map<string, string>& testCodeFragments_, const StageToSpecConstantMap& specConstants_) member in struct:vkt::SpirVAssembly::__anon9882::InstanceContext
    [all...]
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp 231 packets[ndx]->outputs[0] = rr::readVertexAttribFloat(inputs[1], packets[ndx]->instanceNdx, packets[ndx]->vertexNdx);
260 output.EmitVertex(vertex->position + offsets[0] + yoffset, vertex->pointSize, vertex->outputs, packets[ndx].primitiveIDIn);
261 output.EmitVertex(vertex->position + offsets[1] + yoffset, vertex->pointSize, vertex->outputs, packets[ndx].primitiveIDIn);
262 output.EmitVertex(vertex->position + offsets[2] + yoffset, vertex->pointSize, vertex->outputs, packets[ndx].primitiveIDIn);
338 packets[ndx]->outputs[0] = rr::readVertexAttribFloat(inputs[1], packets[ndx]->instanceNdx, packets[ndx]->vertexNdx);
370 output.EmitVertex(vertex->position + positions[i], vertex->pointSize, vertex->outputs, packets[ndx].primitiveIDIn);
376 output.EmitVertex(vertex->position + positions[m_emitCountA + i], vertex->pointSize, vertex->outputs, packets[ndx].primitiveIDIn);
473 packets[ndx]->outputs[0] = color;
477 packets[ndx]->outputs[0] = color * 0.5f;
478 packets[ndx]->outputs[1] = color.swizzle(2,1,0,3) * 0.5f
525 rr::GenericVec4 outputs[2]; local
562 rr::GenericVec4 outputs[2]; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
BasicTest.java 363 String[] outputs = { local
370 String output = outputs[i];
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
BasicTest.java 359 String[] outputs = { local
366 String output = outputs[i];
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 3895 struct ureg_dst outputs[PIPE_MAX_SHADER_OUTPUTS]; member in struct:st_translate
    [all...]
  /frameworks/av/services/audiopolicy/managerdefault/
AudioPolicyManager.cpp 80 SortedVector <audio_io_handle_t> outputs; local
112 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
119 // outputs should never be empty here
120 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
121 "checkOutputsForDevice() returned no outputs but status OK");
122 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
123 outputs.size());
148 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
163 // outputs must be closed after checkOutputForAllStrategies() is executed
164 if (!outputs.isEmpty())
372 SortedVector<audio_io_handle_t> outputs = local
413 SortedVector<audio_io_handle_t> outputs = local
982 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); local
2611 SortedVector<audio_io_handle_t> outputs = local
2821 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); local
2975 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs); local
4109 SortedVector<audio_io_handle_t> outputs; local
4377 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(curDevices, mOutputs); local
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 1522 outputs_range outputs() { function in class:clang::AsmStmt
1532 outputs_const_range outputs() const { function in class:clang::AsmStmt
    [all...]

Completed in 902 milliseconds

1 23 4 5 6 7 8 91011>>