HomeSort by relevance Sort by last modified time
    Searched refs:dstEnd (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 128 T* dstEnd = dst + (srcEnd - src);
131 --dstEnd;
132 new (NotNull, dstEnd) T(*srcEnd);
197 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
199 while (dst != dstEnd) {
209 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
213 if (!__builtin_constant_p(dstEnd - dst) || (!(dstEnd - dst)))
215 memset(dst, val, dstEnd - dst);
275 static void uninitializedFill(T* dst, T* dstEnd, const T& val
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java     [all...]
  /frameworks/base/libs/hwui/
FontRenderer.cpp 345 uint8_t* dstEnd = &cacheBuffer[cacheTexture->getOffset(startX, endY - 1)];
351 while (dst < dstEnd) {

Completed in 79 milliseconds