HomeSort by relevance Sort by last modified time
    Searched defs:StrCpy (Results 1 - 9 of 9) sorted by null

  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
str.c 107 StrCpy (
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
String.c 46 StrCpy (
371 StrCpy (Destination + StrLen (Destination), Source);
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 137 case LibFunc::strcpy:
774 if (!TLI->has(LibFunc::strcpy))
779 Value *StrCpy = M->getOrInsertFunction(Name, I8Ptr, I8Ptr, I8Ptr, nullptr);
782 B.CreateCall(StrCpy, {castToCStr(Dst, B), castToCStr(Src, B)}, Name);
783 if (const Function *F = dyn_cast<Function>(StrCpy->stripPointerCasts()))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BuildLibCalls.cpp 97 /// EmitStrCpy - Emit a call to the strcpy function to the builder, for the
106 Value *StrCpy = M->getOrInsertFunction(Name, AttrListPtr::get(AWI, 2),
108 CallInst *CI = B.CreateCall2(StrCpy, CastToCStr(Dst, B), CastToCStr(Src, B),
110 if (const Function *F = dyn_cast<Function>(StrCpy->stripPointerCasts()))
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 424 // 'strcpy' Optimizations
432 // Verify the "strcpy" function prototype.
442 if (Dst == Src) // strcpy(x,x) -> x
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueBaseLib.h 30 #define StrCpy(_Dest, _Source) GlueStrCpy(_Dest, _Source)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
strsafe.h 1926 #undef strcpy macro
1927 #define strcpy macro
    [all...]
shlwapi.h 227 #define StrCpy StrCpyW
233 #define StrCpy lstrcpyA
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvmuxer.cc 46 // StrCpy). Returns true if the source string was successfully copied
48 bool StrCpy(const char* src, char** dst_ptr) {
66 strcpy(dst, src); // NOLINT
915 strcpy(codec_id_, codec_id);
932 strcpy(language_, language);
948 strcpy(name_, name);
    [all...]

Completed in 253 milliseconds