OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fir
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/freetype/src/base/
ftlcdfil.c
32
/*
FIR
filter used by the default and light filters */
43
/* horizontal in-place
FIR
filter */
51
FT_UInt
fir
[5];
local
56
fir
[0] = weights[2] * val1;
57
fir
[1] = weights[3] * val1;
58
fir
[2] = weights[4] * val1;
59
fir
[3] = 0;
60
fir
[4] = 0;
63
fir
[0] += weights[1] * val1;
64
fir
[1] += weights[2] * val1
110
FT_UInt
fir
[5];
local
[
all
...]
/external/freetype/src/base/
ftlcdfil.c
32
/*
FIR
filter used by the default and light filters */
43
/* horizontal in-place
FIR
filter */
51
FT_UInt
fir
[5];
local
56
fir
[0] = weights[2] * val1;
57
fir
[1] = weights[3] * val1;
58
fir
[2] = weights[4] * val1;
59
fir
[3] = 0;
60
fir
[4] = 0;
63
fir
[0] += weights[1] * val1;
64
fir
[1] += weights[2] * val1
110
FT_UInt
fir
[5];
local
[
all
...]
/external/chromium_org/third_party/skia/src/core/
SkScalerContext.cpp
438
// An N tap
FIR
is defined by
443
// The strategy is to use one
FIR
(different coefficients) for each of r, g, and b.
444
// This means using every 4th
FIR
output value of each
FIR
and discarding the rest.
471
// TODO: this
fir
filter implementation is straight forward, but slow.
474
int
fir
[LCD_PER_PIXEL] = { 0 };
local
481
fir
[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value;
485
fir
[subpxl_index] /= 0x100;
486
fir
[subpxl_index] = SkMin32(
fir
[subpxl_index], 255)
[
all
...]
/external/skia/src/core/
SkScalerContext.cpp
438
// An N tap
FIR
is defined by
443
// The strategy is to use one
FIR
(different coefficients) for each of r, g, and b.
444
// This means using every 4th
FIR
output value of each
FIR
and discarding the rest.
471
// TODO: this
fir
filter implementation is straight forward, but slow.
474
int
fir
[LCD_PER_PIXEL] = { 0 };
local
481
fir
[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value;
485
fir
[subpxl_index] /= 0x100;
486
fir
[subpxl_index] = SkMin32(
fir
[subpxl_index], 255)
[
all
...]
/external/chromium_org/media/cast/rtcp/
rtcp_utility.h
180
RtcpFieldPayloadSpecificFir
fir
;
member in union:media::cast::RtcpField
/external/qemu/hw/
pxa.h
142
PXA2xxFIrState *
fir
;
member in struct:__anon25462
Completed in 135 milliseconds