/external/pdfium/third_party/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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/raster/ |
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 macro 553 #define ras macro [all...] |
/external/pdfium/third_party/freetype/src/raster/ |
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 macro 553 #define ras macro [all...] |
/external/freetype/src/raster/ |
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 ) ( ( (Long)(x) << ras.scale_shift ) - ras.precision_half ) 456 (Bool)( CEILING( x ) - x >= ras.precision_half ) 458 (Bool)( x - FLOOR( x ) >= ras.precision_half ) 547 #define ras cur_ra macro 551 #define ras macro [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/smooth/ |
ftgrays.c | 486 #define ras (*worker) macro 488 static gray_TWorker ras; variable 508 ras.buffer = buffer; 509 ras.buffer_size = byte_size; 511 ras.ycells = (PCell*) buffer; 512 ras.cells = NULL; 513 ras.max_cells = 0; 514 ras.num_cells = 0; 515 ras.area = 0; 516 ras.cover = 0 [all...] |
/external/freetype/src/smooth/ |
ftgrays.c | 479 #define ras (*worker) macro 481 static gray_TWorker ras; variable 501 ras.buffer = buffer; 502 ras.buffer_size = byte_size; 504 ras.ycells = (PCell*) buffer; 505 ras.cells = NULL; 506 ras.max_cells = 0; 507 ras.num_cells = 0; 508 ras.area = 0; 509 ras.cover = 0 [all...] |
/external/pdfium/third_party/freetype/src/smooth/ |
ftgrays.c | 475 #define ras (*worker) macro 477 static gray_TWorker ras; variable 497 ras.buffer = buffer; 498 ras.buffer_size = byte_size; 500 ras.ycells = (PCell*) buffer; 501 ras.cells = NULL; 502 ras.max_cells = 0; 503 ras.num_cells = 0; 504 ras.area = 0; 505 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/selinux/sepolgen/src/sepolgen/ |
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)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
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)
|
/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...] |
/prebuilts/go/darwin-x86/src/net/ |
dial.go | 290 func dialSerialAsync(ctx *dialContext, ras addrList, timer *time.Timer, cancel <-chan struct{}, results chan<- dialResult) { 299 c, err := dialSerial(ctx, ras, cancel) 313 func dialSerial(ctx *dialContext, ras addrList, cancel <-chan struct{}) (Conn, error) { 316 for i, ra := range ras { 323 partialDeadline, err := partialDeadline(time.Now(), ctx.finalDeadline, len(ras)-i)
|
/prebuilts/go/linux-x86/src/net/ |
dial.go | 290 func dialSerialAsync(ctx *dialContext, ras addrList, timer *time.Timer, cancel <-chan struct{}, results chan<- dialResult) { 299 c, err := dialSerial(ctx, ras, cancel) 313 func dialSerial(ctx *dialContext, ras addrList, cancel <-chan struct{}) (Conn, error) { 316 for i, ra := range ras { 323 partialDeadline, err := partialDeadline(time.Now(), ctx.finalDeadline, len(ras)-i)
|
/external/selinux/libsepol/cil/src/ |
cil_reset_ast.c | 161 static void cil_reset_roleattributeset(struct cil_roleattributeset *ras) 163 cil_list_destroy(&ras->datum_expr, CIL_FALSE);
|
/external/caliper/lib/ |
jersey-core-1.11.jar | |