OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bytesCount
(Results
1 - 4
of
4
) sorted by null
/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_GraphicBuffer.cpp
190
ssize_t
bytesCount
= buffer->getStride() * bytesPerPixel(buffer->getPixelFormat());
194
buffer->getWidth(), buffer->getHeight(),
bytesCount
);
android_view_TextureView.cpp
154
ssize_t
bytesCount
= buffer.stride * bytesPerPixel(buffer.format);
157
bitmap.setConfig(convertPixelFormat(buffer.format), buffer.width, buffer.height,
bytesCount
);
android_view_GLES20Canvas.cpp
615
int
bytesCount
= glyphsCount * sizeof(jchar);
620
renderer->drawText((const char*) glyphs,
bytesCount
, glyphsCount,
633
int
bytesCount
= glyphsCount * sizeof(jchar);
634
renderer->drawTextOnPath((const char*) glyphs,
bytesCount
, glyphsCount, path,
651
int
bytesCount
= glyphsCount * sizeof(jchar);
656
renderer->drawText((const char*) glyphs,
bytesCount
, glyphsCount,
726
int
bytesCount
= glyphsCount * sizeof(jchar);
728
renderer->drawPosText((const char*) glyphs,
bytesCount
, glyphsCount, positions, paint);
[
all
...]
Completed in 645 milliseconds