Searched refs:adj (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/src/glsl/builtins/glsl/
H A Dinverse.glsl26 mat2 adj;
27 adj[0][0] = m[1][1];
28 adj[0][1] = -m[0][1];
29 adj[1][0] = -m[1][0];
30 adj[1][1] = m[0][0];
32 return adj / det;
37 mat3 adj;
38 adj[0][0] = + (m[1][1] * m[2][2] - m[2][1] * m[1][2]);
39 adj[1][0] = - (m[1][0] * m[2][2] - m[2][0] * m[1][2]);
40 adj[
[all...]
/external/mesa3d/src/glsl/builtins/glsl/
H A Dinverse.glsl26 mat2 adj;
27 adj[0][0] = m[1][1];
28 adj[0][1] = -m[0][1];
29 adj[1][0] = -m[1][0];
30 adj[1][1] = m[0][0];
32 return adj / det;
37 mat3 adj;
38 adj[0][0] = + (m[1][1] * m[2][2] - m[2][1] * m[1][2]);
39 adj[1][0] = - (m[1][0] * m[2][2] - m[2][0] * m[1][2]);
40 adj[
[all...]
/external/libvpx/libvpx/vp8/encoder/x86/
H A Ddenoising_sse2.c73 __m128i adj, padj, nadj; local
77 adj = _mm_sub_epi8(l3, adj2);
78 adj = _mm_andnot_si128(mask0, adj);
79 adj = _mm_or_si128(adj, adj0);
82 padj = _mm_andnot_si128(diff_sign, adj);
83 nadj = _mm_and_si128(diff_sign, adj);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
H A Ddenoising_sse2.c88 __m128i adj, padj, nadj; local
92 adj = _mm_sub_epi8(l3, adj2);
93 adj = _mm_andnot_si128(mask0, adj);
94 adj = _mm_or_si128(adj, adj0);
97 padj = _mm_andnot_si128(diff_sign, adj);
98 nadj = _mm_and_si128(diff_sign, adj);
152 const __m128i adj = local
156 padj = _mm_andnot_si128(diff_sign, adj);
265 __m128i adj, padj, nadj; local
338 const __m128i adj = local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_denoiser.c87 int diff, adj, absdiff, delta; local
116 adj = adj_val[0];
120 adj = adj_val[1];
123 adj = adj_val[2];
126 avg[c] = MIN(UINT8_MAX, sig[c] + adj);
127 total_adj += adj;
129 avg[c] = MAX(0, sig[c] - adj);
130 total_adj -= adj;
158 adj = abs(diff);
159 if (adj > delt
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A DdecContext.c377 const char *adj;
379 if (LITEND) adj="little";
380 else adj="big";
382 DECLITEND, adj);
/external/icu/icu4c/source/i18n/
H A DdecContext.c377 const char *adj;
379 if (LITEND) adj="little";
380 else adj="big";
382 DECLITEND, adj);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dpitch_estimator.c145 double adj, gain_tmp; local
223 adj = 0.2 * ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
224 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
230 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]);
244 adj = 0.9 * ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
245 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
251 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]);
266 adj = ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
267 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
273 corr = adj * (corrvec
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dpitch_estimator.c144 double adj, gain_tmp; local
222 adj = 0.2 * ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
223 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
229 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]);
243 adj = 0.9 * ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
244 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
250 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]);
265 adj = ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
266 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
272 corr = adj * (corrvec
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_setup_point.c336 int adj = (setup->pixel_offset != 0) ? 1 : 0; local
338 bbox.x0 = (x0 + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
339 bbox.x1 = (x0 + fixed_width + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
H A Dlp_setup_line.c546 int adj = (setup->pixel_offset != 0) ? 1 : 0; local
550 bbox.y0 = (MIN4(y[0], y[1], y[2], y[3]) + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
551 bbox.y1 = (MAX4(y[0], y[1], y[2], y[3]) + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_point.c336 int adj = (setup->pixel_offset != 0) ? 1 : 0; local
338 bbox.x0 = (x0 + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
339 bbox.x1 = (x0 + fixed_width + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineCubicIntersection.cpp91 double adj = line[1].x - line[0].x; local
95 r[n].x = (cubic[n].y - line[0].y) * adj - (cubic[n].x - line[0].x) * opp;
H A DLineQuadraticIntersection.cpp116 double adj = line[1].x - line[0].x; local
120 r[n] = (quad[n].y - line[0].y) * adj - (quad[n].x - line[0].x) * opp;
/external/skia/experimental/Intersection/
H A DLineCubicIntersection.cpp91 double adj = line[1].x - line[0].x; local
95 r[n].x = (cubic[n].y - line[0].y) * adj - (cubic[n].x - line[0].x) * opp;
H A DLineQuadraticIntersection.cpp116 double adj = line[1].x - line[0].x; local
120 r[n] = (quad[n].y - line[0].y) * adj - (quad[n].x - line[0].x) * opp;
/external/chromium_org/base/third_party/dmg_fp/
H A Ddtoa.cc2455 U aadj2, adj, rv, rv0; variable
3027 adj.d = 1.;
3032 adj.d = -1.;
3044 adj.d = -0.5;
3051 word0(&adj) += (2*P+1)*Exp_msk1 - y; variable
3057 dval(&rv) += adj.d*ulp(dval(&rv));
3063 dval(&rv) += adj.d*ulp(&rv);
3067 adj.d = ratio(delta, bs);
3068 if (adj.d < 1.)
3069 adj
3081 word0(&adj) += (2*P+1)*Exp_msk1 - y; variable
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp98 double adj = fLine[1].fX - fLine[0].fX; local
102 c[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp;
112 + (fCubic[n].fX - fLine[0].fX) * adj;
H A DSkDQuadLineIntersection.cpp124 double adj = fLine[1].fX - fLine[0].fX; local
128 r[n] = (fQuad[n].fY - fLine[0].fY) * adj - (fQuad[n].fX - fLine[0].fX) * opp;
/external/fio/
H A Dgoptions.c461 GtkAdjustment *adj; local
466 adj = gtk_spin_button_get_adjustment(spin);
467 value = gtk_adjustment_get_value(adj);
773 GtkAdjustment *adj; local
776 adj = gtk_spin_button_get_adjustment(spin);
777 val = gtk_adjustment_get_value(adj);
1254 GtkAdjustment *adj; local
1263 adj = gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(s->spin));
1264 *ullp = gtk_adjustment_get_value(adj);
1299 GtkAdjustment *adj; local
[all...]
/external/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp98 double adj = fLine[1].fX - fLine[0].fX; local
102 c[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp;
112 + (fCubic[n].fX - fLine[0].fX) * adj;
H A DSkDQuadLineIntersection.cpp124 double adj = fLine[1].fX - fLine[0].fX; local
128 r[n] = (fQuad[n].fY - fLine[0].fY) * adj - (fQuad[n].fX - fLine[0].fX) * opp;
/external/owasp/sanitizer/empiricism/
H A Dhtml-containment.js313 adj:
317 if (eq(dupe.node, adjacentNode)) { continue adj; }
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_emit_nv50.cpp56 inline void srcAddr16(const ValueRef&, bool adj, const int pos);
141 void CodeEmitterNV50::srcAddr16(const ValueRef& src, bool adj, const int pos) argument
147 assert(!adj || src.get()->reg.size <= 4);
148 if (adj)
154 offset &= adj ? (0xffff >> (src.get()->reg.size >> 1)) : 0xffff;
1790 int adj = 4; local
1795 adj = 8;
1799 adj = 8;
1807 fn->binSize += adj;
1808 insn->bb->binSize += adj;
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_emit_nv50.cpp56 inline void srcAddr16(const ValueRef&, bool adj, const int pos);
141 void CodeEmitterNV50::srcAddr16(const ValueRef& src, bool adj, const int pos) argument
147 assert(!adj || src.get()->reg.size <= 4);
148 if (adj)
154 offset &= adj ? (0xffff >> (src.get()->reg.size >> 1)) : 0xffff;
1790 int adj = 4; local
1795 adj = 8;
1799 adj = 8;
1807 fn->binSize += adj;
1808 insn->bb->binSize += adj;
[all...]

Completed in 6367 milliseconds

123