OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ras
(Results
1 - 2
of
2
) sorted by null
/external/freetype/src/raster/
ftraster.c
433
#define FLOOR( x ) ( (x) & -
ras
.precision )
434
#define CEILING( x ) ( ( (x) +
ras
.precision - 1 ) & -
ras
.precision )
435
#define TRUNC( x ) ( (signed long)(x) >>
ras
.precision_bits )
436
#define FRAC( x ) ( (x) & (
ras
.precision - 1 ) )
437
#define SCALED( x ) ( ( (x) <<
ras
.scale_shift ) -
ras
.precision_half )
439
#define IS_BOTTOM_OVERSHOOT( x ) ( CEILING( x ) - x >=
ras
.precision_half )
440
#define IS_TOP_OVERSHOOT( x ) ( x - FLOOR( x ) >=
ras
.precision_half )
559
#define
ras
cur_ra
macro
563
#define
ras
macro
[
all
...]
/external/freetype/src/smooth/
ftgrays.c
368
#define
ras
(*worker)
macro
370
static TWorker
ras
;
variable
394
ras
.buffer = buffer;
395
ras
.buffer_size = byte_size;
397
ras
.ycells = (PCell*) buffer;
398
ras
.cells = NULL;
399
ras
.max_cells = 0;
400
ras
.num_cells = 0;
401
ras
.area = 0;
402
ras
.cover = 0
[
all
...]
Completed in 2491 milliseconds