/external/clang/test/SemaTemplate/ |
instantiate-invalid.cpp | 8 template<class Scanline> bool sweep_scanline(Scanline& sl) 17 template<class Rasterizer, class Scanline, class BaseRenderer, class ColorT> 18 void render_scanlines_aa_solid(Rasterizer& ras, Scanline& sl, BaseRenderer& ren, const ColorT& color) 29 template<class Rasterizer, class Scanline, class Renderer, class Ctrl> 30 void render_ctrl(Rasterizer& ras, Scanline& sl, Renderer& r, Ctrl& c)
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
PFMLoader.java | 62 private void flipScanline(byte[] scanline){ 63 for (int i = 0; i < scanline.length; i+=4){ 65 byte tmp = scanline[i+3]; 66 scanline[i+3] = scanline[i+0]; 67 scanline[i+0] = tmp; 70 tmp = scanline[i+2]; 71 scanline[i+2] = scanline[i+1]; 72 scanline[i+1] = tmp [all...] |
ImageFlipper.java | 59 int scanline = w * bpp; local 62 ByteBuffer temp = BufferUtils.createByteBuffer(scanline); 67 // read in scanline 68 data.position(y * scanline); 69 data.limit(data.position() + scanline);
|
/external/skia/gm/ |
bleed.cpp | 32 SkPMColor* scanline = result->getAddr32(0, 0); local 34 scanline[x] = kBlue; 36 scanline = result->getAddr32(0, 1); 37 scanline[0] = kBlue; 39 scanline[x] = kRed; 41 scanline[width-1] = kBlue; 44 scanline = result->getAddr32(0, y); 45 scanline[0] = kBlue; 46 scanline[1] = kRed; 48 scanline[x] = kBlack [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
SkStippleMaskFilter.cpp | 34 uint8_t* scanline = dst->fImage; local 38 scanline[x] = srcScanLine[x] && ((x+y) & 0x1) ? 0xFF : 0x00; 40 scanline += dst->fRowBytes;
|
/external/skia/src/effects/ |
SkStippleMaskFilter.cpp | 34 uint8_t* scanline = dst->fImage; local 38 scanline[x] = srcScanLine[x] && ((x+y) & 0x1) ? 0xFF : 0x00; 40 scanline += dst->fRowBytes;
|
/external/chromium_org/third_party/skia/src/core/ |
SkRegion_path.cpp | 42 const Scanline* line = (Scanline*)fStorage; 44 SkDebugf("SkRgnBuilder::Scanline: LastY=%d, fXCount=%d", line->fLastY, line->fXCount); 56 * Scanline mimics a row in the region, nearly. A row in a region is: 58 * while a Scanline is 61 * the scanline a little when we convert it to a region-row. 67 struct Scanline { 72 Scanline* nextScanline() const { 74 return (Scanline*)((SkRegion::RunType*)(this + 1) + fXCount + 1); 78 Scanline* fCurrScanline [all...] |
SkRegionPriv.h | 117 * Given a scanline (including its Bottom value at runs[0]), return the next 118 * scanline. Asserts that there is one (i.e. runs[0] < Sentinel) 140 * Return the scanline that contains the Y value. This requires that the Y 144 * It returns the beginning of the scanline, starting with its Bottom value.
|
/external/skia/src/core/ |
SkRegion_path.cpp | 42 const Scanline* line = (Scanline*)fStorage; 44 SkDebugf("SkRgnBuilder::Scanline: LastY=%d, fXCount=%d", line->fLastY, line->fXCount); 56 * Scanline mimics a row in the region, nearly. A row in a region is: 58 * while a Scanline is 61 * the scanline a little when we convert it to a region-row. 67 struct Scanline { 72 Scanline* nextScanline() const { 74 return (Scanline*)((SkRegion::RunType*)(this + 1) + fXCount + 1); 78 Scanline* fCurrScanline [all...] |
SkRegionPriv.h | 117 * Given a scanline (including its Bottom value at runs[0]), return the next 118 * scanline. Asserts that there is one (i.e. runs[0] < Sentinel) 140 * Return the scanline that contains the Y value. This requires that the Y 144 * It returns the beginning of the scanline, starting with its Bottom value.
|
/external/chromium_org/third_party/skia/include/core/ |
SkBlitRow.h | 25 /** Function pointer that reads a scanline of src SkPMColors, and writes 26 a corresponding scanline of 16bit colors (specific format based on the 32 @param x The x coordinate of the beginning of the scanline 33 @param y THe y coordinate of the scanline
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_CreateRGBSurfaceFrom.3 | 13 The data stored in \fBpixels\fR is assumed to be of the \fBdepth\fR specified in the parameter list\&. The pixel data is not copied into the \fBSDL_Surface\fR structure so it should not be freed until the surface has been freed with a called to \fISDL_FreeSurface\fR\&. \fBpitch\fR is the length of each scanline in bytes\&.
|
/external/skia/include/core/ |
SkBlitRow.h | 25 /** Function pointer that reads a scanline of src SkPMColors, and writes 26 a corresponding scanline of 16bit colors (specific format based on the 32 @param x The x coordinate of the beginning of the scanline 33 @param y THe y coordinate of the scanline
|
/system/core/libpixelflinger/ |
scanline.h | 1 /* libs/pixelflinger/scanline.h
|
/system/core/libpixelflinger/tests/codegen/ |
codegen.cpp | 7 #include "scanline.h" 56 int err = assembler.scanline(needs, (context_t*)c);
|
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_libgif.cpp | 335 uint8_t* scanline = (uint8_t*) storage.get(); local 371 // now decode each scanline 377 if (DGifGetLine(gif, scanline, innerWidth) == GIF_ERROR) { 379 memset(scanline, fillIndex, innerWidth); 381 sampler.sampleInterlaced(scanline, iter.currY()); 386 sampler.sampleInterlaced(scanline, iter.currY()); 392 skip_src_rows(gif, scanline, innerWidth, sampler.srcY0()); 394 if (DGifGetLine(gif, scanline, innerWidth) == GIF_ERROR) { 396 memset(scanline, fillIndex, innerWidth); 398 sampler.next(scanline); [all...] |
/external/skia/src/images/ |
SkImageDecoder_libgif.cpp | 335 uint8_t* scanline = (uint8_t*) storage.get(); local 371 // now decode each scanline 377 if (DGifGetLine(gif, scanline, innerWidth) == GIF_ERROR) { 379 memset(scanline, fillIndex, innerWidth); 381 sampler.sampleInterlaced(scanline, iter.currY()); 386 sampler.sampleInterlaced(scanline, iter.currY()); 392 skip_src_rows(gif, scanline, innerWidth, sampler.srcY0()); 394 if (DGifGetLine(gif, scanline, innerWidth) == GIF_ERROR) { 396 memset(scanline, fillIndex, innerWidth); 398 sampler.next(scanline); [all...] |
/external/skia/bench/ |
GameBench.cpp | 259 SkPMColor* scanline = fCheckerboard.getAddr32(0, y); local 263 *scanline++ = 0xFFFF0000; 265 *scanline++ = 0x00000000; 295 SkPMColor* scanline = fAtlas.getAddr32(0, y); local 297 for (int x = 0; x < kTotAtlasWidth; ++x, ++scanline) { 303 *scanline = colors[colorX][colorY]; 305 *scanline = 0x00000000;
|
/device/asus/flo/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_stream.c | 1661 int stride = 0, scanline = 0; local 1821 int stride = 0, scanline = 0; local 1974 int scanline = dim->height; local 2168 int stride = 0, scanline = 0; local 2199 int stride = 0, scanline = 0; local [all...] |
/hardware/qcom/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_stream.c | 1662 int stride = 0, scanline = 0; local 1822 int stride = 0, scanline = 0; local 1975 int scanline = dim->height; local 2169 int stride = 0, scanline = 0; local 2200 int stride = 0, scanline = 0; local [all...] |
/packages/apps/Gallery2/jni_jpegstream/src/ |
jpeg_reader.cpp | 134 // read partial scanline and return 144 // read full scanline 154 // Scanline buffer exhausted, read next scanline 156 // Always read full scanline, no IO suspension
|
/external/jpeg/ |
rdrle.c | 154 * A place to hold each scanline while it's converted. 245 JSAMPROW scanline, red_ptr, green_ptr, blue_ptr; local 290 scanline = * (*cinfo->mem->access_virt_sarray) 297 *scanline++ = (JSAMPLE) 313 scanline = * (*cinfo->mem->access_virt_sarray) 322 *scanline++ = *red_ptr++; 323 *scanline++ = *green_ptr++; 324 *scanline++ = *blue_ptr++;
|
/external/qemu/distrib/jpeg-6b/ |
rdrle.c | 154 * A place to hold each scanline while it's converted. 245 JSAMPROW scanline, red_ptr, green_ptr, blue_ptr; local 290 scanline = * (*cinfo->mem->access_virt_sarray) 297 *scanline++ = (JSAMPLE) 313 scanline = * (*cinfo->mem->access_virt_sarray) 322 *scanline++ = *red_ptr++; 323 *scanline++ = *green_ptr++; 324 *scanline++ = *blue_ptr++;
|
/external/chromium_org/third_party/skia/include/utils/ |
SkPathUtils.h | 23 This variation iterates the binary data sequentially (as in scanline fashion)
|
/external/skia/include/utils/ |
SkPathUtils.h | 23 This variation iterates the binary data sequentially (as in scanline fashion)
|