OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MemCpy
(Results
1 - 2
of
2
) sorted by null
/external/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/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.
447
// We have enough information to now generate the
memcpy
call to do the
448
// concatenation for us. Make a
memcpy
to copy the nul byte with align = 1.
501
// strncpy(x, s, c) ->
memcpy
(x, s, c, 1) [s and c are constant]
769
// '
memcpy
' Optimizations
783
//
memcpy
(x, y, n) -> llvm.
memcpy
(x, y, n, 1)
[
all
...]
Completed in 170 milliseconds