HomeSort by relevance Sort by last modified time
    Searched defs:Pipeline (Results 1 - 10 of 10) sorted by null

  /external/llvm/utils/lit/lit/
ShCommands.py 38 class Pipeline:
45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate,
49 if not isinstance(other, Pipeline):
ShUtil.py 5 from lit.ShCommands import Command, Pipeline, Seq
230 return Pipeline(commands, negate, self.pipefail)
291 Pipeline([Command(['echo', 'hello'], [])], False))
293 Pipeline([Command(['echo', ''], [])], False))
295 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
297 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
301 Pipeline([Command(['echo', 'hello'],
304 Pipeline([Command(['echo', 'hello'], [(('>',), 'c'),
307 Pipeline([Command(['a'], [(('>&',2), '1')])], False))
311 Pipeline([Command(['a'], [])
    [all...]
  /external/v8/src/compiler/
pipeline.h 26 class Pipeline {
28 explicit Pipeline(CompilationInfo* info) : info_(info) {}
30 // Run the entire pipeline and generate a handle to a code object.
33 // Run the pipeline on a machine graph and generate code. The {schedule} must
41 // Run the pipeline on a machine graph and generate code. If {schedule} is
52 // Run the pipeline on a machine graph and generate code. If {schedule} is
63 // Helpers for executing pipeline phases.
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
Pipeline.java 19 * The interface to the vr rendering pipeline
22 public interface Pipeline {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Pipeline.java 43 public class Pipeline extends InputStream {
59 Pipeline pipeline; field in class:Pipeline.MyTimer
63 protected MyTimer(Pipeline pipeline) {
64 this.pipeline = pipeline;
72 pipeline.close();
122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) {
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 223 class Pipeline
226 Pipeline (VkDevice, const VkGraphicsPipelineCreateInfo*) {}
227 Pipeline (VkDevice, const VkComputePipelineCreateInfo*) {}
413 pPipelines[allocNdx] = allocateNonDispHandle<Pipeline, VkPipeline>(device, pCreateInfos+allocNdx, pAllocator);
420 freeNonDispHandle<Pipeline, VkPipeline>(pPipelines[freeNdx], pAllocator);
427 freeNonDispHandle<Pipeline, VkPipeline>(pPipelines[freeNdx], pAllocator);
439 pPipelines[allocNdx] = allocateNonDispHandle<Pipeline, VkPipeline>(device, pCreateInfos+allocNdx, pAllocator);
446 freeNonDispHandle<Pipeline, VkPipeline>(pPipelines[freeNdx], pAllocator);
453 freeNonDispHandle<Pipeline, VkPipeline>(pPipelines[freeNdx], pAllocator);
  /external/pdfium/third_party/lcms2-2.6/src/
cmsps2.c 52 implemented as a set of curves), matrix-shaper and Pipeline-based.
269 _cmsStageCLutData* Pipeline;
576 // Out[] The Pipeline values, normalized to 0..ffff
580 // Each row contains Pipeline values for all but first component. So, I
646 for (i=0; i < sc -> Pipeline ->Params->nOutputs; i++) {
661 // Writes a Pipeline on memstream. Could be 8 or 16 bits based
676 sc.Pipeline = (_cmsStageCLutData *) mpe ->Data;
688 for (i=0; i < sc.Pipeline->Params->nInputs; i++)
689 _cmsIOPrintf(m, " %d ", sc.Pipeline->Params->nSamples[i]);
771 int EmitCIEBasedDEF(cmsIOHANDLER* m, cmsPipeline* Pipeline, int Intent, cmsCIEXYZ* BlackPoint
    [all...]
cmsvirt.c 293 cmsPipeline* Pipeline;
311 // Creates a Pipeline with prelinearization step only
312 Pipeline = cmsPipelineAlloc(ContextID, nChannels, nChannels);
313 if (Pipeline == NULL) goto Error;
316 // Copy tables to Pipeline
317 if (!cmsPipelineInsertStage(Pipeline, cmsAT_BEGIN, cmsStageAllocToneCurves(ContextID, nChannels, TransferFunctions)))
322 if (!cmsWriteTag(hICC, cmsSigAToB0Tag, (void*) Pipeline)) goto Error;
325 // Pipeline is already on virtual profile
326 cmsPipelineFree(Pipeline);
332 cmsPipelineFree(Pipeline);
    [all...]
  /external/vulkan-validation-layers/tests/
vktestbinding.h 57 class Pipeline;
557 class Pipeline : public internal::NonDispHandle<VkPipeline> {
559 ~Pipeline();
    [all...]
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
pipeline.py 17 """Google App Engine Pipeline API for complex, asynchronous workflows."""
23 'UnexpectedPipelineError', 'PipelineStatusError', 'Slot', 'Pipeline',
90 # barriers will fire but do nothing because the Pipeline is not ready.
100 """Base class for exceptions that happen before Pipeline execution."""
104 """A new Pipeline with an assigned idempotence_key cannot be overwritten."""
108 """Base class for exceptions that happen during Pipeline execution."""
120 """An assertion failed, potentially leaving the pipeline unable to proceed."""
128 """The currently running pipeline should be retried at a later time."""
132 """The currently running pipeline should be aborted up to the root."""
136 """Exceptions raised when trying to collect pipeline status.""
    [all...]

Completed in 125 milliseconds