HomeSort by relevance Sort by last modified time
    Searched full:dstend (Results 1 - 7 of 7) 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) {
  /system/core/run-as/
package.c 57 const char* dstend = dst + dstlen; local
62 dstend--; /* make room for terminating zero */
64 while (dst < dstend && src < srcend && *src != '\0')
  /frameworks/base/cmds/installd/
commands.c 707 int dstend = strlen(dstpath); local
753 if ((dstend+strlen(name)) >= (PKG_PATH_MAX-2)) {
758 srcpath[srcend] = dstpath[dstend] = '/';
760 strcpy(dstpath+dstend+1, name);
770 srcpath[srcend] = dstpath[dstend] = 0;
    [all...]
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java     [all...]
  /prebuilt/sdk/tools/linux/
aapt 

Completed in 410 milliseconds