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

  /external/webkit/Tools/DumpRenderTree/cf/
WebArchiveDumpSupport.cpp 162 CFIndex bytesCount = CFDataGetLength(webArchiveData);
163 RetainPtr<CFReadStreamRef> readStream(AdoptCF, CFReadStreamCreateWithBytesNoCopy(kCFAllocatorDefault, CFDataGetBytePtr(webArchiveData), bytesCount, kCFAllocatorNull));
165 RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, (CFMutableDictionaryRef)CFPropertyListCreateFromStream(kCFAllocatorDefault, readStream.get(), bytesCount, kCFPropertyListMutableContainersAndLeaves, &format, 0));
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
InterruptableOutputStream.java 47 int bytesCount = Math.min(MAX_WRITE_BYTES, end - offset);
48 mOutputStream.write(buffer, offset, bytesCount);
49 offset += bytesCount;
  /frameworks/base/core/jni/
android_view_TextureView.cpp 159 ssize_t bytesCount = buffer.stride * bytesPerPixel(buffer.format);
162 bitmap.setConfig(convertPixelFormat(buffer.format), buffer.width, buffer.height, bytesCount);
android_view_GLES20Canvas.cpp 581 int bytesCount = glyphsCount * sizeof(jchar);
582 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount, x, y,
595 int bytesCount = glyphsCount * sizeof(jchar);
596 renderer->drawTextOnPath((const char*) glyphs, bytesCount, glyphsCount, path,
612 int bytesCount = glyphsCount * sizeof(jchar);
613 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount, x, y,
683 int bytesCount = glyphsCount * sizeof(jchar);
685 renderer->drawPosText((const char*) glyphs, bytesCount, glyphsCount, positions, paint);
    [all...]

Completed in 191 milliseconds