| /external/libvpx/libvpx/vp8/common/ |
| D | common.h | 27 #define vp8_copy( Dest, Src) { \ argument 34 #define vp8_copy_array( Dest, Src, N) { \ argument 39 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest)); argument 41 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest)); argument
|
| /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ |
| D | common.h | 30 #define vp8_copy( Dest, Src) { \ argument 37 #define vp8_copy_array( Dest, Src, N) { \ argument 42 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest)); argument 44 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest)); argument
|
| /external/llvm/lib/ExecutionEngine/Interpreter/ |
| D | Execution.cpp | 54 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, in executeFAddInst() 65 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, in executeFSubInst() 76 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, in executeFMulInst() 87 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, in executeFDivInst() 98 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, in executeFRemInst() 139 GenericValue Dest; in executeICMP_EQ() local 153 GenericValue Dest; in executeICMP_NE() local 167 GenericValue Dest; in executeICMP_ULT() local 181 GenericValue Dest; in executeICMP_SLT() local 195 GenericValue Dest; in executeICMP_UGT() local [all …]
|
| /external/llvm/include/llvm/ADT/ |
| D | SmallVector.h | 186 static It2 move(It1 I, It1 E, It2 Dest) { in move() 197 static It2 move_backward(It1 I, It1 E, It2 Dest) { in move_backward() 206 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move() 214 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy() 285 static It2 move(It1 I, It1 E, It2 Dest) { in move() 293 static It2 move_backward(It1 I, It1 E, It2 Dest) { in move_backward() 300 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move() 308 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy() 316 static void uninitialized_copy(T1 *I, T1 *E, T2 *Dest) { in uninitialized_copy()
|
| /external/clang/lib/Frontend/ |
| D | ModuleDependencyCollector.cpp | 48 SmallString<256> Dest = getDest(); in writeFileMap() local 96 SmallString<256> Dest = Collector.getDest(); in copyToRoot() local
|
| /external/libvpx/libvpx/vp8/encoder/ppc/ |
| D | fdct_altivec.asm | 95 .macro two_rows_h Dest argument
|
| /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ppc/ |
| D | fdct_altivec.asm | 95 .macro two_rows_h Dest argument
|
| /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| D | CallEvent.h | 437 void cloneTo(void *Dest) const override { in cloneTo() 473 void cloneTo(void *Dest) const override { new (Dest) BlockCall(*this); } in cloneTo() 568 void cloneTo(void *Dest) const override { new (Dest) CXXMemberCall(*this); } in cloneTo() 610 void cloneTo(void *Dest) const override { in cloneTo() 661 void cloneTo(void *Dest) const override {new (Dest) CXXDestructorCall(*this);} in cloneTo() 705 void cloneTo(void *Dest) const override { new (Dest) CXXConstructorCall(*this); } in cloneTo() 749 void cloneTo(void *Dest) const override { new (Dest) CXXAllocatorCall(*this); } in cloneTo() 804 void cloneTo(void *Dest) const override { new (Dest) ObjCMethodCall(*this); } in cloneTo()
|
| /external/llvm/lib/IR/ |
| D | SymbolTableListTraitsImpl.h | 30 ::setSymTabObject(TPtr *Dest, TPtr Src) { in setSymTabObject()
|
| /external/llvm/utils/TableGen/ |
| D | PseudoLoweringEmitter.cpp | 38 CodeGenInstruction Dest; // The destination instruction to lower to. member 210 CodeGenInstruction &Dest = Expansion.Dest; in emitLoweringEmitter() local
|
| /external/clang/lib/CodeGen/ |
| D | CGAtomic.cpp | 178 llvm::Value *Dest, llvm::Value *Ptr, in emitAtomicCmpXchg() 230 bool IsWeak, llvm::Value *Dest, in emitAtomicCmpXchgFailureSet() 305 static void EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, llvm::Value *Dest, in EmitAtomicOp() 477 RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E, llvm::Value *Dest) { in EmitAtomicExpr()
|
| D | CGExprAgg.cpp | 36 AggValueSlot Dest; member in __anonb2da812f0111::AggExprEmitter 64 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest) in AggExprEmitter() 338 AggValueSlot Dest = EnsureSlot(E->getType()); in VisitCXXStdInitializerListExpr() local 1118 AggValueSlot Dest = EnsureSlot(E->getType()); in VisitInitListExpr() local
|
| /external/llvm/lib/Target/NVPTX/ |
| D | NVPTXImageOptimizer.cpp | 154 BasicBlock *Dest; in replaceWith() local
|
| /external/llvm/lib/Target/MSP430/ |
| D | MSP430BranchSelector.cpp | 114 MachineBasicBlock *Dest = I->getOperand(0).getMBB(); in runOnMachineFunction() local
|
| /external/llvm/lib/Transforms/Utils/ |
| D | LoopUnroll.cpp | 381 BasicBlock *Dest = Headers[j]; in UnrollLoop() local 429 BasicBlock *Dest = Term->getSuccessor(0); in UnrollLoop() local
|
| D | CloneFunction.cpp | 369 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue()); in CloneBlock() local 384 BasicBlock *Dest = const_cast<BasicBlock*>(Case.getCaseSuccessor()); in CloneBlock() local 595 BasicBlock *Dest = BI->getSuccessor(0); in CloneAndPruneFunctionInto() local
|
| /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
| D | cmsplugin.c | 222 void NormalizeXYZ(cmsCIEXYZ* Dest) in NormalizeXYZ() 401 void CMSEXPORT _cmsDecodeDateTimeNumber(const cmsDateTimeNumber *Source, struct tm *Dest) in _cmsDecodeDateTimeNumber() 418 void CMSEXPORT _cmsEncodeDateTimeNumber(cmsDateTimeNumber *Dest, const struct tm *Source) in _cmsEncodeDateTimeNumber()
|
| D | cmsio1.c | 64 cmsBool _cmsReadMediaWhitePoint(cmsCIEXYZ* Dest, cmsHPROFILE hProfile) in _cmsReadMediaWhitePoint() 94 cmsBool _cmsReadCHAD(cmsMAT3* Dest, cmsHPROFILE hProfile) in _cmsReadCHAD()
|
| /external/llvm/lib/Target/PowerPC/ |
| D | PPCBranchSelector.cpp | 116 MachineBasicBlock *Dest = nullptr; in runOnMachineFunction() local
|
| /external/llvm/unittests/ADT/ |
| D | VariadicFunctionTest.cpp | 59 int StringAppendImpl(std::string *Dest, ArrayRef<const std::string *> Args) { in StringAppendImpl()
|
| /external/eigen/Eigen/src/Core/ |
| D | DenseBase.h | 494 template<typename Dest> inline void evalTo(Dest& ) const in evalTo() argument
|
| /external/llvm/lib/Analysis/ |
| D | CFG.cpp | 92 const BasicBlock *Dest = TI->getSuccessor(SuccNum); in isCriticalEdge() local
|
| /external/llvm/lib/Linker/ |
| D | LinkModules.cpp | 665 bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src, in getLinkageResult() 1127 static void getArrayElements(Constant *C, SmallVectorImpl<Constant*> &Dest) { in getArrayElements() 1604 bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode, in LinkModules() 1614 LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src, in LLVMLinkModules()
|
| /external/clang/lib/ASTMatchers/Dynamic/ |
| D | Diagnostics.cpp | 49 Diagnostics::ErrorContent &Dest = Error->Errors[BeginIndex]; in ~OverloadContext() local
|
| /external/clang/lib/Lex/ |
| D | HeaderMap.cpp | 206 StringRef Dest = lookupFilename(Filename, Path); in LookupFile() local
|