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

1 2 3 4

  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/glsl/
inverse.glsl 26 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[2][0] = + (m[1][0] * m[2][1] - m[2][0] * m[1][1])
    [all...]
  /external/mesa3d/src/glsl/builtins/glsl/
inverse.glsl 26 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[2][0] = + (m[1][0] * m[2][1] - m[2][0] * m[1][1])
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
denoising_sse2.c 75 __m128i adj, padj, nadj; local
79 adj = _mm_sub_epi8(l3, adj2);
80 adj = _mm_andnot_si128(mask0, adj);
81 adj = _mm_or_si128(adj, adj0);
84 padj = _mm_andnot_si128(diff_sign, adj);
85 nadj = _mm_and_si128(diff_sign, adj);
  /external/libvpx/libvpx/vp8/encoder/x86/
denoising_sse2.c 73 __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);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
denoising_sse2.c 74 __m128i adj, padj, nadj; local
78 adj = _mm_sub_epi8(l3, adj2);
79 adj = _mm_andnot_si128(mask0, adj);
80 adj = _mm_or_si128(adj, adj0);
83 padj = _mm_andnot_si128(diff_sign, adj);
84 nadj = _mm_and_si128(diff_sign, adj);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmal.c 168 long double xs, ys, zs, adj; local
237 * adj = xy.lo + r.lo (inexact; low bit is sticky)
238 * result = r.hi + adj (correctly rounded)
263 adj = vrlo + xy.lo;
264 return (ldexpl(r.hi + adj, spread));
267 adj = add_adjusted(r.lo, xy.lo);
269 return (ldexpl(r.hi + adj, spread));
271 return (add_and_denormalize(r.hi, adj, spread));
s_fma.c 180 double xs, ys, zs, adj; local
249 * adj = xy.lo + r.lo (inexact; low bit is sticky)
250 * result = r.hi + adj (correctly rounded)
275 adj = vrlo + xy.lo;
276 return (ldexp(r.hi + adj, spread));
279 adj = add_adjusted(r.lo, xy.lo);
281 return (ldexp(r.hi + adj, spread));
283 return (add_and_denormalize(r.hi, adj, spread));
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
strtod.c 98 U adj, aadj1, rv, rv0; local
701 dval(&adj) = 1.;
706 dval(&adj) = -1.;
720 dval(&adj) = -0.5;
727 word0(&adj) += (2*P+1)*Exp_msk1 - y;
733 dval(&rv) += adj*ulp(&rv);
739 dval(&rv) += adj.d*ulp(&rv);
743 dval(&adj) = ratio(delta, bs);
744 if (adj.d < 1.)
745 dval(&adj) = 1.
    [all...]
strtodg.c 353 U adj, rv; local
615 dval(&adj) = dval(&rv);
616 word0(&adj) -= P*Exp_msk1;
617 /* adj = */ rounded_product(dval(&adj), tens[e2]);
618 if ((word0(&adj) & Exp_mask)
621 word0(&adj) += P*Exp_msk1;
622 dval(&rv) = dval(&adj);
936 if ((dval(&adj) = ratio(delta, bs)) <= 2.) {
950 adj0 = dval(&adj) = 1.
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AppWindowAnimator.java 102 int adj = 0; local
104 adj = WindowManagerService.TYPE_LAYER_OFFSET;
106 adj = -WindowManagerService.TYPE_LAYER_OFFSET;
109 if (animLayerAdjustment != adj) {
110 animLayerAdjustment = adj;
162 final int adj = animLayerAdjustment; local
167 winAnimator.mAnimLayer = w.mLayer + adj;
174 mService.setInputMethodAnimLayerAdjustment(adj);
177 mService.setWallpaperAnimLayerAdjustmentLocked(adj);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
BrightnessController.java 215 final float adj = value / (BRIGHTNESS_ADJ_RESOLUTION / 2f) - 1; local
216 setBrightnessAdj(adj);
221 Settings.System.SCREEN_AUTO_BRIGHTNESS_ADJ, adj,
246 private void setBrightnessAdj(float adj) {
248 mPower.setTemporaryScreenAutoBrightnessAdjustmentSettingOverride(adj);
  /frameworks/base/core/java/android/os/
IPowerManager.aidl 57 void setTemporaryScreenAutoBrightnessAdjustmentSettingOverride(float adj);
  /external/chromium_org/third_party/icu/source/i18n/
decContext.c 383 const char *adj; local
385 if (LITEND) adj="little";
386 else adj="big";
388 DECLITEND, adj);
  /external/icu/icu4c/source/i18n/
decContext.c 377 const char *adj;
379 if (LITEND) adj="little";
380 else adj="big";
382 DECLITEND, adj);
  /frameworks/base/services/core/java/com/android/server/am/
ProcessRecord.java 129 int adjTypeCode; // Debugging: adj code to report to app.
487 int modifyRawOomAdj(int adj) {
494 if (adj < ProcessList.FOREGROUND_APP_ADJ) {
496 } else if (adj < ProcessList.VISIBLE_APP_ADJ) {
497 adj = ProcessList.VISIBLE_APP_ADJ;
498 } else if (adj < ProcessList.PERCEPTIBLE_APP_ADJ) {
499 adj = ProcessList.PERCEPTIBLE_APP_ADJ;
500 } else if (adj < ProcessList.CACHED_APP_MIN_ADJ) {
501 adj = ProcessList.CACHED_APP_MIN_ADJ;
502 } else if (adj < ProcessList.CACHED_APP_MAX_ADJ)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
pitch_estimator.c 144 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 * (corrvec1[ind2++] + corrvec2[ind1++])
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
pitch_estimator.c 144 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 * (corrvec1[ind2++] + corrvec2[ind1++])
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_point.c 336 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/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_point.c 336 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/
LineCubicIntersection.cpp 91 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;
  /external/skia/experimental/Intersection/
LineCubicIntersection.cpp 91 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;
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 2437 U aadj2, adj, rv, rv0; variable
3031 word0(&adj) += (2*P+1)*Exp_msk1 - y; variable
3061 word0(&adj) += (2*P+1)*Exp_msk1 - y; variable
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkDCubicLineIntersection.cpp 98 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;
  /external/fio/
goptions.c 461 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/
SkDCubicLineIntersection.cpp 98 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;

Completed in 839 milliseconds

1 2 3 4