HomeSort by relevance Sort by last modified time
    Searched refs:pixels (Results 51 - 75 of 993) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skqp/tools/skqp/
gm_knowledge.h 33 uint32_t* get_pixel_addr(uint32_t* pixels, int width, int height, int x, int y) {
36 return &pixels[x + (width * y)];
39 @param pixels, width, height the image
50 float Check(const uint32_t* pixels,
  /external/ImageMagick/coders/
flif.c 145 *pixels;
182 pixels=(unsigned short *) AcquireMagickMemory(length);
183 if (pixels == (unsigned short *) NULL)
201 pixels=(unsigned short *) RelinquishMagickMemory(pixels);
218 flif_image_read_row_RGBA16(flifimage,y,pixels,length);
219 p=pixels;
240 pixels=(unsigned short *) RelinquishMagickMemory(pixels);
424 *pixels;
142 *pixels; local
419 *pixels; local
    [all...]
map.c 137 *pixels;
168 pixels=(unsigned char *) AcquireQuantumMemory(image->columns,packet_size*
169 sizeof(*pixels));
173 if ((pixels == (unsigned char *) NULL) ||
213 Read image pixels.
218 p=pixels;
222 count=ReadBlob(image,(size_t) packet_size*image->columns,pixels);
242 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
369 *pixels;
134 *pixels; local
363 *pixels; local
    [all...]
avs.c 128 *pixels;
170 pixel_info=AcquireVirtualMemory(image->columns,4*sizeof(*pixels));
173 pixels=(unsigned char *) GetVirtualMemoryBlob(pixel_info);
177 count=ReadBlob(image,length,pixels);
180 p=pixels;
355 *pixels;
381 Allocate memory for pixels.
383 pixel_info=AcquireVirtualMemory(image->columns,4*sizeof(*pixels));
386 pixels=(unsigned char *) GetVirtualMemoryBlob(pixel_info);
388 Convert MIFF to AVS raster pixels
125 *pixels; local
349 *pixels; local
    [all...]
  /external/skia/include/codec/
SkAndroidCodec.h 228 * Decode into the given pixels, a block of memory of size at
257 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
264 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes);
266 SkCodec::Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
267 return this->getAndroidPixels(info, pixels, rowBytes);
279 virtual SkCodec::Result onGetAndroidPixels(const SkImageInfo& info, void* pixels,
  /external/skqp/include/codec/
SkAndroidCodec.h 228 * Decode into the given pixels, a block of memory of size at
257 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
264 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes);
266 SkCodec::Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
267 return this->getAndroidPixels(info, pixels, rowBytes);
279 virtual SkCodec::Result onGetAndroidPixels(const SkImageInfo& info, void* pixels,
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilter.java 70 byte[] pixels = buffer.array();
74 drawBoxes(pixels, faces, dims);
82 public void drawBoxes(byte[] pixels, Face[] faces, int[] dims) {
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[ImageConstants.PIX_CHANNELS * (dims[0] * top + left + k)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilterTest.java 79 int[] pixels = new int[bitmap.getByteCount()]; local
80 bitmap.getPixels(pixels, 0, bitmap.getWidth(), 0, 0, bitmap.getWidth(),
116 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + left) +
118 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + left) +
120 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + left) +
126 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + right) +
128 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + right) +
130 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + right) +
138 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * top + left + k) +
140 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * top + left + k)
    [all...]
  /external/deqp/external/openglcts/modules/gles32/
es32cRobustBufferAccessBehaviorTests.cpp 128 GLubyte pixels[buf_size]; local
129 deMemset(pixels, 0, buf_size);
133 Texture::GetData(gl, texture_id, 0 /* level */, width, height, GL_RGBA_INTEGER, GL_UNSIGNED_INT, pixels);
141 if (1 != pixels[i])
143 m_context.getTestContext().getLog() << tcu::TestLog::Message << "Invalid value: " << (GLuint)pixels[i]
510 std::vector<GLubyte> pixels; local
511 pixels.resize(n_pixels * n_channels);
514 pixels[i] = (GLubyte)i;
517 Texture::GetData(gl, texture_id, 0 /* level */, width, height, GL_RGBA, GL_UNSIGNED_BYTE, &pixels[0]);
526 const GLubyte drawn_red = pixels[i * n_channels]
545 std::vector<GLubyte> pixels; local
584 std::vector<GLfloat> pixels; local
631 std::vector<GLuint> pixels; local
711 std::vector<GLuint> pixels; local
1054 std::vector<GLfloat> pixels; local
1101 std::vector<GLuint> pixels; local
    [all...]
  /external/skia/src/codec/
SkSampledCodec.cpp 73 SkCodec::Result SkSampledCodec::onGetAndroidPixels(const SkImageInfo& info, void* pixels,
83 return this->codec()->getPixels(info, pixels, rowBytes, &codecOptions);
87 return this->sampledDecode(info, pixels, rowBytes, options);
95 return this->sampledDecode(info, pixels, rowBytes, options);
114 scaledInfo, pixels, rowBytes, &codecOptions);
124 this->codec()->fillIncompleteImage(scaledInfo, pixels, rowBytes,
152 this->codec()->fillIncompleteImage(info, pixels, rowBytes, options.fZeroInitialized,
157 int decodedLines = this->codec()->getScanlines(pixels, scaledSubsetHeight, rowBytes);
165 SkCodec::Result SkSampledCodec::sampledDecode(const SkImageInfo& info, void* pixels,
231 pixels, rowBytes, &incrementalOptions)
    [all...]
SkWebpAdapterCodec.cpp 25 SkCodec::Result SkWebpAdapterCodec::onGetAndroidPixels(const SkImageInfo& info, void* pixels,
31 return this->codec()->getPixels(info, pixels, rowBytes, &codecOptions);
  /external/skqp/src/codec/
SkSampledCodec.cpp 73 SkCodec::Result SkSampledCodec::onGetAndroidPixels(const SkImageInfo& info, void* pixels,
83 return this->codec()->getPixels(info, pixels, rowBytes, &codecOptions);
87 return this->sampledDecode(info, pixels, rowBytes, options);
95 return this->sampledDecode(info, pixels, rowBytes, options);
114 scaledInfo, pixels, rowBytes, &codecOptions);
124 this->codec()->fillIncompleteImage(scaledInfo, pixels, rowBytes,
152 this->codec()->fillIncompleteImage(info, pixels, rowBytes, options.fZeroInitialized,
157 int decodedLines = this->codec()->getScanlines(pixels, scaledSubsetHeight, rowBytes);
165 SkCodec::Result SkSampledCodec::sampledDecode(const SkImageInfo& info, void* pixels,
231 pixels, rowBytes, &incrementalOptions)
    [all...]
SkWebpAdapterCodec.cpp 25 SkCodec::Result SkWebpAdapterCodec::onGetAndroidPixels(const SkImageInfo& info, void* pixels,
31 return this->codec()->getPixels(info, pixels, rowBytes, &codecOptions);
  /external/deqp/framework/delibs/deimage/
deImage.c 41 return (void*)((deUint8*)image->pixels + offset);
54 image->pixels = deMalloc(width * height * bpp);
55 if (!image->pixels)
60 memset(image->pixels, 0, width * height * bpp);
67 deFree(image->pixels);
105 memcpy(converted->pixels, image->pixels, width * height * deImageFormat_getBytesPerPixel(format));
161 void deImage_copyToUint8RGBA (const deImage* image, deUint8* pixels)
172 pixels[4*ndx+0] = (deUint8)deARGB_getRed(pixel);
173 pixels[4*ndx+1] = (deUint8)deARGB_getGreen(pixel)
    [all...]
deImage.h 42 void* pixels; member in struct:deImage_s
60 void deImage_copyToUint8RGBA (const deImage* image, deUint8* pixels);
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_pixel_read.c 71 GLvoid * pixels,
98 pixels == NULL ||
172 pixels += (ptrdiff_t) (height - 1) * dst_pitch;
190 pixels - (ptrdiff_t) yoffset * dst_pitch - (ptrdiff_t) xoffset * cpp,
206 const struct gl_pixelstore_attrib *pack, GLvoid * pixels)
217 format, type, pixels, pack)) {
245 /* Reading pixels wont dirty the front buffer, so reset the dirty
252 format, type, pixels, pack);
264 _mesa_readpixels(ctx, x, y, width, height, format, type, pack, pixels);
  /external/pdfium/core/fpdfapi/page/
cpdf_devicecs.cpp 39 void ReverseRGB(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels) {
41 for (int i = 0; i < pixels; i++) {
48 for (int i = 0; i < pixels; i++) {
106 int pixels,
112 for (int i = 0; i < pixels; i++) {
119 ReverseRGB(pDestBuf, pSrcBuf, pixels);
123 for (int i = 0; i < pixels; i++) {
132 for (int i = 0; i < pixels; i++) {
cpdf_devicecs.h 26 int pixels,
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GLToolbox.java 70 public static void readFbo(int fboId, ByteBuffer pixels, int width, int height) {
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) {
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,
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);
  /external/skia/include/c/
sk_image.h 19 * Return a new image that has made a copy of the provided pixels, or NULL on failure.
22 SK_API sk_image_t* sk_image_new_raster_copy(const sk_imageinfo_t*, const void* pixels, size_t rowBytes);
34 * Encode the image's pixels and return the result as a new PNG in a
  /external/skia/src/ports/
SkImageGeneratorWIC.h 44 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options&)
  /external/skqp/include/c/
sk_image.h 19 * Return a new image that has made a copy of the provided pixels, or NULL on failure.
22 SK_API sk_image_t* sk_image_new_raster_copy(const sk_imageinfo_t*, const void* pixels, size_t rowBytes);
34 * Encode the image's pixels and return the result as a new PNG in a
  /external/skqp/src/ports/
SkImageGeneratorWIC.h 44 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options&)
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
Mosaic.java 28 * while ((pixels = hasNextImage()) != null) {
29 * mosaic.setSourceImage(pixels);
102 * @param width width of the input frames in pixels
103 * @param height height of the input frames in pixels
118 * @param pixels source image of NV21 format.
125 public native float[] setSourceImage(byte[] pixels);
  /external/mesa3d/src/mesa/main/
readpix.h 59 GLvoid *pixels);
63 GLenum format, GLenum type, GLvoid *pixels );
68 GLvoid *pixels );

Completed in 998 milliseconds

1 23 4 5 6 7 8 91011>>