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 358 status_t DisplayListRenderer::drawTextOnPath(const char* text, int bytesCount, int count,
362 text = refText(text, bytesCount);
366 DrawOp* op = new (alloc()) DrawTextOnPathOp(text, bytesCount, count, path,
372 status_t DisplayListRenderer::drawPosText(const char* text, int bytesCount, int count,
376 text = refText(text, bytesCount);
380 DrawOp* op = new (alloc()) DrawPosTextOp(text, bytesCount, count, positions, paint);
395 status_t DisplayListRenderer::drawText(const char* text, int bytesCount, int count,
401 text = refText(text, bytesCount);
414 addDrawOp(new (alloc()) DrawTextOp(text, bytesCount, count,
421 addDrawOp(new (alloc()) DrawTextOp(text, bytesCount, count
    [all...]
Renderer.h 212 virtual status_t drawText(const char* text, int bytesCount, int count, float x, float y,
215 virtual status_t drawTextOnPath(const char* text, int bytesCount, int count, const SkPath* path,
217 virtual status_t drawPosText(const char* text, int bytesCount, int count,
DisplayListRenderer.h 144 virtual status_t drawText(const char* text, int bytesCount, int count, float x, float y,
147 virtual status_t drawTextOnPath(const char* text, int bytesCount, int count, const SkPath* path,
149 virtual status_t drawPosText(const char* text, int bytesCount, int count,
OpenGLRenderer.h 189 virtual status_t drawTextOnPath(const char* text, int bytesCount, int count, const SkPath* path,
191 virtual status_t drawPosText(const char* text, int bytesCount, int count,
193 virtual status_t drawText(const char* text, int bytesCount, int count, float x, float y,
749 * @param bytesCount The number of bytes in the text
762 * @param bytesCount The number of bytes in the text
770 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 608 int bytesCount = glyphsCount * sizeof(jchar);
609 renderer->drawText((const char*) (glyphs + start), bytesCount, glyphsCount,
    [all...]

Completed in 99 milliseconds