HomeSort by relevance Sort by last modified time
    Searched refs:pixels (Results 101 - 125 of 959) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/ImageMagick/coders/
art.c 104 *pixels;
171 pixels=(const unsigned char *) ReadBlobStream(image,length,
176 GrayQuantum,pixels,exception);
177 pixels=(const unsigned char *) ReadBlobStream(image,(size_t) (-(ssize_t)
304 *pixels;
331 pixels=(unsigned char *) GetQuantumPixels(quantum_info);
338 GrayQuantum,pixels,exception);
339 count=WriteBlob(image,length,pixels);
342 count=WriteBlob(image,(size_t) (-(ssize_t) length) & 0x01,pixels);
101 *pixels; local
298 *pixels; local
bgr.c 107 *pixels;
183 pixels=(const unsigned char *) NULL;
194 pixels=(const unsigned char *) ReadBlobStream(image,length,
206 Read pixels to virtual canvas image then push to image.
225 pixels=(const unsigned char *) ReadBlobStream(image,length,
250 quantum_info,quantum_type,pixels,exception);
284 pixels=(const unsigned char *) ReadBlobStream(image,length,
306 pixels=(const unsigned char *) ReadBlobStream(image,length,
334 quantum_info,quantum_type,pixels,exception);
385 pixels=(const unsigned char *) ReadBlobStream(image,length
104 *pixels; local
1123 *pixels; local
    [all...]
pnm.c 433 Convert PNM pixels to runextent-encoded MIFF packets.
584 *pixels;
601 pixels=(unsigned char *) ReadBlobStream(image,extent,
624 quantum_type,pixels,exception);
657 *pixels;
677 pixels=(unsigned char *) ReadBlobStream(image,extent,
699 p=pixels;
707 quantum_type,pixels,exception);
774 *pixels;
794 pixels=(unsigned char *) ReadBlobStream(image,extent
580 *pixels; local
653 *pixels; local
770 *pixels; local
970 *pixels; local
1292 *pixels; local
1544 *pixels, local
1728 pixels[2048]; local
1780 pixels[2048]; local
1849 pixels[2048]; local
    [all...]
viff.c 253 *pixels;
496 Allocate VIFF pixels.
518 pixels=(unsigned char *) AcquireQuantumMemory(MagickMax(number_pixels,
519 max_packets),bytes_per_pixel*sizeof(*pixels));
520 if (pixels == (unsigned char *) NULL)
522 count=ReadBlob(image,bytes_per_pixel*max_packets,pixels);
531 MSBOrderShort(pixels,bytes_per_pixel*max_packets);
537 MSBOrderLong(pixels,bytes_per_pixel*max_packets);
555 case VFF_TYP_2_BYTE: value=1.0*((short *) pixels)[0]; break;
556 case VFF_TYP_4_BYTE: value=1.0*((int *) pixels)[0]; break
249 *pixels; local
950 *pixels; local
    [all...]
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...]
miff.c 193 static void PushRunlengthPacket(Image *image,const unsigned char *pixels,
199 p=pixels;
469 *pixels;
464 *pixels; local
1968 *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/MagickCore/
quantum.c 12 % MagicCore Methods to Acquire / Destroy Quantum Pixels %
171 quantum_info->pixels=(unsigned char **) AcquireQuantumMemory(
172 quantum_info->number_threads,sizeof(*quantum_info->pixels));
173 if (quantum_info->pixels == (unsigned char **) NULL)
176 (void) ResetMagickMemory(quantum_info->pixels,0,quantum_info->number_threads*
177 sizeof(*quantum_info->pixels));
180 quantum_info->pixels[i]=(unsigned char *) AcquireQuantumMemory(extent+1,
181 sizeof(**quantum_info->pixels));
182 if (quantum_info->pixels[i] == (unsigned char *) NULL)
185 quantum_info->pixels[i]=(unsigned char *) RelinquishMagickMemory
    [all...]
colormap.c 309 *pixels;
320 pixels=(unsigned short *) AcquireQuantumMemory((size_t) image->colors,
321 sizeof(*pixels));
322 if (pixels == (unsigned short *) NULL)
346 pixels[(ssize_t) image->colormap[i].alpha]=(unsigned short) i;
368 index=(Quantum) pixels[(ssize_t) GetPixelIndex(image,q)];
379 pixels=(unsigned short *) RelinquishMagickMemory(pixels);
305 *pixels; local
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglGL20.java 533 public void glReadPixels (int x, int y, int width, int height, int format, int type, Buffer pixels) {
534 if (pixels instanceof ByteBuffer)
535 GL11.glReadPixels(x, y, width, height, format, type, (ByteBuffer)pixels);
536 else if (pixels instanceof ShortBuffer)
537 GL11.glReadPixels(x, y, width, height, format, type, (ShortBuffer)pixels);
538 else if (pixels instanceof IntBuffer)
539 GL11.glReadPixels(x, y, width, height, format, type, (IntBuffer)pixels);
540 else if (pixels instanceof FloatBuffer)
541 GL11.glReadPixels(x, y, width, height, format, type, (FloatBuffer)pixels);
543 throw new GdxRuntimeException("Can't use " + pixels.getClass().getName()
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3GL20.java 527 public void glReadPixels (int x, int y, int width, int height, int format, int type, Buffer pixels) {
528 if (pixels instanceof ByteBuffer)
529 GL11.glReadPixels(x, y, width, height, format, type, (ByteBuffer)pixels);
530 else if (pixels instanceof ShortBuffer)
531 GL11.glReadPixels(x, y, width, height, format, type, (ShortBuffer)pixels);
532 else if (pixels instanceof IntBuffer)
533 GL11.glReadPixels(x, y, width, height, format, type, (IntBuffer)pixels);
534 else if (pixels instanceof FloatBuffer)
535 GL11.glReadPixels(x, y, width, height, format, type, (FloatBuffer)pixels);
537 throw new GdxRuntimeException("Can't use " + pixels.getClass().getName()
    [all...]
  /external/ImageMagick/www/api/
cipher.php 9 <title>ImageMagick: MagickCore, C API for ImageMagick: Convert to and from Cipher Pixels</title>
15 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, convert, to, from, cipher, pixels, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
122 <p>PasskeyDecipherImage() converts cipher pixels to plain pixels.</p>
145 <dd>decipher cipher pixels with this passphrase. </dd>
149 <dd>decrypt cipher pixels with this passkey. </dd>
159 <p>PasskeyEncipherImage() converts pixels to cipher-pixels.</p>
182 <dd>encipher pixels with this passphrase. </dd>
186 <dd>decrypt cipher pixels with this passkey. </dd
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
bitmaptools.cc 71 Bitmap() : pixels(NULL) {}
74 if (pixels)
75 delete[] pixels;
79 // bpp, width, height, box, pixels
111 pixels = new unsigned char[size];
112 if (fread(pixels, sizeof(pixels[0]), size, stdin) <
114 fprintf(stderr, "Not enough pixels found,\n");
120 data = pixels + box.top * row_stride + box.left * pixel_stride;
139 unsigned char* pixels; member in struct:Bitmap
    [all...]
  /external/mesa3d/src/glx/apple/
apple_xgl_api.h 33 GLenum format, GLenum type, void *pixels);
  /external/mesa3d/src/mesa/main/
pbo.c 333 GLenum format, GLenum type, const GLvoid *pixels,
341 return pixels;
344 format, type, INT_MAX, pixels)) {
358 return ADD_POINTERS(buf, pixels);
371 GLsizei imageSize, const GLvoid *pixels,
379 return pixels;
381 if ((const GLubyte *) pixels + imageSize >
397 return ADD_POINTERS(buf, pixels);
texgetimage.c 72 * glGetTexImage for depth/Z pixels.
76 GLenum format, GLenum type, GLvoid *pixels,
101 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
122 * glGetTexImage for depth/stencil pixels.
126 GLenum format, GLenum type, GLvoid *pixels,
146 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
167 * glGetTexImage for YCbCr pixels.
171 GLenum format, GLenum type, GLvoid *pixels,
191 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
224 GLenum format, GLenum type, GLvoid *pixels,
    [all...]
readpix.c 57 GLenum type, GLvoid *pixels,
87 dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height,
107 * Read pixels for format=GL_DEPTH_COMPONENT.
113 GLenum type, GLvoid *pixels,
132 if (fast_read_depth_pixels(ctx, x, y, width, height, type, pixels, packing))
136 dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height,
169 * Read pixels for format=GL_STENCIL_INDEX.
175 GLenum type, GLvoid *pixels,
202 dest = _mesa_image_address2d(packing, pixels, width, height,
229 GLvoid *pixels,
    [all...]
  /external/skia/debugger/QT/
SkRasterWidget.cpp 53 if (const void* pixels = fSurface->peekPixels(&info, &rowBytes)) {
54 QImage image(reinterpret_cast<const uchar*>(pixels),
  /external/ImageMagick/MagickWand/
pixel-iterator.c 410 % pixels.
503 *pixels;
514 pixels=GetCacheViewVirtualPixels(iterator->view,iterator->region.x,
517 if (pixels == (const Quantum *) NULL)
521 PixelSetQuantumPixel(GetCacheViewImage(iterator->view),pixels,
523 pixels+=GetPixelChannels(GetCacheViewImage(iterator->view));
686 *pixels;
700 pixels=GetCacheViewVirtualPixels(iterator->view,iterator->region.x,
703 if (pixels == (const Quantum *) NULL)
707 PixelSetQuantumPixel(GetCacheViewImage(iterator->view),pixels,
492 *pixels; local
671 *pixels; local
730 *pixels; local
925 *_magickcore_restrict pixels; local
943 iterator->pixel_wands[x],pixels); local
    [all...]
  /external/icu/icu4c/source/layout/
GlyphPositionAdjustments.cpp 92 LEPoint entryAnchor, exitAnchor, pixels; local
120 fontInstance->getGlyphAdvance(glyphID, pixels);
121 fontInstance->pixelsToUnits(pixels, secondAdvance);
127 fontInstance->getGlyphAdvance(lastExitGlyphID, pixels);
128 fontInstance->pixelsToUnits(pixels, firstAdvance);
  /external/skia/src/codec/
SkAndroidCodec.cpp 164 SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& info, void* pixels,
166 if (!pixels) {
191 return this->onGetAndroidPixels(info, pixels, rowBytes, *options);
194 SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& info, void* pixels,
196 return this->getAndroidPixels(info, pixels, rowBytes, nullptr);
  /prebuilts/misc/windows/sdl2/test/
testscale.c 58 SDL_SetColorKey(temp, SDL_TRUE, *(Uint8 *) temp->pixels);
63 (*(Uint16 *) temp->pixels) & 0x00007FFF);
66 SDL_SetColorKey(temp, SDL_TRUE, *(Uint16 *) temp->pixels);
70 (*(Uint32 *) temp->pixels) & 0x00FFFFFF);
73 SDL_SetColorKey(temp, SDL_TRUE, *(Uint32 *) temp->pixels);
testspriteminimal.c 53 SDL_SetColorKey(temp, SDL_TRUE, *(Uint8 *) temp->pixels);
58 (*(Uint16 *) temp->pixels) & 0x00007FFF);
61 SDL_SetColorKey(temp, SDL_TRUE, *(Uint16 *) temp->pixels);
65 (*(Uint32 *) temp->pixels) & 0x00FFFFFF);
68 SDL_SetColorKey(temp, SDL_TRUE, *(Uint32 *) temp->pixels);
  /external/autotest/client/deps/glbench/src/
yuvtest.cc 137 char* pixels = static_cast<char *>(MmapFile(YUV2RGB_NAME, &size)); local
140 const char* u_plane = pixels + luma_size;
141 const char* v_plane = pixels + luma_size + chroma_size;
142 if (!pixels) {
156 0, GL_LUMINANCE, GL_UNSIGNED_BYTE, pixels);
167 0, GL_LUMINANCE, GL_UNSIGNED_BYTE, pixels);
207 munmap(pixels, size);
  /external/skia/gm/
rectangletexture.cpp 37 void fillPixels(int width, int height, void *pixels) {
40 bmp.setPixels(pixels);
57 SkImage* createRectangleTextureImg(GrContext* context, int width, int height, void* pixels) {
75 // We will always create the GL texture as GL_RGBA, however the pixels uploaded may be
101 format, GR_GL_UNSIGNED_BYTE, pixels));
133 SkPMColor pixels[kWidth * kHeight]; variable
134 this->fillPixels(kWidth, kHeight, pixels);
136 pixels));

Completed in 1552 milliseconds

1 2 3 45 6 7 8 91011>>