OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bytescount
(Results
1 - 9
of
9
) 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/libs/hwui/
DisplayListRenderer.cpp
395
status_t DisplayListRenderer::drawTextOnPath(const char* text, int
bytesCount
, int count,
399
text = refText(text,
bytesCount
);
403
DrawOp* op = new (alloc()) DrawTextOnPathOp(text,
bytesCount
, count, path,
409
status_t DisplayListRenderer::drawPosText(const char* text, int
bytesCount
, int count,
413
text = refText(text,
bytesCount
);
417
DrawOp* op = new (alloc()) DrawPosTextOp(text,
bytesCount
, count, positions, paint);
422
status_t DisplayListRenderer::drawText(const char* text, int
bytesCount
, int count,
428
text = refText(text,
bytesCount
);
432
DrawOp* op = new (alloc()) DrawTextOp(text,
bytesCount
, count,
DisplayListRenderer.h
119
virtual status_t drawTextOnPath(const char* text, int
bytesCount
, int count, SkPath* path,
121
virtual status_t drawPosText(const char* text, int
bytesCount
, int count,
123
virtual status_t drawText(const char* text, int
bytesCount
, int count, float x, float y,
DisplayListOp.h
[
all
...]
OpenGLRenderer.h
313
virtual status_t drawTextOnPath(const char* text, int
bytesCount
, int count, SkPath* path,
315
virtual status_t drawPosText(const char* text, int
bytesCount
, int count,
317
virtual status_t drawText(const char* text, int
bytesCount
, int count, float x, float y,
865
* @param
bytesCount
The number of bytes in the tex
[
all
...]
OpenGLRenderer.cpp
[
all
...]
/frameworks/base/core/jni/
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
...]
android_view_GraphicBuffer.cpp
190
ssize_t
bytesCount
= buffer->getStride() * bytesPerPixel(buffer->getPixelFormat());
194
buffer->getWidth(), buffer->getHeight(),
bytesCount
);
Completed in 1707 milliseconds