HomeSort by relevance Sort by last modified time
    Searched refs:memmove (Results 101 - 125 of 895) sorted by null

1 2 3 45 6 7 8 91011>>

  /bionic/libstdc++/include/
cstring 47 using ::memmove;
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.cpp 105 memmove(&fPt[index + 1], &fPt[index], sizeof(fPt[0]) * remaining);
106 memmove(&fPt2[index + 1], &fPt2[index], sizeof(fPt2[0]) * remaining);
107 memmove(&fT[0][index + 1], &fT[0][index], sizeof(fT[0][0]) * remaining);
108 memmove(&fT[1][index + 1], &fT[1][index], sizeof(fT[1][0]) * remaining);
170 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining);
171 memmove(&fPt2[index], &fPt2[index + 1], sizeof(fPt2[0]) * remaining);
172 memmove(&fT[0][index], &fT[0][index + 1], sizeof(fT[0][0]) * remaining);
173 memmove(&fT[1][index], &fT[1][index + 1], sizeof(fT[1][0]) * remaining);
  /external/clang/test/Analysis/
bstring.c 273 // memmove()
281 #define memmove(a,b,c) __memmove_chk(a,b,c,(size_t)-1) macro
285 #define memmove BUILTIN(memmove) macro
286 void *memmove(void *s1, const void *s2, size_t n);
295 memmove(dst, src, 4); // no-warning
297 clang_analyzer_eval(memmove(dst, src, 4) == dst); // expected-warning{{TRUE}}
308 memmove(dst, src, 5); // expected-warning{{out-of-bound}}
315 memmove(dst, src, 4); // expected-warning{{overflow}}
  /external/lzma/CPP/Common/
Buffer.h 36 memmove(newBuffer, _items, MyMin(_capacity, newCapacity) * sizeof(T));
50 memmove(_items, buffer._items, buffer._capacity * sizeof(T));
DynamicBuffer.h 35 memmove(this->_items, buffer._items, buffer._capacity * sizeof(T));
  /external/skia/src/pathops/
SkIntersections.cpp 105 memmove(&fPt[index + 1], &fPt[index], sizeof(fPt[0]) * remaining);
106 memmove(&fPt2[index + 1], &fPt2[index], sizeof(fPt2[0]) * remaining);
107 memmove(&fT[0][index + 1], &fT[0][index], sizeof(fT[0][0]) * remaining);
108 memmove(&fT[1][index + 1], &fT[1][index], sizeof(fT[1][0]) * remaining);
170 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining);
171 memmove(&fPt2[index], &fPt2[index + 1], sizeof(fPt2[0]) * remaining);
172 memmove(&fT[0][index], &fT[0][index + 1], sizeof(fT[0][0]) * remaining);
173 memmove(&fT[1][index], &fT[1][index + 1], sizeof(fT[1][0]) * remaining);
  /ndk/sources/cxx-stl/gabi++/include/
cstring 47 using ::memmove;
  /ndk/sources/cxx-stl/system/include/
cstring 47 using ::memmove;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cstring 45 using ::memmove;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cstring 45 using ::memmove;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cstring 47 using ::memmove;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cstring 47 using ::memmove;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cstring 47 using ::memmove;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cstring 47 using ::memmove;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cstring 47 using ::memmove;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cstring 47 using ::memmove;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cstring 47 using ::memmove;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cstring 47 using ::memmove;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cstring 47 using ::memmove;
  /external/clang/lib/Sema/
TypeLocBuilder.cpp 100 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
111 memmove(&Buffer[Index + 4], &Buffer[Index], NumBytesAtAlign4);
120 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
  /external/clang/test/SemaCXX/
warn-bad-memaccess.cpp 4 extern "C" void *memmove(void *s1, const void *s2, unsigned n);
40 memmove(&x1, 0, sizeof x1); // \
41 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'X1'; vtable pointer will be overwritten}} \
43 memmove(0, &x1, sizeof x1); // \
44 // expected-warning{{source of this 'memmove' call is a pointer to dynamic class 'X1'; vtable pointer will be moved}} \
  /external/chromium_org/third_party/opus/src/celt/
os_support.h 78 #define OPUS_MOVE(dst, src, n) (memmove((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) ))
  /external/deqp/framework/delibs/debase/
deMemory.h 76 return memmove(dst, src, numBytes);
  /external/libopus/celt/
os_support.h 78 #define OPUS_MOVE(dst, src, n) (memmove((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) ))
  /frameworks/rs/cpu_ref/linkloader/utils/
raw_ostream.cpp 42 memmove(t_format.ptr + fill_len, t_format.ptr, real_len);

Completed in 1994 milliseconds

1 2 3 45 6 7 8 91011>>