HomeSort by relevance Sort by last modified time
    Searched refs:mpe (Results 1 - 16 of 16) sorted by null

  /external/pdfium/third_party/lcms2-2.6/src/
cmslut.c 64 const cmsStage *mpe)
66 memmove(Out, In, mpe ->InputChannels * sizeof(cmsFloat32Number));
104 // This function is quite useful to analyze the structure of a LUT and retrieve the MPE elements
106 // then a list of expected types followed with a list of cmsFloat64Number pointers to MPE elements. If
114 cmsStage* mpe; local
124 mpe = Lut ->Elements;
129 if (mpe ->Type != Type) {
134 mpe = mpe ->Next;
138 mpe = Lut ->Elements
297 cmsStage* mpe = cmsStageAllocToneCurves(ContextID, nChannels, NULL); local
718 cmsStage* mpe ; local
980 cmsStage* mpe; local
1023 cmsStage *mpe = cmsStageAllocMatrix(ContextID, 3, 3, V2ToV4, NULL); local
1039 cmsStage *mpe = cmsStageAllocMatrix(ContextID, 3, 3, V4ToV2, NULL); local
1066 cmsStage *mpe = cmsStageAllocMatrix(ContextID, 3, 3, a1, o1); local
1084 cmsStage *mpe = cmsStageAllocMatrix(ContextID, 3, 3, a1, NULL); local
1105 cmsStage *mpe = cmsStageAllocMatrix(ContextID, 3, 3, a1, o1); local
1122 cmsStage *mpe = cmsStageAllocMatrix(ContextID, 3, 3, a1, NULL); local
1299 cmsStage *mpe; local
1325 cmsStage *mpe; local
1400 cmsStage *mpe, *Next; local
1439 cmsStage *NewMPE, *Anterior = NULL, *mpe; local
1585 cmsStage* mpe; local
1624 cmsStage *mpe, *Anterior = NULL; local
1634 cmsStage *mpe; local
    [all...]
cmstypes.c 60 // Helper macro to define a MPE handler. Callbacks do have a fixed naming convention
63 // Register a new type handler. This routine is shared between normal types and MPE. LinkedList points to the optional list head
91 // Return handler for a given type or NULL if not found. Shared between normal types and MPE. It first tries the additons
1842 cmsStage* mpe; local
2130 cmsStage* mpe; local
4040 cmsStage* mpe = NULL; local
4164 cmsStage* mpe = (cmsStage*) Ptr; local
4192 cmsStage* mpe; local
4260 cmsStage* mpe = (cmsStage*) Ptr; local
4295 cmsStage* mpe = NULL; local
4346 cmsStage* mpe = (cmsStage*) Ptr; local
    [all...]
cmsps2.c 664 void WriteCLUT(cmsIOHANDLER* m, cmsStage* mpe, const char* PreMaj,
676 sc.Pipeline = (_cmsStageCLutData *) mpe ->Data;
693 cmsStageSampleCLut16bit(mpe, OutputValueSampler, (void*) &sc, SAMPLER_INSPECT);
776 cmsStage* mpe; local
778 mpe = Pipeline ->Elements;
780 switch (cmsStageInputChannels(mpe)) {
802 if (cmsStageType(mpe) == cmsSigCurveSetElemType) {
805 EmitNGamma(m, cmsStageOutputChannels(mpe), _cmsStageGetPtrToCurveSet(mpe));
808 mpe = mpe ->Next
    [all...]
cmsopt.c 111 cmsStage* mpe = *head; local
112 cmsStage* next = mpe ->Next;
114 cmsStageFree(mpe);
347 // Try to see if the curves of a given MPE are linear
349 cmsBool AllCurvesAreLinear(cmsStage* mpe)
354 Curves = _cmsStageGetPtrToCurveSet(mpe);
357 n = cmsStageOutputChannels(mpe);
553 cmsStage* mpe; local
579 for (mpe = cmsPipelineGetPtrToFirstStage(Src);
580 mpe != NULL
953 cmsStage* mpe; local
1274 cmsStage* mpe; local
    [all...]
cmsnamed.c 648 // MPE support -----------------------------------------------------------------------------------------------------------------
651 void FreeNamedColorList(cmsStage* mpe)
653 cmsNAMEDCOLORLIST* List = (cmsNAMEDCOLORLIST*) mpe ->Data;
658 void* DupNamedColorList(cmsStage* mpe)
660 cmsNAMEDCOLORLIST* List = (cmsNAMEDCOLORLIST*) mpe ->Data;
665 void EvalNamedColorPCS(const cmsFloat32Number In[], cmsFloat32Number Out[], const cmsStage *mpe)
667 cmsNAMEDCOLORLIST* NamedColorList = (cmsNAMEDCOLORLIST*) mpe ->Data;
683 void EvalNamedColor(const cmsFloat32Number In[], cmsFloat32Number Out[], const cmsStage *mpe)
685 cmsNAMEDCOLORLIST* NamedColorList = (cmsNAMEDCOLORLIST*) mpe ->Data;
717 cmsStage* mpe = v ->Lut->Elements local
    [all...]
cmsvirt.c 1012 cmsStage* mpe; local
1015 for (n=0, mpe = Lut ->Elements; mpe != NULL; mpe = mpe ->Next, n++) {
1018 if (cmsStageType(mpe) != Tab ->MpeTypes[n]) return FALSE;
1052 cmsStage* mpe; local
1060 // Get the first mpe to check for named color
1061 mpe = cmsPipelineGetPtrToFirstStage(xform ->Lut);
1064 if (mpe != NULL)
    [all...]
lcms2_internal.h 546 // This chunk type is shared by TagType plug-in and MPE Plug-in
564 // Allocate and init MPE container.
829 cmsToneCurve** _cmsStageGetPtrToCurveSet(const cmsStage* mpe);
    [all...]
  /external/pdfium/third_party/lcms2-2.6/include/
lcms2_plugin.h 485 typedef void (* _cmsStageEvalFn) (const cmsFloat32Number In[], cmsFloat32Number Out[], const cmsStage* mpe);
486 typedef void*(* _cmsStageDupElemFn) (cmsStage* mpe);
487 typedef void (* _cmsStageFreeElemFn) (cmsStage* mpe);
490 // This function allocates a generic MPE
lcms2.h     [all...]
  /prebuilts/go/darwin-x86/src/go/build/
build_test.go 98 mpe, ok := err.(*MultiplePackageError)
107 if !reflect.DeepEqual(mpe, want) {
108 t.Errorf("got %#v; want %#v", mpe, want)
  /prebuilts/go/linux-x86/src/go/build/
build_test.go 98 mpe, ok := err.(*MultiplePackageError)
107 if !reflect.DeepEqual(mpe, want) {
108 t.Errorf("got %#v; want %#v", mpe, want)
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.3.6/
groovy-all-2.3.6.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.4.7/
groovy-all-2.4.7.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/net/sf/json-lib/json-lib/2.3/
json-lib-2.3-jdk15.jar 

Completed in 394 milliseconds