Searched defs:pixels (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/av/cmds/screenrecord/
H A DFontBitmap.h10 static const uint8_t pixels[]; member in class:FontBitmap
14 const uint8_t FontBitmap::pixels[] = { member in class:FontBitmap
/frameworks/support/v7/palette/src/android/support/v7/graphics/
H A DColorHistogram.java33 * @param pixels array of image contents
35 ColorHistogram(final int[] pixels) { argument
36 // Sort the pixels to enable counting below
37 Arrays.sort(pixels);
40 mNumberColors = countDistinctColors(pixels);
47 countFrequencies(pixels);
71 private static int countDistinctColors(final int[] pixels) { argument
72 if (pixels.length < 2) {
73 // If we have less than 2 pixels we can stop here
74 return pixels
93 countFrequencies(final int[] pixels) argument
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
H A DThroughput.java30 public Throughput(int totalFrames, int periodFrames, int periodTime, int pixels) { argument
34 mPixels = pixels;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DFaceSquareFilter.java70 byte[] pixels = buffer.array();
74 drawBoxes(pixels, faces, dims);
82 public void drawBoxes(byte[] pixels, Face[] faces, int[] dims) { argument
114 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + left) +
116 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + left) +
118 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + left) +
124 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + right) +
126 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + right) +
128 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + right) +
136 pixels[ImageConstant
[all...]
/frameworks/webview/chromium/plat_support/
H A Dgraphics_utils.cpp72 PixelInfo* pixels = new PixelInfo(canvas); local
73 if (!pixels->state) {
74 delete pixels;
75 pixels = NULL;
77 return pixels;
80 void ReleasePixels(AwPixelInfo* pixels) { argument
81 delete static_cast<PixelInfo*>(pixels);
/frameworks/base/packages/PrintSpooler/jni/
H A Dcom_android_printspooler_util_BitmapSerializeUtils.cpp107 // Lock the pixels.
108 void* pixels; local
109 result = AndroidBitmap_lockPixels(env, jbitmap, &pixels);
111 throwIllegalStateException(env, (char*) "Cannot lock bitmap pixels");
115 // Read the pixels.
117 read = readAllBytes(fd, (void*) pixels, byteCount);
119 throwIllegalStateException(env, (char*) "Cannot read bitmap pixels");
123 // Unlock the pixels.
126 throwIllegalStateException(env, (char*) "Cannot unlock bitmap pixels");
146 // Lock the pixels
147 void* pixels; local
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGLToolbox.java70 public static void readFbo(int fboId, ByteBuffer pixels, int width, int height) { argument
72 GLES20.glReadPixels(0, 0, width, height, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, pixels);
76 public static void readTarget(RenderTarget target, ByteBuffer pixels, int width, int height) { argument
78 GLES20.glReadPixels(0, 0, width, height, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, pixels);
114 public static void setTexturePixels(int texId, int target, ByteBuffer pixels, argument
118 // For some devices, "pixels" being null causes system error.
119 if (pixels == null) {
120 pixels = ByteBuffer.allocateDirect(width * height * 4);
123 GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, pixels);
H A DTextureSource.java69 public void allocateWithPixels(ByteBuffer pixels, int width, int height) { argument
70 //Log.i("TextureSource", "Uploading pixels to texture " + mTexId + ": " + width + "x" + height + ".");
71 GLToolbox.setTexturePixels(mTexId, mTarget, pixels, width, height);
76 //Log.i("TextureSource", "Uploading pixels to texture " + mTexId + "!");
H A DRenderTarget.java265 public void readPixelData(ByteBuffer pixels, int width, int height) { argument
266 GLToolbox.readTarget(this, pixels, width, height);
270 ByteBuffer pixels = ByteBuffer.allocateDirect(width * height * 4);
271 GLToolbox.readTarget(this, pixels, width, height);
272 return pixels;
/frameworks/ex/framesequence/jni/
H A DFrameSequenceJNI.cpp99 void* pixels; local
107 if ((ret = AndroidBitmap_lockPixels(env, bitmap, &pixels)) < 0) {
109 "Bitmap pixels couldn't be locked");
115 (Color8888*) pixels, pixelStride, previousFrameNr);
/frameworks/base/libs/hwui/
H A DGradientCache.cpp244 uint8_t pixels[rowBytes * texture->height]; local
268 uint8_t* dst = pixels;
285 memcpy(pixels + rowBytes, pixels, rowBytes);
294 GL_RGBA, GL_FLOAT, pixels);
297 GL_RGBA, GL_UNSIGNED_BYTE, pixels);
/frameworks/base/media/mca/filterfw/jni/
H A Djni_gl_frame.cpp201 // Read the frame pixels
202 uint8_t* pixels = new uint8_t[frame->Size()]; local
203 frame->CopyDataTo(pixels, frame->Size());
206 ConvertRGBAToFloats(pixels, frame->Size(), float_array);
209 delete[] pixels;
222 uint8_t* pixels; local
223 const int result = AndroidBitmap_lockPixels(env, bitmap, reinterpret_cast<void**>(&pixels));
225 const bool success = frame->WriteData(pixels, size);
238 uint8_t* pixels; local
239 const int result = AndroidBitmap_lockPixels(env, bitmap, reinterpret_cast<void**>(&pixels));
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_frame.cpp347 bool GLFrame::ReadFboPixels(uint8_t* pixels) const {
356 pixels);
362 bool GLFrame::ReadTexturePixels(uint8_t* pixels) const {
363 // Read pixels from texture if we do not have an FBO
388 return target.ReadFboPixels(pixels);
448 bool GLFrame::UploadTexturePixels(const uint8_t* pixels) { argument
454 0, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
/frameworks/base/tests/touchlag/
H A Dtouchlag.cpp46 uint32_t* pixels; member in union:Buffer::__anon1015
51 android_memset32(buf->pixels, pixel, buf->s * buf->h * 4);
56 uint32_t* bits = buf->pixels + y * buf->s;
78 uint32_t* bits = buf->pixels + y * buf->s + x;
97 uint32_t* bits = buf->pixels + y * buf->s + x;
/frameworks/native/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp117 const unsigned int pixels[] = local
131 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 8, 8, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
/frameworks/native/opengl/tests/gl_perf/
H A Dfill_common.cpp125 double pixels = (gWidth * gHeight) * count; local
126 double mpps = pixels / delta / 1000000;
/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp210 const unsigned int pixels[] = local
223 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 8, 8, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
/frameworks/base/core/java/android/hardware/camera2/
H A DDngCreator.java148 * @param pixels a {@link android.graphics.Bitmap} of pixel data.
153 public DngCreator setThumbnail(Bitmap pixels) { argument
154 if (pixels == null) {
158 int width = pixels.getWidth();
159 int height = pixels.getHeight();
167 ByteBuffer rgbBuffer = convertToRGB(pixels);
182 * @param pixels an {@link android.media.Image} object with the format
188 public DngCreator setThumbnail(Image pixels) { argument
189 if (pixels == null) {
193 int format = pixels
296 writeInputStream(OutputStream dngOutput, Size size, InputStream pixels, long offset) argument
348 writeByteBuffer(OutputStream dngOutput, Size size, ByteBuffer pixels, long offset) argument
384 writeImage(OutputStream dngOutput, Image pixels) argument
449 writeByteBuffer(int width, int height, ByteBuffer pixels, OutputStream dngOutput, int pixelStride, int rowStride, long offset) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_legacy_LegacyCameraDevice.cpp151 * width - width of the pixelBuffer in pixels.
152 * height - height of the pixelBuffer in pixels.
559 jbyte* pixels = env->GetByteArrayElements(pixelBuffer, /*is_copy*/NULL); local
561 if (pixels == NULL) {
562 jniThrowNullPointerException(env, "pixels");
566 status_t err = produceFrame(anw, reinterpret_cast<uint8_t*>(pixels), width, height,
568 env->ReleaseByteArrayElements(pixelBuffer, pixels, JNI_ABORT);
H A Dandroid_view_SurfaceControl.cpp178 SkMallocPixelRef* pixels = SkMallocPixelRef::NewWithProc(screenshotInfo, local
182 pixels->setImmutable();
183 bitmap->setPixelRef(pixels)->unref();
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmap_Delegate.java406 /*package*/ static void nativeGetPixels(long nativeBitmap, int[] pixels, int offset, argument
413 delegate.getImage().getRGB(x, y, width, height, pixels, offset, stride);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp249 void RenderEngine::readPixels(size_t l, size_t b, size_t w, size_t h, uint32_t* pixels) { argument
250 glReadPixels(l, b, w, h, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
/frameworks/base/core/java/android/widget/
H A DSpinner.java290 * Set a vertical offset in pixels for the spinner's popup window of choices.
293 * @param pixels Vertical offset in pixels
297 public void setDropDownVerticalOffset(int pixels) { argument
298 mPopup.setVerticalOffset(pixels);
302 * Get the configured vertical offset in pixels for the spinner's popup window of choices.
305 * @return Vertical offset in pixels
314 * Set a horizontal offset in pixels for the spinner's popup window of choices.
317 * @param pixels Horizontal offset in pixels
321 setDropDownHorizontalOffset(int pixels) argument
350 setDropDownWidth(int pixels) argument
[all...]
H A DSwitch.java367 * @param pixels Amount of padding in pixels
371 public void setSwitchPadding(int pixels) { argument
372 mSwitchPadding = pixels;
379 * @return Amount of padding in pixels
388 * Set the minimum width of the switch in pixels. The switch's width will be the maximum
391 * @param pixels Minimum width of the switch in pixels
395 public void setSwitchMinWidth(int pixels) { argument
396 mSwitchMinWidth = pixels;
419 setThumbTextPadding(int pixels) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dtexture.cpp486 uint8_t const* pixels = (uint8_t *)data + paletteSize; local
490 pixels += h * ((w * indexBits) / 8);
501 int index = 2 * (*pixels++);
507 int v = *pixels++;
525 int index = 3 * (*pixels++);
532 int v = *pixels++;
552 int index = 4 * (*pixels++);
560 int v = *pixels++;
1169 GLenum format, GLenum type, const GLvoid *pixels)
1197 if (pixels) {
[all...]

Completed in 1534 milliseconds

12