HomeSort by relevance Sort by last modified time
    Searched defs:Pipeline (Results 1 - 7 of 7) 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 25 class Pipeline {
27 explicit Pipeline(CompilationInfo* info) : info_(info) {}
29 // Run the entire pipeline and generate a handle to a code object.
32 // Run the pipeline on a machine graph and generate code. If {schedule}
  /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/pdfium/core/src/fxcodec/lcms2/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...]

Completed in 210 milliseconds