Searched defs:Dest (Results 1 - 25 of 72) sorted by last modified time

123

/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscnvrt.c222 cmsCIEXYZ Dest; local
236 Dest.X = d.n[VX];
237 Dest.Y = d.n[VY];
238 Dest.Z = d.n[VZ];
240 cmsXYZ2xyY(&DestChromaticity, &Dest);
H A Dcmsio0.c893 cmsBool CMSEXPORT cmsGetHeaderCreationDateTime(cmsHPROFILE hProfile, struct tm *Dest) argument
896 memmove(Dest, &Icc ->Created, sizeof(struct tm));
H A Dcmsio1.c64 cmsBool _cmsReadMediaWhitePoint(cmsCIEXYZ* Dest, cmsHPROFILE hProfile) argument
68 _cmsAssert(Dest != NULL);
74 *Dest = *cmsD50_XYZ();
82 *Dest = *cmsD50_XYZ();
88 *Dest = *Tag;
94 cmsBool _cmsReadCHAD(cmsMAT3* Dest, cmsHPROFILE hProfile) argument
98 _cmsAssert(Dest != NULL);
103 *Dest = *Tag;
108 _cmsMAT3identity(Dest);
119 _cmsMAT3identity(Dest);
[all...]
H A Dcmsopt.c552 cmsPipeline* Dest = NULL; local
586 Dest = cmsPipelineAlloc(Src ->ContextID, Src ->InputChannels, Src ->OutputChannels);
587 if (!Dest) return FALSE;
603 if(!cmsPipelineInsertStage(Dest, cmsAT_BEGIN, NewPreLin))
618 if (!cmsPipelineInsertStage(Dest, cmsAT_END, CLUT)) {
636 if (!cmsPipelineInsertStage(Dest, cmsAT_END, NewPostLin))
660 cmsPipelineFree(Dest);
681 _cmsPipelineSetOptimizationParameters(Dest, (_cmsOPTeval16Fn) DataCLUT->Params->Interpolation.Lerp16, DataCLUT->Params, NULL, NULL);
685 p16 = PrelinOpt16alloc(Dest ->ContextID,
687 Dest
1273 cmsPipeline* Dest = NULL; local
1489 SetMatShaper(cmsPipeline* Dest, cmsToneCurve* Curve1[3], cmsMAT3* Mat, cmsVEC3* Off, cmsToneCurve* Curve2[3], cmsUInt32Number* OutputFormat) argument
1547 cmsPipeline* Dest, *Src; local
[all...]
H A Dcmspcs.c91 void CMSEXPORT cmsXYZ2xyY(cmsCIExyY* Dest, const cmsCIEXYZ* Source) argument
97 Dest -> x = (Source -> X) * ISum;
98 Dest -> y = (Source -> Y) * ISum;
99 Dest -> Y = Source -> Y;
102 void CMSEXPORT cmsxyY2XYZ(cmsCIEXYZ* Dest, const cmsCIExyY* Source) argument
104 Dest -> X = (Source -> x / Source -> y) * Source -> Y;
105 Dest -> Y = Source -> Y;
106 Dest -> Z = ((1 - Source -> x - Source -> y) / Source -> y) * Source -> Y;
H A Dcmsplugin.c222 void NormalizeXYZ(cmsCIEXYZ* Dest) argument
224 while (Dest -> X > 2. &&
225 Dest -> Y > 2. &&
226 Dest -> Z > 2.) {
228 Dest -> X /= 10.;
229 Dest -> Y /= 10.;
230 Dest -> Z /= 10.;
401 void CMSEXPORT _cmsDecodeDateTimeNumber(const cmsDateTimeNumber *Source, struct tm *Dest) argument
404 _cmsAssert(Dest != NULL);
407 Dest
418 _cmsEncodeDateTimeNumber(cmsDateTimeNumber *Dest, const struct tm *Source) argument
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc.cpp118 CPDF_Dest Dest = (CPDF_Array*)dest; local
120 return Dest.GetPageIndex(pDoc);
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp2481 TreePatternNode *Dest = Pat->getChild(i); local
2482 if (!Dest->isLeaf())
2485 DefInit *Val = dyn_cast<DefInit>(Dest->getLeafValue());
2522 TreePatternNode *Dest = Pat->getChild(i); local
2523 if (!Dest->isLeaf())
2526 DefInit *Val = dyn_cast<DefInit>(Dest->getLeafValue());
2534 if (Dest->getName().empty())
2536 if (InstResults.count(Dest->getName()))
2537 I->error("cannot set '" + Dest->getName() +"' multiple times");
2538 InstResults[Dest
[all...]
H A DFixedLenDecoderEmitter.cpp694 FixupScopeList::iterator Dest = Source - 1; local
695 Dest->insert(Dest->end(), Source->begin(), Source->end());
H A DPseudoLoweringEmitter.cpp38 CodeGenInstruction Dest; // The destination instruction to lower to. member in struct:__anon26603::PseudoLoweringEmitter::PseudoExpansion
43 Source(s), Dest(d), OperandMap(m) {}
210 CodeGenInstruction &Dest = Expansion.Dest; local
215 << " TmpInst.setOpcode(" << Dest.Namespace << "::"
216 << Dest.TheDef->getName() << ");\n";
223 for (const auto &DestOperand : Dest.Operands) {
254 if (Dest.Operands.isVariadic) {
/external/llvm/unittests/ADT/
H A DVariadicFunctionTest.cpp59 int StringAppendImpl(std::string *Dest, ArrayRef<const std::string *> Args) { argument
63 *Dest += *Args[i];
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1580 LLVMBasicBlockRef Dest) {
1581 LLVMAddCase(Switch, OnVal, Dest);
1594 LLVMBasicBlockRef Dest) {
1595 LLVMAddDestination(IndirectBr, Dest);
1579 llvm_add_case(LLVMValueRef Switch, LLVMValueRef OnVal, LLVMBasicBlockRef Dest) argument
1593 llvm_add_destination(LLVMValueRef IndirectBr, LLVMBasicBlockRef Dest) argument
/external/llvm/include/llvm/ADT/
H A DSmallVector.h183 /// objects starting with "Dest". This is just <memory>'s
186 static It2 move(It1 I, It1 E, It2 Dest) {
187 for (; I != E; ++I, ++Dest)
188 *Dest = ::std::move(*I);
189 return Dest;
193 /// [I, E) onto the objects ending at "Dest", moving objects
197 static It2 move_backward(It1 I, It1 E, It2 Dest) {
199 *--Dest = ::std::move(*--E);
200 return Dest;
204 /// memory starting with "Dest", constructin
285 move(It1 I, It1 E, It2 Dest) argument
293 move_backward(It1 I, It1 E, It2 Dest) argument
300 uninitialized_move(It1 I, It1 E, It2 Dest) argument
308 uninitialized_copy(It1 I, It1 E, It2 Dest) argument
316 uninitialized_copy(T1 *I, T1 *E, T2 *Dest) argument
[all...]
/external/llvm/include/llvm/IR/
H A DIRBuilder.h543 BranchInst *CreateBr(BasicBlock *Dest) { argument
544 return Insert(BranchInst::Create(Dest));
558 SwitchInst *CreateSwitch(Value *V, BasicBlock *Dest, unsigned NumCases = 10, argument
560 return Insert(addBranchWeights(SwitchInst::Create(V, Dest, NumCases),
/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h132 SDValue Dest, SDValue Src,
131 EmitTargetCodeForStrcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dest, SDValue Src, MachinePointerInfo DestPtrInfo, MachinePointerInfo SrcPtrInfo, bool isStpcpy) const argument
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp547 /// \brief Dest and Src are the variable indices from two decomposed
551 void GetIndexDifference(SmallVectorImpl<VariableGEPIndex> &Dest,
1360 /// GetIndexDifference - Dest and Src are the variable indices from two
1365 SmallVectorImpl<VariableGEPIndex> &Dest,
1375 // Find V in Dest. This is N^2, but pointer indices almost never have more
1377 for (unsigned j = 0, e = Dest.size(); j != e; ++j) {
1378 if (!isValueEqualInPotentialCycles(Dest[j].V, V) ||
1379 Dest[j].Extension != Extension)
1382 // If we found it, subtract off Scale V's from the entry in Dest. If it
1384 if (Dest[
1364 GetIndexDifference( SmallVectorImpl<VariableGEPIndex> &Dest, const SmallVectorImpl<VariableGEPIndex> &Src) argument
[all...]
H A DCFG.cpp92 const BasicBlock *Dest = TI->getSuccessor(SuccNum); local
93 const_pred_iterator I = pred_begin(Dest), E = pred_end(Dest);
H A DSparsePropagation.cpp99 void SparseSolver::markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) { argument
100 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
104 << " -> " << Dest->getName() << "\n");
106 if (BBExecutable.count(Dest)) {
110 for (BasicBlock::iterator I = Dest->begin(); isa<PHINode>(I); ++I)
114 MarkBlockExecutable(Dest);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3594 "Dest and insert subvector source types must match!");
6337 bool SDValue::reachesChainWithoutSideEffects(SDValue Dest, argument
6339 if (*this == Dest) return true;
6349 if (!getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
6357 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp287 char *Dest = new char[Size]; local
288 Values.push_back(Dest);
289 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n");
291 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
292 Dest[Size-1] = 0;
294 // Endian safe: Array[i] = (PointerTy)Dest;
295 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp51 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
54 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, argument
65 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, argument
76 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, argument
87 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, argument
98 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, argument
102 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal);
105 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal);
115 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \
121 Dest
139 GenericValue Dest; local
153 GenericValue Dest; local
167 GenericValue Dest; local
2022 GenericValue Dest; local
[all...]
/external/llvm/lib/IR/
H A DCore.cpp405 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { argument
409 *Dest++ = wrap(*I);
449 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) { argument
453 *Dest++ = wrap(*I);
685 void LLVMGetMDNodeOperands(LLVMValueRef V, LLVMValueRef *Dest) argument
690 Dest[i] = wrap(N->getOperand(i));
701 void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest) argument
707 Dest[i] = wrap(N->getOperand(i));
2037 LLVMValueRef LLVMBuildBr(LLVMBuilderRef B, LLVMBasicBlockRef Dest) { argument
2038 return wrap(unwrap(B)->CreateBr(unwrap(Dest)));
2081 LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal, LLVMBasicBlockRef Dest) argument
2086 LLVMAddDestination(LLVMValueRef IndirectBr, LLVMBasicBlockRef Dest) argument
[all...]
H A DInstructions.cpp3394 void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) { argument
3404 Case.setSuccessor(Dest);
H A DSymbolTableListTraitsImpl.h30 ::setSymTabObject(TPtr *Dest, TPtr Src) { argument
35 *Dest = Src;
/external/llvm/lib/Linker/
H A DLinkModules.cpp444 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
665 bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src, argument
669 assert(Dest && "Must have two globals being queried");
671 "If Src has internal linkage, Dest shouldn't be set!");
674 bool DestIsDeclaration = Dest->isDeclaration();
677 // If Src is external or if both Src & Dest are external.. Just link the
685 } else if (Dest->hasExternalWeakLinkage()) {
686 // If the Dest is weak, use the source linkage.
691 LT = Dest->getLinkage();
693 } else if (DestIsDeclaration && !Dest
1127 getArrayElements(Constant *C, SmallVectorImpl<Constant*> &Dest) argument
1604 LinkModules(Module *Dest, Module *Src, unsigned Mode, std::string *ErrorMsg) argument
1614 LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src, LLVMLinkerMode Mode, char **OutMessages) argument
[all...]

Completed in 6308 milliseconds

123