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

  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 362 case Intrinsic::memcpy: {
363 MemCpyInst *MemCpy = cast<MemCpyInst>(Intr);
364 Builder.CreateMemCpy(MemCpy->getRawDest(), MemCpy->getRawSource(),
365 MemCpy->getLength(), MemCpy->getAlignment(),
366 MemCpy->isVolatile());
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 215 Value *MemCpy = M->getOrInsertFunction("__memcpy_chk",
224 CallInst *CI = B.CreateCall4(MemCpy, Dst, Src, Len, ObjSize);
225 if (const Function *F = dyn_cast<Function>(MemCpy->stripPointerCasts()))
528 // Should be similar to memcpy.
SimplifyLibCalls.cpp 416 // destination's pointer to get the actual memcpy destination (end of
420 // We have enough information to now generate the memcpy call to do the
421 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
679 // We have enough information to now generate the memcpy call to do the
680 // copy for us. Make a memcpy to copy the nul byte with align = 1.
717 // We have enough information to now generate the memcpy call to do the
718 // copy for us. Make a memcpy to copy the nul byte with align = 1.
764 // strncpy(x, s, c) -> memcpy(x, s, c, 1) [s and c are constant]
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]

Completed in 141 milliseconds