/external/freetype/src/raster/ |
D | ftraster.c | 449 #define FLOOR( x ) ( (x) & -ras.precision ) 450 #define CEILING( x ) ( ( (x) + ras.precision - 1 ) & -ras.precision ) 451 #define TRUNC( x ) ( (Long)(x) >> ras.precision_bits ) 452 #define FRAC( x ) ( (x) & ( ras.precision - 1 ) ) 455 #define SCALED( x ) ( (x) * ras.precision_scale - ras.precision_half ) 458 (Bool)( CEILING( x ) - x >= ras.precision_half ) 460 (Bool)( x - FLOOR( x ) >= ras.precision_half ) 465 #define SMART( p, q ) FLOOR( ( (p) + (q) + ras.precision * 63 / 64 ) >> 1 ) 553 static black_TWorker ras; variable 557 #define ras (*worker) macro [all …]
|
/external/freetype/src/smooth/ |
D | ftgrays.c | 481 #define ras (*worker) macro 483 static gray_TWorker ras; variable 504 for ( y = ras.min_ey; y < ras.max_ey; y++ ) in gray_dump_cells() 506 PCell cell = ras.ycells[y - ras.min_ey]; in gray_dump_cells() 529 TCoord x = ras.ex; in gray_record_cell() 532 pcell = &ras.ycells[ras.ey - ras.min_ey]; in gray_record_cell() 544 if ( ras.num_cells >= ras.max_cells ) in gray_record_cell() 545 ft_longjmp( ras.jump_buffer, 1 ); in gray_record_cell() 548 cell = ras.cells + ras.num_cells++; in gray_record_cell() 550 cell->area = ras.area; in gray_record_cell() [all …]
|
/external/pdfium/third_party/agg23/ |
D | agg_render_scanlines.h | 22 void render_scanlines(Rasterizer& ras, Scanline& sl, Renderer& ren, bool no_smooth) in render_scanlines() argument 24 if(ras.rewind_scanlines()) { in render_scanlines() 25 sl.reset(ras.min_x(), ras.max_x()); in render_scanlines() 26 ren.prepare(unsigned(ras.max_x() - ras.min_x() + 2)); in render_scanlines() 27 while(ras.sweep_scanline(sl, no_smooth)) { in render_scanlines() 34 void render_all_paths(Rasterizer& ras, in render_all_paths() argument 43 ras.reset(); in render_all_paths() 44 ras.add_path(vs, path_id[i]); in render_all_paths() 46 render_scanlines(ras, sl, r); in render_all_paths()
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | instantiate-invalid.cpp | 18 …void render_scanlines_aa_solid(Rasterizer& ras, Scanline& sl, BaseRenderer& ren, const ColorT& col… 20 while(ras.sweep_scanline(sl)) 30 void render_ctrl(Rasterizer& ras, Scanline& sl, Renderer& r, Ctrl& c) 33 render_scanlines_aa_solid(ras, sl, r, c.color(i)); 47 agg::rasterizer_scanline_aa<> ras; 48 agg::render_ctrl(ras, sl, ren_base, m_polygons);
|
/external/clang/test/SemaTemplate/ |
D | instantiate-invalid.cpp | 18 …void render_scanlines_aa_solid(Rasterizer& ras, Scanline& sl, BaseRenderer& ren, const ColorT& col… 20 while(ras.sweep_scanline(sl)) 30 void render_ctrl(Rasterizer& ras, Scanline& sl, Renderer& r, Ctrl& c) 33 render_scanlines_aa_solid(ras, sl, r, c.color(i)); 47 agg::rasterizer_scanline_aa<> ras; 48 agg::render_ctrl(ras, sl, ren_base, m_polygons);
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | output.py | 156 ras = [] 157 ras.extend(node.role_types()) 158 ras.sort(key=util.cmp_to_key(role_type_cmp)) 159 if len(ras): 165 c.extend(ras)
|
/external/llvm-project/llvm/test/MC/ARM/ |
D | ras-extension.s | 1 @ RUN: llvm-mc -triple armv8a-none-eabi -mattr=+ras -show-encoding %s | FileCheck %s --check-pref… 2 @ RUN: llvm-mc -triple thumbv8a-none-eabi -mattr=+ras -show-encoding %s | FileCheck %s --check-pref… 9 @ FAIL: instruction requires: ras
|
/external/libcups/tools/ |
D | ippevepcl.c | 458 cups_raster_t *ras; /* Raster stream */ in raster_to_pcl() local 487 if ((ras = cupsRasterOpen(fd, CUPS_RASTER_READ)) == NULL) in raster_to_pcl() 495 while (cupsRasterReadHeader2(ras, &header)) in raster_to_pcl() 515 if (cupsRasterReadPixels(ras, line, header.cupsBytesPerLine)) in raster_to_pcl() 525 cupsRasterClose(ras); in raster_to_pcl()
|
D | ippeveps.c | 1022 cups_raster_t *ras; /* Raster stream */ in raster_to_ps() local 1052 if ((ras = cupsRasterOpen(fd, CUPS_RASTER_READ)) == NULL) in raster_to_ps() 1060 while (cupsRasterReadHeader2(ras, &header)) in raster_to_ps() 1110 if (cupsRasterReadPixels(ras, line, header.cupsBytesPerLine)) in raster_to_ps() 1130 cupsRasterClose(ras); in raster_to_ps()
|
/external/llvm-project/llvm/test/MC/Disassembler/ARM/ |
D | ras-extension-arm.txt | 1 # RUN: llvm-mc < %s -triple armv8a-none-eabi -mattr=+ras -disassemble | FileCheck %s --check-prefix… 2 # RUN: llvm-mc < %s -triple armv8a-none-eabi -mattr=-ras -disassemble | FileCheck %s --check-prefix…
|
D | ras-extension-thumb.txt | 1 # RUN: llvm-mc < %s -triple thumbv8a-none-eabi -mattr=+ras -disassemble | FileCheck %s --check-pref… 2 # RUN: llvm-mc < %s -triple thumbv8a-none-eabi -mattr=-ras -disassemble | FileCheck %s --check-pref…
|
/external/llvm/test/MC/ARM/ |
D | ras-extension.s | 1 @ RUN: llvm-mc -triple armv8a-none-eabi -mattr=+ras -show-encoding %s | FileCheck %s --check-pref… 2 @ RUN: llvm-mc -triple thumbv8a-none-eabi -mattr=+ras -show-encoding %s | FileCheck %s --check-pref…
|
/external/llvm/test/MC/Disassembler/ARM/ |
D | ras-extension-thumb.txt | 1 # RUN: llvm-mc < %s -triple thumbv8a-none-eabi -mattr=+ras -disassemble | FileCheck %s --check-pref… 2 # RUN: llvm-mc < %s -triple thumbv8a-none-eabi -mattr=-ras -disassemble | FileCheck %s --check-pref…
|
D | ras-extension-arm.txt | 1 # RUN: llvm-mc < %s -triple armv8a-none-eabi -mattr=+ras -disassemble | FileCheck %s --check-prefix… 2 # RUN: llvm-mc < %s -triple armv8a-none-eabi -mattr=-ras -disassemble | FileCheck %s --check-prefix…
|
/external/libcups/filter/ |
D | rastertohp.c | 641 cups_raster_t *ras; /* Raster stream for printing */ in main() local 689 ras = cupsRasterOpen(fd, CUPS_RASTER_READ); in main() 738 while (cupsRasterReadHeader2(ras, &header)) in main() 784 if (cupsRasterReadPixels(ras, Planes[0], header.cupsBytesPerLine) < 1) in main() 823 cupsRasterClose(ras); in main()
|
D | rastertolabel.c | 1092 cups_raster_t *ras; /* Raster stream for printing */ in main() local 1142 ras = cupsRasterOpen(fd, CUPS_RASTER_READ); in main() 1200 while (cupsRasterReadHeader2(ras, &header)) in main() 1246 if (cupsRasterReadPixels(ras, Buffer, header.cupsBytesPerLine) < 1) in main() 1272 cupsRasterClose(ras); in main()
|
D | rastertoepson.c | 971 cups_raster_t *ras; /* Raster stream for printing */ in main() local 1020 ras = cupsRasterOpen(fd, CUPS_RASTER_READ); in main() 1071 while (cupsRasterReadHeader2(ras, &header)) in main() 1117 if (cupsRasterReadPixels(ras, Planes[0], header.cupsBytesPerLine) < 1) in main() 1151 cupsRasterClose(ras); in main()
|
/external/llvm/include/llvm/Support/ |
D | AArch64TargetParser.def | 48 AARCH64_ARCH_EXT_NAME("ras", AArch64::AEK_RAS, "+ras", "-ras")
|
/external/libcups/cups/ |
D | testclient.c | 295 cups_raster_t *ras; /* Raster stream */ in make_raster_file() local 521 if ((ras = cupsRasterOpen(fd, mode)) == NULL) in make_raster_file() 533 cupsRasterWriteHeader2(ras, &header); in make_raster_file() 538 cupsRasterWritePixels(ras, line, header.cupsBytesPerLine); in make_raster_file() 598 cupsRasterWritePixels(ras, line, header.cupsBytesPerLine); in make_raster_file() 604 cupsRasterWritePixels(ras, line, header.cupsBytesPerLine); in make_raster_file() 606 cupsRasterClose(ras); in make_raster_file()
|
D | testraster.c | 67 cups_raster_t *ras; /* Raster stream */ in do_ras_file() local 80 if ((ras = cupsRasterOpen(fd, CUPS_RASTER_READ)) == NULL) in do_ras_file() 89 while (cupsRasterReadHeader2(ras, &header)) in do_ras_file() 100 if (cupsRasterReadPixels(ras, data, header.cupsBytesPerLine) < in do_ras_file() 114 cupsRasterClose(ras); in do_ras_file()
|
/external/arm-trusted-firmware/plat/nvidia/tegra/soc/t194/ |
D | platform_t194.mk | 70 BL31_SOURCES += lib/extensions/ras/std_err_record.c \ 71 lib/extensions/ras/ras_common.c \
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | AArch64TargetParser.def | 48 AARCH64_ARCH_EXT_NAME("ras", AArch64::AEK_RAS, "+ras", "-ras")
|
/external/llvm-project/llvm/test/CodeGen/ARM/ |
D | relax-per-target-feature.ll | 31 …-float-abi,+strict-align,+thumb-mode,-crc,-dotprod,-dsp,-hwdiv,-hwdiv-arm,-ras" "use-soft-float"="… 33 …features"="+strict-align,+thumb-mode,-crc,-dotprod,-dsp,-hwdiv,-hwdiv-arm,-ras" "unsafe-fp-math"="…
|
/external/llvm/test/MC/AArch64/ |
D | directive-arch.s | 9 .arch armv8.1-a+ras
|
/external/arm-trusted-firmware/docs/components/ |
D | index.rst | 17 ras
|