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

  /external/clang/include/clang/Lex/
ScratchBuffer.h 37 SourceLocation getToken(const char *Buf, unsigned Len, const char *&DestPtr);
  /external/clang/lib/Lex/
ScratchBuffer.cpp 34 const char *&DestPtr) {
43 DestPtr = CurBuffer+BytesUsed;
Preprocessor.cpp 427 const char *DestPtr;
428 SourceLocation Loc = ScratchBuf->getToken(Str.data(), Str.size(), DestPtr);
437 Tok.setRawIdentifierData(DestPtr);
439 Tok.setLiteralData(DestPtr);
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 82 /// then loads the result into DestPtr.
85 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
94 void EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList);
95 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
241 /// then loads the result into DestPtr.
272 /// \brief Perform the final move to DestPtr if for some reason
297 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
305 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
371 void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr,
402 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(destPtr, initList->getType())
    [all...]
CodeGenFunction.cpp 885 CodeGenFunction::EmitNullInitialization(llvm::Value *DestPtr, QualType Ty) {
    [all...]
CGCall.cpp 745 llvm::Value *DestPtr, bool DestIsVolatile,
751 llvm::Value *EltPtr = CGF.Builder.CreateConstGEP2_32(DestPtr, 0, i);
759 llvm::StoreInst *SI = CGF.Builder.CreateStore(Val, DestPtr, DestIsVolatile);
    [all...]
CGObjCRuntime.h 262 llvm::Value *DestPtr,
CGBuiltin.cpp 88 llvm::Value *DestPtr = CGF.EmitScalarExpr(E->getArg(0));
89 unsigned AddrSpace = DestPtr->getType()->getPointerAddressSpace();
97 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
122 llvm::Value *DestPtr = CGF.EmitScalarExpr(E->getArg(0));
123 unsigned AddrSpace = DestPtr->getType()->getPointerAddressSpace();
134 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
    [all...]
CGClass.cpp 836 void emitMemcpyIR(llvm::Value *DestPtr, llvm::Value *SrcPtr,
838 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
841 DestPtr = CGF.Builder.CreateBitCast(DestPtr, DBP);
848 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, Size.getQuantity(),
    [all...]
CGExprCXX.cpp 407 llvm::Value *DestPtr,
412 DestPtr = CGF.EmitCastToVoidPtr(DestPtr);
438 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, Align.getQuantity());
445 CGF.Builder.CreateMemSet(DestPtr, CGF.Builder.getInt8(0), SizeVal,
    [all...]
CodeGenFunction.h     [all...]
CGObjCGNU.cpp 549 llvm::Value *DestPtr,
    [all...]
CGObjCMac.cpp     [all...]
CGExpr.cpp 777 llvm::Value *DestPtr = CreateMemTemp(Ty, "undef.agg.tmp");
778 return RValue::getAggregate(DestPtr);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 153 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
    [all...]

Completed in 178 milliseconds