/third_party/ffmpeg/libavcodec/ |
D | exrenc.c | 85 EXRScanlineData *scanline; member 127 s->scanline = av_calloc(s->nb_scanlines, sizeof(*s->scanline)); in encode_init() 128 if (!s->scanline) in encode_init() 138 for (int y = 0; y < s->nb_scanlines && s->scanline; y++) { in encode_close() 139 EXRScanlineData *scanline = &s->scanline[y]; in encode_close() local 141 av_freep(&scanline->tmp); in encode_close() 142 av_freep(&scanline->compressed_data); in encode_close() 143 av_freep(&scanline->uncompressed_data); in encode_close() 146 av_freep(&s->scanline); in encode_close() 219 EXRScanlineData *scanline = &s->scanline[y]; in encode_scanline_rle() local [all …]
|
D | pcx.c | 81 uint8_t *ptr, *scanline; in pcx_decode_frame() local 154 scanline = av_malloc(bytes_per_scanline + AV_INPUT_BUFFER_PADDING_SIZE); in pcx_decode_frame() 155 if (!scanline) in pcx_decode_frame() 160 ret = pcx_rle_decode(&gb, scanline, bytes_per_scanline, compressed); in pcx_decode_frame() 165 ptr[3 * x] = scanline[x]; in pcx_decode_frame() 166 ptr[3 * x + 1] = scanline[x + bytes_per_line]; in pcx_decode_frame() 167 ptr[3 * x + 2] = scanline[x + (bytes_per_line << 1)]; in pcx_decode_frame() 183 ret = pcx_rle_decode(&gb, scanline, bytes_per_scanline, compressed); in pcx_decode_frame() 186 memcpy(ptr, scanline, w); in pcx_decode_frame() 203 init_get_bits8(&s, scanline, bytes_per_scanline); in pcx_decode_frame() [all …]
|
/third_party/ffmpeg/tests/fate/ |
D | image.mak | 118 FATE_EXR += fate-exr-rgb-scanline-pxr24-float-12x8 119 fate-exr-rgb-scanline-pxr24-float-12x8: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_scanline_pxr24_… 124 FATE_EXR += fate-exr-rgb-scanline-float-b44 125 fate-exr-rgb-scanline-float-b44: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_scanline_float_b44.exr… 127 FATE_EXR += fate-exr-rgb-scanline-half-b44-12x8 128 fate-exr-rgb-scanline-half-b44-12x8: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_scanline_half_b44_… 130 FATE_EXR += fate-exr-rgb-scanline-half-b44-13x9 131 fate-exr-rgb-scanline-half-b44-13x9: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_scanline_half_b44_… 142 FATE_EXR += fate-exr-rgba-scanline-float-half-b44-13x9-l1 143 fate-exr-rgba-scanline-float-half-b44-13x9-l1: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgba_scanlin… [all …]
|
/third_party/boost/boost/polygon/detail/ |
D | property_merge.hpp | 90 …merge_scanline() : output(), scanline(), currentVertex(), tmpVector(), previousY(), countFromBelow… in merge_scanline() 93 scanline(that.scanline), in merge_scanline() 102 scanline = that.scanline; in operator =() 118 scanlinePosition = scanline.end(); in perform_merge() 224 scanline_type scanline; member in boost::polygon::merge_scanline 296 if(scanlinePosition == scanline.end() || in processVertex() 298 scanlinePosition = scanline.lower_bound(previousY); in processVertex() 302 while(scanlinePosition != scanline.end()) { in processVertex() 326 if(previousScanlinePosition == scanline.begin()) { in processVertex() 328 scanline.erase(previousScanlinePosition); in processVertex() [all …]
|
D | property_merge_45.hpp | 127 typename boolean_op_45<Unit>::template Scan45<CountMerge, merge_45_output_functor> scanline; in performMerge() local 134 scanline.scan(result, itr, itr2); in performMerge()
|
D | polygon_45_touch.hpp | 206 typename boolean_op_45<Unit>::template Scan45<CountTouch, touch_45_output_functor> scanline; in performTouch() local 213 scanline.scan(output, itr, itr2); in performTouch()
|
/third_party/skia/gm/ |
D | bleed.cpp | 53 uint32_t* scanline = bitmap.getAddr32(0, 0); in make_ringed_image() local 55 scanline[x] = kOuterRingColor; in make_ringed_image() 57 scanline = bitmap.getAddr32(0, 1); in make_ringed_image() 58 scanline[0] = kOuterRingColor; in make_ringed_image() 60 scanline[x] = kInnerRingColor; in make_ringed_image() 62 scanline[width - 1] = kOuterRingColor; in make_ringed_image() 65 scanline = bitmap.getAddr32(0, y); in make_ringed_image() 66 scanline[0] = kOuterRingColor; in make_ringed_image() 67 scanline[1] = kInnerRingColor; in make_ringed_image() 69 scanline[x] = kCheckColor1; in make_ringed_image() [all …]
|
/third_party/flutter/skia/gm/ |
D | bleed.cpp | 65 PIXEL_TYPE* scanline = (PIXEL_TYPE*)result->fBitmap.getAddr(0, 0); in make_ringed_bitmap() local 67 scanline[x] = outerRingColor; in make_ringed_bitmap() 69 scanline = (PIXEL_TYPE*)result->fBitmap.getAddr(0, 1); in make_ringed_bitmap() 70 scanline[0] = outerRingColor; in make_ringed_bitmap() 72 scanline[x] = innerRingColor; in make_ringed_bitmap() 74 scanline[width - 1] = outerRingColor; in make_ringed_bitmap() 77 scanline = (PIXEL_TYPE*)result->fBitmap.getAddr(0, y); in make_ringed_bitmap() 78 scanline[0] = outerRingColor; in make_ringed_bitmap() 79 scanline[1] = innerRingColor; in make_ringed_bitmap() 81 scanline[x] = checkColor1; in make_ringed_bitmap() [all …]
|
/third_party/flutter/skia/bench/ |
D | GameBench.cpp | 255 SkPMColor* scanline = fCheckerboard.getAddr32(0, y); in makeCheckerboard() local 259 *scanline++ = 0xFFFF0000; in makeCheckerboard() 261 *scanline++ = 0x00000000; in makeCheckerboard() 289 SkPMColor* scanline = fAtlas.getAddr32(0, y); in makeAtlas() local 291 for (int x = 0; x < kTotAtlasWidth; ++x, ++scanline) { in makeAtlas() 297 *scanline = colors[colorX][colorY]; in makeAtlas() 299 *scanline = 0x00000000; in makeAtlas()
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | rdrle.c | 248 JSAMPROW scanline, red_ptr, green_ptr, blue_ptr; in load_image() local 292 scanline = *(*cinfo->mem->access_virt_sarray) in load_image() 299 *scanline++ = (JSAMPLE) in load_image() 315 scanline = *(*cinfo->mem->access_virt_sarray) in load_image() 324 *scanline++ = *red_ptr++; in load_image() 325 *scanline++ = *green_ptr++; in load_image() 326 *scanline++ = *blue_ptr++; in load_image()
|
/third_party/libjpeg-turbo/ |
D | rdrle.c | 248 JSAMPROW scanline, red_ptr, green_ptr, blue_ptr; in load_image() local 292 scanline = *(*cinfo->mem->access_virt_sarray) in load_image() 299 *scanline++ = (JSAMPLE) in load_image() 315 scanline = *(*cinfo->mem->access_virt_sarray) in load_image() 324 *scanline++ = *red_ptr++; in load_image() 325 *scanline++ = *green_ptr++; in load_image() 326 *scanline++ = *blue_ptr++; in load_image()
|
/third_party/skia/bench/ |
D | GameBench.cpp | 256 SkPMColor* scanline = bm.getAddr32(0, y); in makeCheckerboard() local 260 *scanline++ = 0xFFFF0000; in makeCheckerboard() 262 *scanline++ = 0x00000000; in makeCheckerboard() 292 SkPMColor* scanline = bm.getAddr32(0, y); in makeAtlas() local 294 for (int x = 0; x < kTotAtlasWidth; ++x, ++scanline) { in makeAtlas() 300 *scanline = colors[colorX][colorY]; in makeAtlas() 302 *scanline = 0x00000000; in makeAtlas()
|
/third_party/mesa3d/src/imgui/ |
D | imstb_truetype.h | 2790 static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int m… in stbtt__fill_active_edges() argument 2809 … scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); in stbtt__fill_active_edges() 2812 …scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> ST… in stbtt__fill_active_edges() 2817 … scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); in stbtt__fill_active_edges() 2822 scanline[i] = scanline[i] + (stbtt_uint8) max_weight; in stbtt__fill_active_edges() 2839 unsigned char scanline_data[512], *scanline; in stbtt__rasterize_sorted_edges() local 2842 scanline = (unsigned char *) STBTT_malloc(result->w, userdata); in stbtt__rasterize_sorted_edges() 2844 scanline = scanline_data; in stbtt__rasterize_sorted_edges() 2850 STBTT_memset(scanline, 0, result->w); in stbtt__rasterize_sorted_edges() 2918 stbtt__fill_active_edges(scanline, result->w, active, max_weight); in stbtt__rasterize_sorted_edges() [all …]
|
/third_party/skia/third_party/externals/imgui/ |
D | imstb_truetype.h | 2790 static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int m… in stbtt__fill_active_edges() argument 2809 … scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); in stbtt__fill_active_edges() 2812 …scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> ST… in stbtt__fill_active_edges() 2817 … scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); in stbtt__fill_active_edges() 2822 scanline[i] = scanline[i] + (stbtt_uint8) max_weight; in stbtt__fill_active_edges() 2839 unsigned char scanline_data[512], *scanline; in stbtt__rasterize_sorted_edges() local 2842 scanline = (unsigned char *) STBTT_malloc(result->w, userdata); in stbtt__rasterize_sorted_edges() 2844 scanline = scanline_data; in stbtt__rasterize_sorted_edges() 2850 STBTT_memset(scanline, 0, result->w); in stbtt__rasterize_sorted_edges() 2918 stbtt__fill_active_edges(scanline, result->w, active, max_weight); in stbtt__rasterize_sorted_edges() [all …]
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imstb_truetype.h | 2772 static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int m… in stbtt__fill_active_edges() argument 2791 … scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); in stbtt__fill_active_edges() 2794 …scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> ST… in stbtt__fill_active_edges() 2799 … scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); in stbtt__fill_active_edges() 2804 scanline[i] = scanline[i] + (stbtt_uint8) max_weight; in stbtt__fill_active_edges() 2821 unsigned char scanline_data[512], *scanline; in stbtt__rasterize_sorted_edges() local 2824 scanline = (unsigned char *) STBTT_malloc(result->w, userdata); in stbtt__rasterize_sorted_edges() 2826 scanline = scanline_data; in stbtt__rasterize_sorted_edges() 2832 STBTT_memset(scanline, 0, result->w); in stbtt__rasterize_sorted_edges() 2900 stbtt__fill_active_edges(scanline, result->w, active, max_weight); in stbtt__rasterize_sorted_edges() [all …]
|
/third_party/skia/third_party/externals/freetype/docs/ |
D | raster.txt | 90 A pixel line in the target bitmap is called a `scanline'. 214 /---/ |---| several spans per scanline. 217 V /----------------| current scanline y, we must 237 For each scanline during the sweep, we need the following 240 o The number of spans on the current scanline, given by the 241 number of shape points intersecting the scanline (these are 306 *scanline* crossed by the contour's section containing the 372 - min scanline = FLOOR ( min y ) 373 - max scanline = CEILING( max y ) 529 for each scanline. [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/docs/ |
D | raster.txt | 90 A pixel line in the target bitmap is called a `scanline'. 214 /---/ |---| several spans per scanline. 217 V /----------------| current scanline y, we must 237 For each scanline during the sweep, we need the following 240 o The number of spans on the current scanline, given by the 241 number of shape points intersecting the scanline (these are 306 *scanline* crossed by the contour's section containing the 372 - min scanline = FLOOR ( min y ) 373 - max scanline = CEILING( max y ) 529 for each scanline. [all …]
|
/third_party/freetype/docs/ |
D | raster.txt | 90 A pixel line in the target bitmap is called a `scanline'. 214 /---/ |---| several spans per scanline. 217 V /----------------| current scanline y, we must 237 For each scanline during the sweep, we need the following 240 o The number of spans on the current scanline, given by the 241 number of shape points intersecting the scanline (these are 306 *scanline* crossed by the contour's section containing the 372 - min scanline = FLOOR ( min y ) 373 - max scanline = CEILING( max y ) 529 for each scanline. [all …]
|
/third_party/flutter/skia/src/core/ |
D | SkRegion.cpp | 426 const RunType* scanline = fRunHead->findScanline(r.fTop); in contains() local 428 if (!scanline_contains(scanline, r.fLeft, r.fRight)) { in contains() 431 if (r.fBottom <= scanline_bottom(scanline)) { in contains() 434 scanline = scanline_next(scanline); in contains() 511 const RunType* scanline = fRunHead->findScanline(sect.fTop); in intersects() local 513 if (scanline_intersects(scanline, sect.fLeft, sect.fRight)) { in intersects() 516 if (sect.fBottom <= scanline_bottom(scanline)) { in intersects() 519 scanline = scanline_next(scanline); in intersects()
|
/third_party/skia/src/core/ |
D | SkRegion.cpp | 425 const RunType* scanline = fRunHead->findScanline(r.fTop); in contains() local 427 if (!scanline_contains(scanline, r.fLeft, r.fRight)) { in contains() 430 if (r.fBottom <= scanline_bottom(scanline)) { in contains() 433 scanline = scanline_next(scanline); in contains() 510 const RunType* scanline = fRunHead->findScanline(sect.fTop); in intersects() local 512 if (scanline_intersects(scanline, sect.fLeft, sect.fRight)) { in intersects() 515 if (sect.fBottom <= scanline_bottom(scanline)) { in intersects() 518 scanline = scanline_next(scanline); in intersects()
|
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/ |
D | greedyh.c | 723 ScanlineFunction scanline) in deinterlace_frame_di_greedyh_plane() argument 770 scanline (self, L1, L2, L3, L2P, Dest, RowStride); in deinterlace_frame_di_greedyh_plane() 794 ScanlineFunction scanline; in deinterlace_frame_di_greedyh_packed() local 813 scanline = klass->scanline_yuy2; in deinterlace_frame_di_greedyh_packed() 816 scanline = klass->scanline_uyvy; in deinterlace_frame_di_greedyh_packed() 819 scanline = klass->scanline_ayuv; in deinterlace_frame_di_greedyh_packed() 827 cur_field_idx, 0, scanline); in deinterlace_frame_di_greedyh_packed()
|
/third_party/skia/third_party/externals/swiftshader/src/Main/ |
D | FrameBufferWin.hpp | 46 virtual bool getScanline(bool &inVerticalBlank, unsigned int &scanline) = 0;
|
D | FrameBufferGDI.hpp | 42 bool getScanline(bool &inVerticalBlank, unsigned int &scanline) override;
|
D | FrameBufferDD.hpp | 44 bool getScanline(bool &inVerticalBlank, unsigned int &scanline) override;
|
/third_party/python/Tools/scripts/ |
D | fixdiv.py | 220 startlineno, endlineno, slashes = lineinfo = scanline(g) 357 def scanline(g): function
|