/external/pdfium/third_party/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 ) ) 453 #define SCALED( x ) ( ( (x) < 0 ? -( -(x) << ras.scale_shift ) \ 454 : ( (x) << ras.scale_shift ) ) \ 455 - ras.precision_half ) 458 (Bool)( CEILING( x ) - x >= ras.precision_half ) 460 (Bool)( x - FLOOR( x ) >= ras.precision_half ) 549 #define ras cur_ras macro [all …]
|
/external/freetype/src/raster/ |
D | ftraster.c | 451 #define FLOOR( x ) ( (x) & -ras.precision ) 452 #define CEILING( x ) ( ( (x) + ras.precision - 1 ) & -ras.precision ) 453 #define TRUNC( x ) ( (Long)(x) >> ras.precision_bits ) 454 #define FRAC( x ) ( (x) & ( ras.precision - 1 ) ) 455 #define SCALED( x ) ( ( (x) < 0 ? -( -(x) << ras.scale_shift ) \ 456 : ( (x) << ras.scale_shift ) ) \ 457 - ras.precision_half ) 460 (Bool)( CEILING( x ) - x >= ras.precision_half ) 462 (Bool)( x - FLOOR( x ) >= ras.precision_half ) 557 #define ras cur_ras macro [all …]
|
/external/pdfium/third_party/freetype/src/smooth/ |
D | ftgrays.c | 475 #define ras (*worker) macro 477 static gray_TWorker ras; variable 497 ras.buffer = buffer; in gray_init_cells() 498 ras.buffer_size = byte_size; in gray_init_cells() 500 ras.ycells = (PCell*) buffer; in gray_init_cells() 501 ras.cells = NULL; in gray_init_cells() 502 ras.max_cells = 0; in gray_init_cells() 503 ras.num_cells = 0; in gray_init_cells() 504 ras.area = 0; in gray_init_cells() 505 ras.cover = 0; in gray_init_cells() [all …]
|
/external/freetype/src/smooth/ |
D | ftgrays.c | 468 #define ras (*worker) macro 470 static gray_TWorker ras; variable 491 for ( y = ras.min_ey; y < ras.max_ey; y++ ) in gray_dump_cells() 493 PCell cell = ras.ycells[y - ras.min_ey]; in gray_dump_cells() 516 TCoord x = ras.ex; in gray_record_cell() 519 pcell = &ras.ycells[ras.ey - ras.min_ey]; in gray_record_cell() 532 if ( ras.num_cells >= ras.max_cells ) in gray_record_cell() 533 ft_longjmp( ras.jump_buffer, 1 ); in gray_record_cell() 536 cell = ras.cells + ras.num_cells++; in gray_record_cell() 538 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/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/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/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/libcups/filter/ |
D | rastertohp.c | 647 cups_raster_t *ras; /* Raster stream for printing */ in main() local 695 ras = cupsRasterOpen(fd, CUPS_RASTER_READ); in main() 744 while (cupsRasterReadHeader2(ras, &header)) in main() 790 if (cupsRasterReadPixels(ras, Planes[0], header.cupsBytesPerLine) < 1) in main() 829 cupsRasterClose(ras); in main()
|
D | testclient.c | 404 cups_raster_t *ras; /* Raster stream */ in make_raster_file() local 629 if ((ras = cupsRasterOpen(fd, mode)) == NULL) in make_raster_file() 640 cupsRasterWriteHeader2(ras, &header); in make_raster_file() 645 cupsRasterWritePixels(ras, line, header.cupsBytesPerLine); in make_raster_file() 705 cupsRasterWritePixels(ras, line, header.cupsBytesPerLine); in make_raster_file() 711 cupsRasterWritePixels(ras, line, header.cupsBytesPerLine); in make_raster_file() 713 cupsRasterClose(ras); in make_raster_file()
|
D | rastertoepson.c | 976 cups_raster_t *ras; /* Raster stream for printing */ in main() local 1025 ras = cupsRasterOpen(fd, CUPS_RASTER_READ); in main() 1076 while (cupsRasterReadHeader2(ras, &header)) in main() 1122 if (cupsRasterReadPixels(ras, Planes[0], header.cupsBytesPerLine) < 1) in main() 1156 cupsRasterClose(ras); in main()
|
D | rastertolabel.c | 1089 cups_raster_t *ras; /* Raster stream for printing */ in main() local 1139 ras = cupsRasterOpen(fd, CUPS_RASTER_READ); in main() 1197 while (cupsRasterReadHeader2(ras, &header)) in main() 1243 if (cupsRasterReadPixels(ras, Buffer, header.cupsBytesPerLine) < 1) in main() 1269 cupsRasterClose(ras); in main()
|
D | testraster.c | 454 cups_raster_t *ras; /* Raster stream */ in do_ras_file() local 467 if ((ras = cupsRasterOpen(fd, CUPS_RASTER_READ)) == NULL) in do_ras_file() 476 while (cupsRasterReadHeader2(ras, &header)) in do_ras_file() 487 if (cupsRasterReadPixels(ras, data, header.cupsBytesPerLine) < in do_ras_file() 501 cupsRasterClose(ras); in do_ras_file()
|
/external/llvm/include/llvm/Support/ |
D | AArch64TargetParser.def | 46 AARCH64_ARCH_EXT_NAME("ras", AArch64::AEK_RAS, "+ras", "-ras")
|
D | ARMTargetParser.def | 130 ARM_ARCH_EXT_NAME("ras", ARM::AEK_RAS, "+ras", "-ras")
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | AArch64TargetParser.def | 48 AARCH64_ARCH_EXT_NAME("ras", AArch64::AEK_RAS, "+ras", "-ras")
|
/external/icu/icu4c/source/data/lang/ |
D | ga.txt | 11 ms{"Córas Tomhais"} 439 h11{"Córas 12 Uair (0–11)"} 440 h12{"Córas 12 Uair (1–12)"} 441 h23{"Córas 24 Uair (0–23)"} 442 h24{"Córas 24 Uair (1–24)"} 450 metric{"Córas Méadrach"} 451 uksystem{"Córas Tomhais Reachtúil"} 452 ussystem{"Córas Tomhais SAM"}
|
/external/llvm/test/MC/AArch64/ |
D | directive-arch.s | 9 .arch armv8.1-a+ras
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | ras-extension.txt | 1 # RUN: llvm-mc -triple aarch64-none-linux-gnu -mattr=+ras --disassemble < %s | FileCheck %s
|
/external/icu/icu4c/source/data/unit/ |
D | lv.txt | 491 dnam{"jūras jūdzes"} 492 one{"{0} jūras jūdze"} 493 other{"{0} jūras jūdzes"} 494 zero{"{0} jūras jūdzes"} 1633 dnam{"jūras jūdzes"} 1634 one{"{0} jūras jūdze"} 1635 other{"{0} jūras jūdzes"} 1636 zero{"{0} jūras jūdzes"}
|
/external/icu/icu4c/source/data/region/ |
D | lt.txt | 136 HN{"Hondūras"} 239 SG{"Singapūras"}
|
D | lv.txt | 18 029{"Karību jūras reģions"} 274 UM{"ASV Mazās Aizjūras salas"}
|
/external/selinux/libsepol/cil/src/ |
D | cil_reset_ast.c | 161 static void cil_reset_roleattributeset(struct cil_roleattributeset *ras) in cil_reset_roleattributeset() argument 163 cil_list_destroy(&ras->datum_expr, CIL_FALSE); in cil_reset_roleattributeset()
|