Home
last modified time | relevance | path

Searched refs:int16_t (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/OK3568_Linux_fs/buildroot/package/alsa-lib/
H A D0004-alsa-lib-fix-the-overflow-if-DCB_FILTER_16BIT-is-def.patch15 @@ -726,7 +726,7 @@ static int16_t y_prev_r3=0;
16 void dc_filter_left1(int16_t *pcmIn)
18 int16_t sampleIn, delta_x, sampleOut;
19 - int16_t a1_y_prev;
24 @@ -741,7 +741,7 @@ void dc_filter_left1(int16_t *pcmIn)
25 void dc_filter_right1(int16_t *pcmIn)
27 int16_t sampleIn, delta_x, sampleOut;
28 - int16_t a1_y_prev;
33 @@ -756,7 +756,7 @@ void dc_filter_right1(int16_t *pcmIn)
34 void dc_filter_left2(int16_t *pcmIn)
[all …]
H A D0002-add-dcbfilter-16bit-process.patch31 +static int16_t x_prev_l1=0;
32 +static int16_t y_prev_l1=0;
34 +static int16_t x_prev_r1=0;
35 +static int16_t y_prev_r1=0;
37 +static int16_t x_prev_l2=0;
38 +static int16_t y_prev_l2=0;
40 +static int16_t x_prev_r2=0;
41 +static int16_t y_prev_r2=0;
43 +static int16_t x_prev_l3=0;
44 +static int16_t y_prev_l3=0;
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dg711.c16 const int16_t lsx_alaw2linear16[256] = {
742 const int16_t lsx_ulaw2linear16[256] = {
2160 static const int16_t seg_aend[8] = {0x1F, 0x3F, 0x7F, 0xFF,
2162 static const int16_t seg_uend[8] = {0x3F, 0x7F, 0xFF, 0x1FF,
2165 static int16_t search( in search()
2166 int16_t val, in search()
2167 int16_t *table, in search()
2200 int16_t pcm_val) /* 2's complement (13-bit range) */ in sox_13linear2alaw()
2202 int16_t mask; in sox_13linear2alaw()
2239 int16_t sox_alaw2linear16( in sox_alaw2linear16()
[all …]
/OK3568_Linux_fs/kernel/drivers/misc/echo/
H A Dfir.h44 const int16_t *coeffs;
45 int16_t *history;
57 int16_t *history;
71 static inline const int16_t *fir16_create(struct fir16_state_t *fir, in fir16_create()
72 const int16_t *coeffs, int taps) in fir16_create()
77 fir->history = kcalloc(taps, sizeof(int16_t), GFP_KERNEL); in fir16_create()
83 memset(fir->history, 0, fir->taps * sizeof(int16_t)); in fir16_flush()
91 static inline int16_t fir16(struct fir16_state_t *fir, int16_t sample) in fir16()
110 return (int16_t) (y >> 15); in fir16()
113 static inline const int16_t *fir32_create(struct fir32_state_t *fir, in fir32_create()
[all …]
H A Decho.h118 int16_t tx;
119 int16_t rx;
120 int16_t clean;
121 int16_t clean_nlp;
131 int16_t adapt;
133 int16_t shift;
152 int16_t *fir_taps16[2];
172 int16_t *snapshot;
H A Decho.c127 ec->fir_taps16[1][i] += (int16_t) ((exp + (1 << 14)) >> 15); in lms_adapt_bg()
131 ec->fir_taps16[1][i] += (int16_t) ((exp + (1 << 14)) >> 15); in lms_adapt_bg()
147 const int16_t *history; in oslec_create()
158 kcalloc(ec->taps, sizeof(int16_t), GFP_KERNEL); in oslec_create()
163 kcalloc(ec->taps, sizeof(int16_t), GFP_KERNEL); in oslec_create()
180 ec->snapshot = kcalloc(ec->taps, sizeof(int16_t), GFP_KERNEL); in oslec_create()
247 memset(ec->fir_taps16[i], 0, ec->taps * sizeof(int16_t)); in oslec_flush()
256 memcpy(ec->snapshot, ec->fir_taps16[0], ec->taps * sizeof(int16_t)); in oslec_snapshot()
262 int16_t oslec_update(struct oslec_state *ec, int16_t tx, int16_t rx) in oslec_update()
443 ec->taps * sizeof(int16_t)); in oslec_update()
[all …]
H A Doslec.h70 int16_t oslec_update(struct oslec_state *ec, int16_t tx, int16_t rx);
79 int16_t oslec_hpf_tx(struct oslec_state *ec, int16_t tx);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geojsonvt/6.5.1/include/mapbox/geojsonvt/
H A Dtile.hpp11 mapbox::geometry::feature_collection<int16_t> features;
116 mapbox::geometry::point<int16_t> transform(const vt_point& p) { in transform()
118 return { static_cast<int16_t>(::round((p.x * z2 - x) * extent)), in transform()
119 static_cast<int16_t>(::round((p.y * z2 - y) * extent)) }; in transform()
122 mapbox::geometry::multi_point<int16_t> transform(const vt_multi_point& points) { in transform()
123 mapbox::geometry::multi_point<int16_t> result; in transform()
131 mapbox::geometry::line_string<int16_t> transform(const vt_line_string& line) { in transform()
132 mapbox::geometry::line_string<int16_t> result; in transform()
142 mapbox::geometry::linear_ring<int16_t> transform(const vt_linear_ring& ring) { in transform()
143 mapbox::geometry::linear_ring<int16_t> result; in transform()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/
H A Dclip_lines.cpp9 const int16_t x1, const int16_t y1, const int16_t x2, const int16_t y2) { in clipLines()
26 …p0 = { x1, static_cast<int16_t>(::round(p0.y + (p1.y - p0.y) * ((float)(x1 - p0.x) / (p1.x - p0.x)… in clipLines()
28 …p1 = { x1, static_cast<int16_t>(::round(p0.y + (p1.y - p0.y) * ((float)(x1 - p0.x) / (p1.x - p0.x)… in clipLines()
34 …p0 = { static_cast<int16_t>(::round(p0.x + (p1.x - p0.x) * ((float)(y1 - p0.y) / (p1.y - p0.y)))),… in clipLines()
36 …p1 = { static_cast<int16_t>(::round(p0.x + (p1.x - p0.x) * ((float)(y1 - p0.y) / (p1.y - p0.y)))),… in clipLines()
42 …p0 = { x2, static_cast<int16_t>(::round(p0.y + (p1.y - p0.y) * ((float)(x2 - p0.x) / (p1.x - p0.x)… in clipLines()
44 …p1 = { x2, static_cast<int16_t>(::round(p0.y + (p1.y - p0.y) * ((float)(x2 - p0.x) / (p1.x - p0.x)… in clipLines()
50 …p0 = { static_cast<int16_t>(::round(p0.x + (p1.x - p0.x) * ((float)(y2 - p0.y) / (p1.y - p0.y)))),… in clipLines()
52 …p1 = { static_cast<int16_t>(::round(p0.x + (p1.x - p0.x) * ((float)(y2 - p0.y) / (p1.y - p0.y)))),… in clipLines()
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/isp/kernels/csc/csc_1.0/
H A Dia_css_csc.host.c41 to->m_shift = (int16_t)from->fraction_bits; in ia_css_encode_cc()
42 to->m00 = (int16_t)from->matrix[0]; in ia_css_encode_cc()
43 to->m01 = (int16_t)from->matrix[1]; in ia_css_encode_cc()
44 to->m02 = (int16_t)from->matrix[2]; in ia_css_encode_cc()
45 to->m10 = (int16_t)from->matrix[3]; in ia_css_encode_cc()
46 to->m11 = (int16_t)from->matrix[4]; in ia_css_encode_cc()
47 to->m12 = (int16_t)from->matrix[5]; in ia_css_encode_cc()
48 to->m20 = (int16_t)from->matrix[6]; in ia_css_encode_cc()
49 to->m21 = (int16_t)from->matrix[7]; in ia_css_encode_cc()
50 to->m22 = (int16_t)from->matrix[8]; in ia_css_encode_cc()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dcollision_box_program.hpp44 static_cast<int16_t>(a.x), in vertex()
45 static_cast<int16_t>(a.y) in vertex()
48 static_cast<int16_t>(anchor.x), in vertex()
49 static_cast<int16_t>(anchor.y) in vertex()
52 static_cast<int16_t>(::round(o.x)), in vertex()
53 static_cast<int16_t>(::round(o.y)) in vertex()
123 static_cast<int16_t>(a.x), in vertex()
124 static_cast<int16_t>(a.y) in vertex()
127 static_cast<int16_t>(anchor.x), in vertex()
128 static_cast<int16_t>(anchor.y) in vertex()
[all …]
H A Dattributes.hpp23 MBGL_DEFINE_ATTRIBUTE(int16_t, 2, a_pos);
24 MBGL_DEFINE_ATTRIBUTE(int16_t, 2, a_extrude);
25 MBGL_DEFINE_ATTRIBUTE(int16_t, 4, a_pos_offset);
26 MBGL_DEFINE_ATTRIBUTE(int16_t, 4, a_pos_normal);
28 MBGL_DEFINE_ATTRIBUTE(int16_t, 2, a_label_pos);
29 MBGL_DEFINE_ATTRIBUTE(int16_t, 2, a_anchor_pos);
31 MBGL_DEFINE_ATTRIBUTE(int16_t, 4, a_normal_ed);
49 using Type = gl::Attribute<int16_t, N>;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dgeometry_tile_data.hpp19 using GeometryCoordinate = Point<int16_t>;
23 using coordinate_type = int16_t;
33 using coordinate_type = int16_t;
86 GeometryCollection operator()(const mapbox::geometry::point<int16_t>& geom) const { in operator ()()
89 GeometryCollection operator()(const mapbox::geometry::multi_point<int16_t>& geom) const { in operator ()()
97 GeometryCollection operator()(const mapbox::geometry::line_string<int16_t>& geom) const { in operator ()()
105 GeometryCollection operator()(const mapbox::geometry::multi_line_string<int16_t>& geom) const { in operator ()()
118 GeometryCollection operator()(const mapbox::geometry::polygon<int16_t>& geom) const { in operator ()()
131 GeometryCollection operator()(const mapbox::geometry::multi_polygon<int16_t>& geom) const { in operator ()()
145 GeometryCollection operator()(const mapbox::geometry::geometry_collection<int16_t>&) const { in operator ()()
H A Dgeojson_tile_data.hpp10 const mapbox::geometry::feature<int16_t>& feature;
12 GeoJSONTileFeature(const mapbox::geometry::feature<int16_t>& feature_) in GeoJSONTileFeature()
50 GeoJSONTileLayer(std::shared_ptr<const mapbox::geometry::feature_collection<int16_t>> features_) in GeoJSONTileLayer()
67 std::shared_ptr<const mapbox::geometry::feature_collection<int16_t>> features;
72 GeoJSONTileData(mapbox::geometry::feature_collection<int16_t> features_) in GeoJSONTileData()
73 : features(std::make_shared<mapbox::geometry::feature_collection<int16_t>>( in GeoJSONTileData()
77 GeoJSONTileData(std::shared_ptr<const mapbox::geometry::feature_collection<int16_t>> features_) in GeoJSONTileData()
91 std::shared_ptr<const mapbox::geometry::feature_collection<int16_t>> features;
/OK3568_Linux_fs/kernel/drivers/gpu/drm/radeon/
H A Dsmu7_discrete.h437 int16_t TempMin;
438 int16_t TempMed;
439 int16_t TempMax;
440 int16_t Slope1;
441 int16_t Slope2;
442 int16_t FdoMin;
443 int16_t HystUp;
444 int16_t HystDown;
445 int16_t HystSlope;
446 int16_t TempRespLim;
[all …]
H A Dsislands_smc.h253 int16_t temp_min;
254 int16_t temp_med;
255 int16_t temp_max;
256 int16_t slope1;
257 int16_t slope2;
258 int16_t fdo_min;
259 int16_t hys_up;
260 int16_t hys_down;
261 int16_t hys_slope;
262 int16_t temp_resp_lim;
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/pm/inc/
H A Dsmu7_discrete.h438 int16_t TempMin;
439 int16_t TempMed;
440 int16_t TempMax;
441 int16_t Slope1;
442 int16_t Slope2;
443 int16_t FdoMin;
444 int16_t HystUp;
445 int16_t HystDown;
446 int16_t HystSlope;
447 int16_t TempRespLim;
[all …]
H A Dsmu71_discrete.h380 int16_t TempMin;
381 int16_t TempMed;
382 int16_t TempMax;
383 int16_t Slope1;
384 int16_t Slope2;
385 int16_t FdoMin;
386 int16_t HystUp;
387 int16_t HystDown;
388 int16_t HystSlope;
389 int16_t TempRespLim;
[all …]
H A Dsmu73_discrete.h374 int16_t TempMin;
375 int16_t TempMed;
376 int16_t TempMax;
377 int16_t Slope1;
378 int16_t Slope2;
379 int16_t FdoMin;
380 int16_t HystUp;
381 int16_t HystDown;
382 int16_t HystSlope;
383 int16_t TempRespLim;
[all …]
H A Dsmu74_discrete.h230 int16_t m2;
377 int16_t TempMin;
378 int16_t TempMed;
379 int16_t TempMax;
380 int16_t Slope1;
381 int16_t Slope2;
382 int16_t FdoMin;
383 int16_t HystUp;
384 int16_t HystDown;
385 int16_t HystSlope;
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_hw_util.h51 int16_t sharpen_level1;
52 int16_t sharpen_level2;
60 int16_t adjust_a[DPU_MAX_DE_CURVES];
61 int16_t adjust_b[DPU_MAX_DE_CURVES];
62 int16_t adjust_c[DPU_MAX_DE_CURVES];
200 int16_t sharpen_level1;
201 int16_t sharpen_level2;
209 int16_t adjust_a[DPU_MAX_DE_CURVES];
210 int16_t adjust_b[DPU_MAX_DE_CURVES];
211 int16_t adjust_c[DPU_MAX_DE_CURVES];
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/pm/powerplay/
H A Dsislands_smc.h253 int16_t temp_min;
254 int16_t temp_med;
255 int16_t temp_max;
256 int16_t slope1;
257 int16_t slope2;
258 int16_t fdo_min;
259 int16_t hys_up;
260 int16_t hys_down;
261 int16_t hys_slope;
262 int16_t temp_resp_lim;
[all …]
/OK3568_Linux_fs/kernel/include/xen/interface/
H A Dgrant_table.h269 int16_t status; /* GNTST_* */
293 int16_t status; /* GNTST_* */
312 int16_t status; /* GNTST_* */
326 int16_t status; /* GNTST_* */
345 int16_t status;
386 int16_t status;
404 int16_t status; /* GNTST_* */
426 int16_t status; /* GNTST_* */
462 int16_t status; /* GNTST_* */
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dtile_coordinate.hpp39int16_t(util::clamp<int64_t>((zoomed.p.x - tileID.canonical.x - tileID.wrap * scale) * util::EXTEN… in toGeometryCoordinate()
40 std::numeric_limits<int16_t>::min(), in toGeometryCoordinate()
41 std::numeric_limits<int16_t>::max())), in toGeometryCoordinate()
42 int16_t(util::clamp<int64_t>((zoomed.p.y - tileID.canonical.y) * util::EXTENT, in toGeometryCoordinate()
43 std::numeric_limits<int16_t>::min(), in toGeometryCoordinate()
44 std::numeric_limits<int16_t>::max())) in toGeometryCoordinate()
/OK3568_Linux_fs/external/linux-rga/core/hardware/
H A Drga_ioctl.h174 int16_t gr_x_a;
175 int16_t gr_y_a;
176 int16_t gr_x_b;
177 int16_t gr_y_b;
178 int16_t gr_x_g;
179 int16_t gr_y_g;
180 int16_t gr_x_r;
181 int16_t gr_y_r;
202 int16_t r_v;
203 int16_t g_y;
[all …]

12345678910>>...15