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

  /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/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/dhcpcd/
dhcpcd.h 140 struct ra *ras; member in struct:interface
  /external/chromium_org/third_party/freetype/src/smooth/
ftgrays.c 370 #define ras (*worker) macro
372 static TWorker ras; variable
396 ras.buffer = buffer;
397 ras.buffer_size = byte_size;
399 ras.ycells = (PCell*) buffer;
400 ras.cells = NULL;
401 ras.max_cells = 0;
402 ras.num_cells = 0;
403 ras.area = 0;
404 ras.cover = 0
    [all...]
  /external/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/chromium_org/third_party/freetype/src/raster/
ftraster.c 432 #define FLOOR( x ) ( (x) & -ras.precision )
433 #define CEILING( x ) ( ( (x) + ras.precision - 1 ) & -ras.precision )
434 #define TRUNC( x ) ( (signed long)(x) >> ras.precision_bits )
435 #define FRAC( x ) ( (x) & ( ras.precision - 1 ) )
436 #define SCALED( x ) ( ( (x) << ras.scale_shift ) - ras.precision_half )
438 #define IS_BOTTOM_OVERSHOOT( x ) ( CEILING( x ) - x >= ras.precision_half )
439 #define IS_TOP_OVERSHOOT( x ) ( x - FLOOR( x ) >= ras.precision_half )
557 #define ras cur_ra macro
561 #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 )
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...]

Completed in 469 milliseconds