HomeSort by relevance Sort by last modified time
    Searched refs:ras (Results 1 - 17 of 17) sorted by null

  /external/pdfium/core/src/fxge/agg/agg23/
agg_render_scanlines.h 22 void render_scanlines(Rasterizer& ras, Scanline& sl, Renderer& ren, bool no_smooth)
24 if(ras.rewind_scanlines()) {
25 sl.reset(ras.min_x(), ras.max_x());
26 ren.prepare(unsigned(ras.max_x() - ras.min_x() + 2));
27 while(ras.sweep_scanline(sl, no_smooth)) {
34 void render_all_paths(Rasterizer& ras,
43 ras.reset();
44 ras.add_path(vs, path_id[i])
    [all...]
  /external/chromium_org/third_party/freetype/src/raster/
ftraster.c 450 #define FLOOR( x ) ( (x) & -ras.precision )
451 #define CEILING( x ) ( ( (x) + ras.precision - 1 ) & -ras.precision )
452 #define TRUNC( x ) ( (Long)(x) >> ras.precision_bits )
453 #define FRAC( x ) ( (x) & ( ras.precision - 1 ) )
454 #define SCALED( x ) ( ( (ULong)(x) << ras.scale_shift ) - ras.precision_half )
456 #define IS_BOTTOM_OVERSHOOT( x ) ( CEILING( x ) - x >= ras.precision_half )
457 #define IS_TOP_OVERSHOOT( x ) ( x - FLOOR( x ) >= ras.precision_half )
575 #define ras cur_ra macro
579 #define ras macro
    [all...]
  /external/freetype/src/raster/
ftraster.c 450 #define FLOOR( x ) ( (x) & -ras.precision )
451 #define CEILING( x ) ( ( (x) + ras.precision - 1 ) & -ras.precision )
452 #define TRUNC( x ) ( (Long)(x) >> ras.precision_bits )
453 #define FRAC( x ) ( (x) & ( ras.precision - 1 ) )
454 #define SCALED( x ) ( ( (ULong)(x) << ras.scale_shift ) - ras.precision_half )
457 (Bool)( CEILING( x ) - x >= ras.precision_half )
459 (Bool)( x - FLOOR( x ) >= ras.precision_half )
577 #define ras cur_ra macro
581 #define ras macro
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/
ftraster.c 450 #define FLOOR( x ) ( (x) & -ras.precision )
451 #define CEILING( x ) ( ( (x) + ras.precision - 1 ) & -ras.precision )
452 #define TRUNC( x ) ( (Long)(x) >> ras.precision_bits )
453 #define FRAC( x ) ( (x) & ( ras.precision - 1 ) )
454 #define SCALED( x ) ( ( (ULong)(x) << ras.scale_shift ) - ras.precision_half )
457 (Bool)( CEILING( x ) - x >= ras.precision_half )
459 (Bool)( x - FLOOR( x ) >= ras.precision_half )
577 #define ras cur_ra macro
581 #define ras macro
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 459 #define ras (*worker) macro
461 static gray_TWorker ras; variable
485 ras.buffer = buffer;
486 ras.buffer_size = byte_size;
488 ras.ycells = (PCell*) buffer;
489 ras.cells = NULL;
490 ras.max_cells = 0;
491 ras.num_cells = 0;
492 ras.area = 0;
493 ras.cover = 0
    [all...]
  /external/chromium_org/third_party/freetype/src/smooth/
ftgrays.c 410 #define ras (*worker) macro
412 static gray_TWorker ras; variable
436 ras.buffer = buffer;
437 ras.buffer_size = byte_size;
439 ras.ycells = (PCell*) buffer;
440 ras.cells = NULL;
441 ras.max_cells = 0;
442 ras.num_cells = 0;
443 ras.area = 0;
444 ras.cover = 0
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/smooth/
ftgrays.c 422 #define ras (*worker) macro
424 static gray_TWorker ras; variable
448 ras.buffer = buffer;
449 ras.buffer_size = byte_size;
451 ras.ycells = (PCell*) buffer;
452 ras.cells = NULL;
453 ras.max_cells = 0;
454 ras.num_cells = 0;
455 ras.area = 0;
456 ras.cover = 0
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-invalid.cpp 18 void render_scanlines_aa_solid(Rasterizer& ras, Scanline& sl, BaseRenderer& ren, const ColorT& color)
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; local
48 agg::render_ctrl(ras, sl, ren_base, m_polygons);
  /external/openfst/src/bin/
fstequivalent.cc 69 s::RandArcSelection ras; local
72 ras = s::UNIFORM_ARC_SELECTOR;
74 ras = s::LOG_PROB_ARC_SELECTOR;
76 ras = s::FAST_LOG_PROB_ARC_SELECTOR;
89 ras, FLAGS_max_length)) ? 0 : 2;
fstrandgen.cc 61 s::RandArcSelection ras; local
64 ras = s::UNIFORM_ARC_SELECTOR;
66 ras = s::LOG_PROB_ARC_SELECTOR;
68 ras = s::FAST_LOG_PROB_ARC_SELECTOR;
77 ras, FLAGS_max_length, FLAGS_npath,
  /external/dhcpcd/
ipv6rs.c 237 if (ifp->ras == NULL || ifp->ras->next == NULL)
241 sorted = ifp->ras;
242 ifp->ras = ifp->ras->next;
244 for (rap = ifp->ras; rap && (ran = rap->next, 1); rap = ran) {
354 for (rap = ifp->ras; rap; rap = rap->next) {
376 rap->next = ifp->ras;
378 ifp->ras = rap;
581 for (rap = ifp->ras, i = 1; rap; rap = rap->next, i++)
    [all...]
dhcpcd.h 140 struct ra *ras; member in struct:interface
dhcpcd.c 266 if (iface->ras) {
268 iface->ras = NULL;
934 if (iface->ras) {
936 iface->ras = NULL;
    [all...]
configure.c 224 if ((dhcp && iface->state->new) || (ra && iface->ras)) {
332 if (iface->ras) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msfs.h 9 #include <ras.h>
rasdlg.h 16 #include <ras.h>
mprapi.h 10 #include <ras.h>
    [all...]

Completed in 1865 milliseconds