OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MemCpy
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp
252
case LibFunc::
memcpy
:
816
Value *
MemCpy
= M->getOrInsertFunction(
822
CallInst *CI = B.CreateCall(
MemCpy
, {Dst, Src, Len, ObjSize});
823
if (const Function *F = dyn_cast<Function>(
MemCpy
->stripPointerCasts()))
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BuildLibCalls.cpp
143
Value *
MemCpy
= M->getOrInsertFunction("__memcpy_chk",
152
CallInst *CI = B.CreateCall4(
MemCpy
, Dst, Src, Len, ObjSize);
153
if (const Function *F = dyn_cast<Function>(
MemCpy
->stripPointerCasts()))
216
memcpy
(NameBuffer, Name, NameLen);
386
// Should be similar to
memcpy
.
/external/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp
490
case Intrinsic::
memcpy
:
799
case Intrinsic::
memcpy
: {
800
MemCpyInst *
MemCpy
= cast<MemCpyInst>(Intr);
801
Builder.CreateMemCpy(
MemCpy
->getRawDest(),
MemCpy
->getRawSource(),
802
MemCpy
->getLength(),
MemCpy
->getAlignment(),
803
MemCpy
->isVolatile());
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SimplifyLibCalls.cpp
170
// destination's pointer to get the actual
memcpy
destination (end of
174
// We have enough information to now generate the
memcpy
call to do the
175
// concatenation for us. Make a
memcpy
to copy the nul byte with align = 1.
452
// We have enough information to now generate the
memcpy
call to do the
453
// concatenation for us. Make a
memcpy
to copy the nul byte with align = 1.
506
// strncpy(x, s, c) ->
memcpy
(x, s, c, 1) [s and c are constant]
774
// '
memcpy
' Optimizations
788
//
memcpy
(x, y, n) -> llvm.
memcpy
(x, y, n, 1)
[
all
...]
/external/clang/lib/Sema/
SemaDeclCXX.cpp
[
all
...]
Completed in 371 milliseconds