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

  /external/webkit/WebCore/platform/graphics/wince/
ImageBufferWince.cpp 123 const unsigned char* dstEnd = dst + sourceRect.height() * imageData->width() * 4;
124 while (dst < dstEnd) {
181 const unsigned char* dstEnd = dst + destRect.height() * bitmap->width() * 4;
182 while (dst < dstEnd) {
  /external/webkit/JavaScriptCore/wtf/
Vector.h 141 T* dstEnd = dst + (srcEnd - src);
144 --dstEnd;
145 new (dstEnd) T(*srcEnd);
196 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
198 while (dst != dstEnd) {
208 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
211 memset(dst, val, dstEnd - dst);
267 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
269 VectorFiller<VectorTraits<T>::canFillWithMemset, T>::uninitializedFill(dst, dstEnd, val);
  /frameworks/base/libs/utils/
String16.cpp 219 const char16_t* const dstEnd = dst + dstLen;
220 while (src < end && dst < dstEnd) {
237 if (dst < dstEnd) {
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java     [all...]

Completed in 35 milliseconds