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

  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 133 /// EmitStrNCpy - Emit a call to the strncpy function to the builder, for the
137 if (!TLI->has(LibFunc::strncpy))
146 Value *StrNCpy = M->getOrInsertFunction(Name,
152 StrNCpy, {CastToCStr(Dst, B), CastToCStr(Src, B), Len}, "strncpy");
153 if (const Function *F = dyn_cast<Function>(StrNCpy->stripPointerCasts()))
  /external/v8/src/
utils.cc 144 void StrNCpy(Vector<char> dest, const char* src, size_t n) {
145 base::OS::StrNCpy(dest.start(), dest.length(), src, n);
  /external/v8/src/base/platform/
platform-posix.cc 532 void OS::StrNCpy(char* dest, int length, const char* src, size_t n) {
533 strncpy(dest, src, n);
606 strncpy(name_, name, sizeof(name_));
platform-win32.cc 675 void OS::StrNCpy(char* dest, int length, const char* src, size_t n) {
    [all...]
  /external/google-breakpad/src/testing/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/protobuf/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shlwapi.h 218 #define StrNCpy StrCpyN
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/opencv3/modules/ts/include/opencv2/ts/
ts_gtest.h     [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest.h     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]

Completed in 1800 milliseconds