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

  /external/chromium_org/v8/src/
utils.cc 119 void StrNCpy(Vector<char> dest, const char* src, size_t n) {
120 base::OS::StrNCpy(dest.start(), dest.length(), src, n);
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 175 /// EmitStrNCpy - Emit a call to the strncpy function to the builder, for the
180 if (!TLI->has(LibFunc::strncpy))
189 Value *StrNCpy = M->getOrInsertFunction(Name,
194 CallInst *CI = B.CreateCall3(StrNCpy, CastToCStr(Dst, B), CastToCStr(Src, B),
195 Len, "strncpy");
196 if (const Function *F = dyn_cast<Function>(StrNCpy->stripPointerCasts()))
SimplifyLibCalls.cpp 744 // strncpy(x, "", y) -> memset(x, '\0', y, 1)
755 if (Len == 0) return Dst; // strncpy(x, y, 0) -> x
760 // Let strncpy handle the zero padding
764 // strncpy(x, s, c) -> memcpy(x, s, c, 1) [s and c are constant]
    [all...]
  /external/chromium_org/v8/src/base/platform/
platform-posix.cc 438 void OS::StrNCpy(char* dest, int length, const char* src, size_t n) {
439 strncpy(dest, src, n);
512 strncpy(name_, name, sizeof(name_));
platform-win32.cc 681 void OS::StrNCpy(char* dest, int length, const char* src, size_t n) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]

Completed in 899 milliseconds