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

1 2 3 4 5 6 7

  /external/webrtc/webrtc/modules/video_processing/util/
denoiser_filter_c.cc 89 int adjustment = 0; local
102 adjustment = adj_val[0];
104 adjustment = adj_val[1];
106 adjustment = adj_val[2];
109 if ((sig[c] + adjustment) > 255)
112 running_avg_y[c] = sig[c] + adjustment;
114 col_sum[c] += adjustment;
116 if ((sig[c] - adjustment) < 0)
119 running_avg_y[c] = sig[c] - adjustment;
121 col_sum[c] -= adjustment;
152 int adjustment = abs(diff); local
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter_ipv6/
ip6t_NPT.h 28 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_NPT.h 13 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /external/kernel-headers/original/uapi/linux/netfilter_ipv6/
ip6t_NPT.h 14 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /external/tensorflow/tensorflow/stream_executor/lib/
mathutil.h 73 // When rounded_toward_zero is negative, then an adjustment is never needed:
75 // When rounded_toward_zero is non-negative, an adjustment is needed if the
85 const IntegralType adjustment = static_cast<IntegralType>(needs_adjustment); local
86 const IntegralType ceil_of_ratio = rounded_toward_zero + adjustment;
93 const IntegralType adjustment = static_cast<IntegralType>(needs_adjustment); local
94 const IntegralType floor_of_ratio = rounded_toward_zero - adjustment;
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 33 * adjustment = filtered_value - current_raw
42 * The adjustment vs. diff curve becomes flat very quick when diff increases.
47 * diff adjustment w/o motion correction adjustment w/ motion correction
72 * increasing the adjustment for each level. Add another increment for
87 int adjustment = 0; local
100 adjustment = adj_val[0];
102 adjustment = adj_val[1];
104 adjustment = adj_val[2];
108 if ((sig[c] + adjustment) > 255)
171 int adjustment = abs(diff); local
259 int adjustment = 0; local
322 int adjustment = abs(diff); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
BrightnessMappingStrategy.java 184 * Returns the current auto-brightness adjustment.
186 * The returned adjustment is a value in the range [-1.0, 1.0] such that
187 * {@code config_autoBrightnessAdjustmentMaxGamma<sup>-adjustment</sup>} is used to gamma
193 * Sets the auto-brightness adjustment.
195 * @param adjustment The desired auto-brightness adjustment.
196 * @return Whether the auto-brightness adjustment has changed.
198 * @Deprecated The auto-brightness adjustment should not be set directly, but rather inferred
201 public abstract boolean setAutoBrightnessAdjustment(float adjustment);
339 float adjustment = 0 local
494 float adjustment = inferAutoBrightnessAdjustment(mMaxGamma, local
682 float adjustment = inferAutoBrightnessAdjustment(mMaxGamma, local
    [all...]
  /frameworks/base/media/java/android/media/audiopolicy/
IAudioPolicyCallback.aidl 36 void notifyVolumeAdjust(int adjustment);
  /tools/loganalysis/src/com/android/loganalysis/item/
LowMemoryKillerItem.java 36 public static final String ADJUSTMENT = "ADJUSTMENT";
39 PID, PROCESS_NAME, ADJUSTMENT));
77 * Get the adjustment score of the LMK action.
80 return (int) getAttribute(ADJUSTMENT);
84 * Set the adjustment score of the LMK action.
86 public void setAdjustment(int adjustment) {
87 setAttribute(ADJUSTMENT, adjustment);
  /external/tensorflow/tensorflow/core/lib/math/
math_util.h 106 // When rounded_toward_zero is negative, then an adjustment is never needed:
108 // When rounded_toward_zero is non-negative, an adjustment is needed if the
120 const IntegralType adjustment = static_cast<IntegralType>(needs_adjustment); local
121 const IntegralType ceil_of_ratio = rounded_toward_zero + adjustment;
129 const IntegralType adjustment = static_cast<IntegralType>(needs_adjustment); local
130 const IntegralType floor_of_ratio = rounded_toward_zero - adjustment;
  /frameworks/base/core/java/android/gesture/
Instance.java 96 float adjustment = -orientation; local
101 if (Math.abs(delta) < Math.abs(adjustment)) {
102 adjustment = delta;
108 GestureUtils.rotate(pts, adjustment);
  /art/dex2oat/linker/
multi_oat_relative_patcher.cc 38 void MultiOatRelativePatcher::StartOatFile(uint32_t adjustment) {
39 DCHECK_ALIGNED(adjustment, kPageSize);
40 adjustment_ = adjustment;
  /art/runtime/
indenter.h 125 void IncreaseIndentation(size_t adjustment) {
126 indenter_.count_ += adjustment;
129 void DecreaseIndentation(size_t adjustment) {
130 DCHECK_GE(indenter_.count_, adjustment);
131 indenter_.count_ -= adjustment;
144 size_t adjustment = kIndentBy1Count)
146 adjustment_(adjustment) {
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
ResizingTextView.java 149 * @return desired adjustment to top padding for resized text
156 * Set the desired adjustment to top padding for resized text.
158 * @param adjustment The adjustment to top padding, in pixels
160 public void setResizedPaddingAdjustmentTop(int adjustment) {
161 if (mResizedPaddingAdjustmentTop != adjustment) {
162 mResizedPaddingAdjustmentTop = adjustment;
168 * @return desired adjustment to bottom padding for resized text
175 * Set the desired adjustment to bottom padding for resized text.
177 * @param adjustment The adjustment to bottom padding, in pixel
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
split_i386_3.s 1 # split_i386_3.s: i386 specific, adjustment failure
split_i386_4.s 1 # split_i386_4.s: i386 specific, permitted adjustment failure
split_x32_3.s 1 # split_x32_3.s: x32 specific, adjustment failure
split_x32_4.s 1 # split_x32_4.s: x32 specific, permitted adjustment failure
split_x86_64_3.s 1 # split_x86_64_3.s: x86_64 specific, adjustment failure
split_x86_64_4.s 1 # split_x86_64_4.s: x86_64 specific, permitted adjustment failure
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-m68hc11/
bug-1403.s 1 ;;; Bug #1403: Branch adjustment to another section not correct when doing linker relaxation
  /frameworks/base/cmds/media/src/com/android/commands/media/
VolumeCtrl.java 80 String adjustment = null; local
101 adjustment = cmd.nextArgRequired();
112 if (adjustment == null) {
113 cmd.showError("Error: no valid volume adjustment (null)");
116 switch (adjustment) {
121 cmd.showError("Error: no valid volume adjustment, was " + adjustment
  /frameworks/base/core/java/android/service/notification/
NotificationAssistantService.java 72 * {@link Adjustment#KEY_SNOOZE_CRITERIA}. When the device reaches the given context, the
85 * @return an adjustment or null to take no action, within 100ms.
87 abstract public Adjustment onNotificationEnqueued(StatusBarNotification sbn);
122 * @param adjustment the adjustment with an explanation
124 public final void adjustNotification(Adjustment adjustment) {
127 getNotificationInterface().applyAdjustmentFromAssistant(mWrapper, adjustment);
141 public final void adjustNotifications(List<Adjustment> adjustments) {
221 Adjustment adjustment = onNotificationEnqueued(sbn) local
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 293 float[] adjustment = mTempAdjustment; local
297 adjustment[0] = edges.left / scale;
299 adjustment[0] = (edges.right - getWidth()) / scale;
302 adjustment[1] = (float) Math.ceil(edges.top / scale);
304 adjustment[1] = (edges.bottom - getHeight()) / scale;
307 if (coef[dim] > 0) adjustment[dim] = (float) Math.ceil(adjustment[dim]);
310 mInverseRotateMatrix.mapPoints(adjustment);
311 mCenterX += adjustment[0];
312 mCenterY += adjustment[1]
    [all...]
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
CropView.java 304 float[] adjustment = mTempAdjustment; local
308 adjustment[0] = edges.left / scale;
310 adjustment[0] = (edges.right - getWidth()) / scale;
313 adjustment[1] = (float) Math.ceil(edges.top / scale);
315 adjustment[1] = (edges.bottom - getHeight()) / scale;
318 if (coef[dim] > 0) adjustment[dim] = (float) Math.ceil(adjustment[dim]);
321 mInverseRotateMatrix.mapPoints(adjustment);
322 mCenterX += adjustment[0];
323 mCenterY += adjustment[1]
    [all...]

Completed in 1166 milliseconds

1 2 3 4 5 6 7