HomeSort by relevance Sort by last modified time
    Searched defs:pixels (Results 26 - 50 of 471) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/ImageMagick/coders/
gray.c 107 *pixels;
166 pixels=(const unsigned char *) NULL;
177 pixels=(const unsigned char *) ReadBlobStream(image,length,
189 Read pixels to virtual canvas image then push to image.
201 pixels=(const unsigned char *) ReadBlobStream(image,length,
225 quantum_type,pixels,exception);
254 pixels=(const unsigned char *) ReadBlobStream(image,length,
404 *pixels;
424 Write grayscale pixels.
431 pixels=(unsigned char *) GetQuantumPixels(quantum_info)
104 *pixels; local
398 *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...]
mtv.c 123 *pixels;
170 pixels=(unsigned char *) AcquireQuantumMemory(image->columns,
171 3UL*sizeof(*pixels));
172 if (pixels == (unsigned char *) NULL)
176 count=(ssize_t) ReadBlob(image,(size_t) (3*image->columns),pixels);
179 p=pixels;
201 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
354 *pixels;
374 Allocate memory for pixels
120 *pixels; local
348 *pixels; local
    [all...]
raw.c 103 *pixels;
161 pixels=(const unsigned char *) NULL;
172 pixels=(const unsigned char *) ReadBlobStream(image,length,
184 Read pixels to virtual canvas image then push to image.
195 pixels=(const unsigned char *) ReadBlobStream(image,length,
219 quantum_type,pixels,exception);
249 pixels=(const unsigned char *) ReadBlobStream(image,length,
465 *pixels;
561 Convert image to RAW raster pixels.
566 pixels=(unsigned char *) GetQuantumPixels(quantum_info)
100 *pixels; local
459 *pixels; local
    [all...]
rgb.c 106 *pixels;
182 pixels=(const unsigned char *) NULL;
193 pixels=(const unsigned char *) ReadBlobStream(image,length,
205 Read pixels to virtual canvas image then push to image.
224 pixels=(const unsigned char *) ReadBlobStream(image,length,
249 quantum_info,quantum_type,pixels,exception);
282 pixels=(const unsigned char *) ReadBlobStream(image,length,
306 pixels=(const unsigned char *) ReadBlobStream(image,length,
334 quantum_info,quantum_type,pixels,exception);
384 pixels=(const unsigned char *) ReadBlobStream(image,length
103 *pixels; local
1116 *pixels; local
    [all...]
ycbcr.c 106 *pixels;
186 pixels=(const unsigned char *) NULL;
197 pixels=(const unsigned char *) ReadBlobStream(image,length,
209 Read pixels to virtual canvas image then push to image.
229 pixels=(const unsigned char *) ReadBlobStream(image,length,
245 quantum_info,quantum_type,pixels,exception);
278 pixels=(const unsigned char *) ReadBlobStream(image,length,
300 pixels=(const unsigned char *) ReadBlobStream(image,length,
319 quantum_info,quantum_type,pixels,exception);
365 pixels=(const unsigned char *) ReadBlobStream(image,length
103 *pixels; local
1020 *pixels; local
    [all...]
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...]
vicar.c 157 *pixels;
299 Read VICAR pixels.
312 pixels=(const unsigned char *) ReadBlobStream(image,length,
317 quantum_type,pixels,exception);
456 *pixels;
484 Write VICAR pixels.
490 pixels=(unsigned char *) GetQuantumPixels(quantum_info);
497 GrayQuantum,pixels,exception);
498 count=WriteBlob(image,length,pixels);
153 *pixels; local
449 *pixels; local
  /external/ImageMagick/www/source/
mgk.c 163 *pixels;
211 pixels=(unsigned char *) AcquireQuantumMemory((size_t) image->columns,
212 3UL*sizeof(*pixels));
213 if (pixels == (unsigned char *) NULL)
217 count=(ssize_t) ReadBlob(image,(size_t) (3*image->columns),pixels);
220 p=pixels;
237 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
394 *pixels;
412 Allocate memory for pixels
159 *pixels; local
387 *pixels; local
    [all...]
  /external/skia/gm/
bitmapshader.cpp 123 uint8_t* pixels = new uint8_t[bitmapH]; local
125 pixels[i] = i & 0xff;
127 bitmap.setPixels(pixels);
134 delete [] pixels;
clippedbitmapshaders.cpp 31 uint32_t* pixels = reinterpret_cast<uint32_t*>(bmp.getPixels()); local
32 pixels[0] = SkPreMultiplyColor(SK_ColorRED);
33 pixels[1] = SkPreMultiplyColor(SK_ColorGREEN);
34 pixels[2] = SkPreMultiplyColor(SK_ColorBLACK);
35 pixels[3] = SkPreMultiplyColor(SK_ColorBLUE);
gamma.cpp 27 SkPMColor* pixels = reinterpret_cast<SkPMColor*>(ditherBmp.getPixels()); local
28 pixels[0] = pixels[3] = SkPackARGB32(0xFF, 0xFF, 0xFF, 0xFF);
29 pixels[1] = pixels[2] = SkPackARGB32(0xFF, 0, 0, 0);
gammaencodedpremul.cpp 15 static void clamp_to_alpha(uint32_t* pixels, int count) {
17 uint8_t a = SkGetPackedA32(pixels[i]);
18 uint8_t r = SkGetPackedR32(pixels[i]);
19 uint8_t g = SkGetPackedG32(pixels[i]);
20 uint8_t b = SkGetPackedB32(pixels[i]);
21 pixels[i] = SkPackARGB32(a,
68 uint32_t* pixels = bitmap.getAddr32(0, 0); variable
79 fXform->apply(select_xform_format(kN32_SkColorType), pixels, variable
82 SkOpts::RGBA_to_rgbA(pixels, pixels, kAlphaMax)
92 fXform->apply(select_xform_format(kN32_SkColorType), pixels, variable
93 SkColorSpaceXform::kBGRA_8888_ColorFormat, pixels, kAlphaMax, variable
    [all...]
pathopsinverse.cpp 44 void* pixels = temp.getPixels(); local
45 return *(SkColor*) pixels;
rectangletexture.cpp 40 void fillPixels(int width, int height, void *pixels) {
43 bmp.setPixels(pixels);
61 void* pixels) {
79 // We will always create the GL texture as GL_RGBA, however the pixels uploaded may be
105 format, GR_GL_UNSIGNED_BYTE, pixels));
136 SkPMColor pixels[kWidth * kHeight]; variable
137 this->fillPixels(kWidth, kHeight, pixels);
138 sk_sp<SkImage> rectImg(this->createRectangleTextureImg(context, kWidth, kHeight, pixels));
xfermodes2.cpp 105 SkPMColor* pixels = reinterpret_cast<SkPMColor*>(srcBmp.getPixels()); variable
111 pixels[kSize * y + x] = rowColor;
118 pixels = reinterpret_cast<SkPMColor*>(dstBmp.getPixels());
124 pixels[kSize * y + x] = colColor;
  /external/skia/tests/
PremulAlphaRoundTripTest.cpp 48 // Don't strictly need a bitmap, but its a handy way to allocate the pixels
53 uint32_t* pixels = bmp.getAddr32(0, a); local
55 pixels[r] = proc(SkColorSetARGB(a, r, 0, 0));
  /external/skia/tools/sk_app/win/
RasterWindowContext_win.cpp 68 void* pixels = bmpInfo->bmiColors; local
72 fBackbufferSurface = SkSurface::MakeRasterDirect(info, pixels, sizeof(uint32_t) * w);
  /external/skqp/gm/
bitmapshader.cpp 123 uint8_t* pixels = new uint8_t[bitmapH]; local
125 pixels[i] = i & 0xff;
127 bitmap.setPixels(pixels);
134 delete [] pixels;
clippedbitmapshaders.cpp 31 uint32_t* pixels = reinterpret_cast<uint32_t*>(bmp.getPixels()); local
32 pixels[0] = SkPreMultiplyColor(SK_ColorRED);
33 pixels[1] = SkPreMultiplyColor(SK_ColorGREEN);
34 pixels[2] = SkPreMultiplyColor(SK_ColorBLACK);
35 pixels[3] = SkPreMultiplyColor(SK_ColorBLUE);
  /external/skqp/tools/sk_app/win/
RasterWindowContext_win.cpp 68 void* pixels = bmpInfo->bmiColors; local
72 fBackbufferSurface = SkSurface::MakeRasterDirect(info, pixels, sizeof(uint32_t) * w);
  /external/wayland/cursor/
xcursor.h 43 XcursorPixel *pixels; /* pointer to pixels */ member in struct:_XcursorImage
  /external/deqp/framework/delibs/deimage/
deTarga.c 86 deARGB* dst = (deUint32*)((deUint8*)image->pixels + dstY*image->width*bpp);
156 /* Store pixels. */
158 const deUint32* pixels = image->pixels; local
163 deUint32 c = pixels[ndx];
  /external/skia/include/core/
SkPixelRef.h 39 void* pixels() const { return fPixels; } function in class:SkPixelRef
42 /** Returns a non-zero, unique value corresponding to the pixels in this
43 pixelref. Each time the pixels are changed (and notifyPixelsChanged is
50 Unlike the generation ID, this ID remains the same even when the pixels
55 regardless of changes to its pixels or deletion of this object.
61 * Call this if you have changed the contents of the pixels. This will in-
68 contents of its pixels will not change for the lifetime of the pixelref.
73 pixels will not change for the lifetime of the pixelref. This state can
124 // Set true by caches when they cache content that's derived from the current pixels.
  /external/skia/src/android/
SkBitmapRegionCodec.cpp 31 // If inputX is negative, we will need to place decoded pixels into the
34 // If inputY is negative, we will need to place decoded pixels into the
83 SkCodecPrintf("Error: Could not allocate pixels.\n");
90 // pixels?
95 void* pixels = bitmap->getPixels(); local
97 memset(pixels, 0, bytes);
110 SkCodecPrintf("Error: Could not get pixels.\n");

Completed in 563 milliseconds

12 3 4 5 6 7 8 91011>>