Home
last modified time | relevance | path

Searched refs:ras (Results 1 – 25 of 58) sorted by relevance

123

/external/pdfium/third_party/freetype/src/raster/
Dftraster.c449 #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/
Dftraster.c451 #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/
Dftgrays.c475 #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/
Dftgrays.c468 #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/
Dagg_render_scanlines.h22 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/
Dinstantiate-invalid.cpp18 …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/
Doutput.py156 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/
Dras-extension-thumb.txt1 # 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…
Dras-extension-arm.txt1 # 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/
Dras-extension.s1 @ 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/
Drastertohp.c647 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()
Dtestclient.c404 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()
Drastertoepson.c976 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()
Drastertolabel.c1089 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()
Dtestraster.c454 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/
DAArch64TargetParser.def46 AARCH64_ARCH_EXT_NAME("ras", AArch64::AEK_RAS, "+ras", "-ras")
DARMTargetParser.def130 ARM_ARCH_EXT_NAME("ras", ARM::AEK_RAS, "+ras", "-ras")
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DAArch64TargetParser.def48 AARCH64_ARCH_EXT_NAME("ras", AArch64::AEK_RAS, "+ras", "-ras")
/external/icu/icu4c/source/data/lang/
Dga.txt11 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/
Ddirective-arch.s9 .arch armv8.1-a+ras
/external/llvm/test/MC/Disassembler/AArch64/
Dras-extension.txt1 # RUN: llvm-mc -triple aarch64-none-linux-gnu -mattr=+ras --disassemble < %s | FileCheck %s
/external/icu/icu4c/source/data/unit/
Dlv.txt491 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/
Dlt.txt136 HN{"Hondūras"}
239 SG{"Singapūras"}
Dlv.txt18 029{"Karību jūras reģions"}
274 UM{"ASV Mazās Aizjūras salas"}
/external/selinux/libsepol/cil/src/
Dcil_reset_ast.c161 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()

123