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

1 2

  /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/freetype/src/raster/
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 macro
561 #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/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/freetype/src/smooth/
ftgrays.c 468 #define ras (*worker) macro
470 static gray_TWorker ras; variable
491 for ( y = ras.min_ey; y < ras.max_ey; y++ )
493 PCell cell = ras.ycells[y - ras.min_ey];
516 TCoord x = ras.ex;
519 pcell = &ras.ycells[ras.ey - ras.min_ey]
    [all...]
  /frameworks/base/telephony/java/android/telephony/
RadioAccessSpecifier.java 106 RadioAccessSpecifier ras; local
109 ras = (RadioAccessSpecifier) o;
118 return (radioAccessNetwork == ras.radioAccessNetwork
119 && Arrays.equals(bands, ras.bands)
120 && Arrays.equals(channels, ras.channels));
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
RadioAccessSpecifierTest.java 39 RadioAccessSpecifier ras = new RadioAccessSpecifier(ranGsm, gsmBands, gsmChannels); local
42 ras.writeToParcel(p, 0);
46 assertEquals(ras, newRas);
NetworkScanRequestTest.java 46 RadioAccessSpecifier[] ras = {gsm, lte}; local
47 NetworkScanRequest nsq = new NetworkScanRequest(NetworkScanRequest.SCAN_TYPE_ONE_SHOT, ras);
  /external/llvm/test/MC/AArch64/
directive-arch.s 9 .arch armv8.1-a+ras
  /libcore/luni/src/test/java/dalvik/system/
BlockGuardTest.java 180 try (RandomAccessFile ras = new RandomAccessFile(f, "rw")) {
182 ras.seek(0);
186 ras.read("a".getBytes());
191 try (RandomAccessFile ras = new RandomAccessFile(f, "rw")) {
197 ras.write("a".getBytes());
199 ras.read("a".getBytes());
204 try (RandomAccessFile ras = new RandomAccessFile(f, "rw")) {
210 ras.seek(0);
212 ras.read("a".getBytes());
217 try (RandomAccessFile ras = new RandomAccessFile(f, "rw"))
    [all...]
  /external/llvm/test/MC/ARM/
ras-extension.s 1 @ RUN: llvm-mc -triple armv8a-none-eabi -mattr=+ras -show-encoding %s | FileCheck %s --check-prefix=ARM
2 @ RUN: llvm-mc -triple thumbv8a-none-eabi -mattr=+ras -show-encoding %s | FileCheck %s --check-prefix=THUMB
  /external/selinux/python/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)
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
NetworkScanRequestTracker.java 116 for (RadioAccessSpecifier ras : nsri.mRequest.specifiers) {
117 if (ras.radioAccessNetwork != GERAN && ras.radioAccessNetwork != UTRAN
118 && ras.radioAccessNetwork != EUTRAN) {
121 if (ras.bands != null && ras.bands.length > NetworkScanRequest.MAX_BANDS) {
124 if (ras.channels != null && ras.channels.length > NetworkScanRequest.MAX_CHANNELS) {
RIL.java     [all...]
  /external/libcups/filter/
rastertohp.c 647 cups_raster_t *ras; /* Raster stream for printing */ local
695 ras = cupsRasterOpen(fd, CUPS_RASTER_READ);
744 while (cupsRasterReadHeader2(ras, &header))
790 if (cupsRasterReadPixels(ras, Planes[0], header.cupsBytesPerLine) < 1)
829 cupsRasterClose(ras);
rastertoepson.c 976 cups_raster_t *ras; /* Raster stream for printing */ local
1025 ras = cupsRasterOpen(fd, CUPS_RASTER_READ);
1076 while (cupsRasterReadHeader2(ras, &header))
1122 if (cupsRasterReadPixels(ras, Planes[0], header.cupsBytesPerLine) < 1)
1156 cupsRasterClose(ras);
rastertolabel.c 1089 cups_raster_t *ras; /* Raster stream for printing */ local
1139 ras = cupsRasterOpen(fd, CUPS_RASTER_READ);
1197 while (cupsRasterReadHeader2(ras, &header))
1243 if (cupsRasterReadPixels(ras, Buffer, header.cupsBytesPerLine) < 1)
1269 cupsRasterClose(ras);
testraster.c 236 puts(" testraster [filename.ras ...]");
244 puts(" testraster [filename.ras ...]");
258 puts(" testraster [filename.ras ...]");
454 cups_raster_t *ras; /* Raster stream */ local
467 if ((ras = cupsRasterOpen(fd, CUPS_RASTER_READ)) == NULL)
476 while (cupsRasterReadHeader2(ras, &header))
487 if (cupsRasterReadPixels(ras, data, header.cupsBytesPerLine) <
501 cupsRasterClose(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 18 #include <ras.h>
  /prebuilts/go/darwin-x86/src/net/
dial.go 406 ras := primaries
408 ras = fallbacks
410 c, err := dialSerial(ctx, dp, ras)
463 func dialSerial(ctx context.Context, dp *dialParam, ras addrList) (Conn, error) {
466 for i, ra := range ras {
474 partialDeadline, err := partialDeadline(time.Now(), deadline, len(ras)-i)
  /prebuilts/go/linux-x86/src/net/
dial.go 406 ras := primaries
408 ras = fallbacks
410 c, err := dialSerial(ctx, dp, ras)
463 func dialSerial(ctx context.Context, dp *dialParam, ras addrList) (Conn, error) {
466 for i, ra := range ras {
474 partialDeadline, err := partialDeadline(time.Now(), deadline, 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);

Completed in 915 milliseconds

1 2