HomeSort by relevance Sort by last modified time
    Searched refs:bytesCount (Results 1 - 10 of 10) 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 355 status_t DisplayListRenderer::drawTextOnPath(const char* text, int bytesCount, int count,
359 text = refText(text, bytesCount);
363 DrawOp* op = new (alloc()) DrawTextOnPathOp(text, bytesCount, count, path,
369 status_t DisplayListRenderer::drawPosText(const char* text, int bytesCount, int count,
373 text = refText(text, bytesCount);
377 DrawOp* op = new (alloc()) DrawPosTextOp(text, bytesCount, count, positions, paint);
392 status_t DisplayListRenderer::drawText(const char* text, int bytesCount, int count,
398 text = refText(text, bytesCount);
411 addDrawOp(new (alloc()) DrawTextOp(text, bytesCount, count,
418 addDrawOp(new (alloc()) DrawTextOp(text, bytesCount, count
    [all...]
Renderer.h 203 virtual status_t drawText(const char* text, int bytesCount, int count, float x, float y,
206 virtual status_t drawTextOnPath(const char* text, int bytesCount, int count, const SkPath* path,
208 virtual status_t drawPosText(const char* text, int bytesCount, int count,
DisplayListRenderer.h 142 virtual status_t drawText(const char* text, int bytesCount, int count, float x, float y,
145 virtual status_t drawTextOnPath(const char* text, int bytesCount, int count, const SkPath* path,
147 virtual status_t drawPosText(const char* text, int bytesCount, int count,
OpenGLRenderer.h 198 virtual status_t drawTextOnPath(const char* text, int bytesCount, int count, const SkPath* path,
200 virtual status_t drawPosText(const char* text, int bytesCount, int count,
202 virtual status_t drawText(const char* text, int bytesCount, int count, float x, float y,
752 * @param bytesCount The number of bytes in the text
765 * @param bytesCount The number of bytes in the text
773 void drawTextShadow(const SkPaint* paint, const char* text, int bytesCount, int count,
    [all...]
DisplayListOp.h     [all...]
OpenGLRenderer.cpp     [all...]
  /frameworks/base/core/jni/
android_view_TextureView.cpp 159 ssize_t bytesCount = buffer.stride * bytesPerPixel(buffer.format);
162 bitmap.setInfo(convertPixelFormat(buffer), bytesCount);
android_view_GraphicBuffer.cpp 188 ssize_t bytesCount = buffer->getStride() * bytesPerPixel(buffer->getPixelFormat());
194 bytesCount);
android_view_GLES20Canvas.cpp 620 int bytesCount = glyphsCount * sizeof(jchar);
621 renderer->drawText((const char*) (glyphs + start), bytesCount, glyphsCount,
    [all...]

Completed in 342 milliseconds