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

1 2 3

  /bionic/libc/kernel/uapi/linux/netfilter_ipv6/
ip6t_NPT.h 30 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /development/ndk/platforms/android-L/include/linux/netfilter_ipv6/
ip6t_NPT.h 30 __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 13 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/netfilter_ipv6/
ip6t_NPT.h 30 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/netfilter_ipv6/
ip6t_NPT.h 30 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/netfilter_ipv6/
ip6t_NPT.h 30 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/netfilter_ipv6/
ip6t_NPT.h 30 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/netfilter_ipv6/
ip6t_NPT.h 30 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/netfilter_ipv6/
ip6t_NPT.h 30 __sum16 adjustment; member in struct:ip6t_npt_tginfo
  /external/chromium_org/third_party/libvpx/source/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
76 * increasing the adjustment for each level. Add another increment for
94 int adjustment = 0; local
110 adjustment = adj_val[0];
112 adjustment = adj_val[1];
114 adjustment = adj_val[2];
118 if ((sig[c] + adjustment) > 255
181 int adjustment = abs(diff); local
271 int adjustment = 0; local
331 int adjustment = abs(diff); local
    [all...]
  /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);
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 30 * adjustment = filtered_value - current_raw
39 * The adjustment vs. diff curve becomes flat very quick when diff increases.
44 * diff adjustment w/o motion correction adjustment w/ motion correction
70 * increasing the adjustment for each level. */
82 int adjustment = 0; local
97 adjustment = adj_val[0];
99 adjustment = adj_val[1];
101 adjustment = adj_val[2];
105 if ((sig[c] + adjustment) > 255
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
denoising.c 30 * adjustment = filtered_value - current_raw
39 * The adjustment vs. diff curve becomes flat very quick when diff increases.
44 * diff adjustment w/o motion correction adjustment w/ motion correction
71 * increasing the adjustment for each level. */
83 int adjustment = 0; local
98 adjustment = adj_val[0];
100 adjustment = adj_val[1];
102 adjustment = adj_val[2];
106 if ((sig[c] + adjustment) > 255
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ResizingTextView.java 150 * @return desired adjustment to top padding for resized text
157 * Set the desired adjustment to top padding for resized text.
159 * @param adjustment The adjustment to top padding, in pixels
161 public void setResizedPaddingAdjustmentTop(int adjustment) {
162 if (mResizedPaddingAdjustmentTop != adjustment) {
163 mResizedPaddingAdjustmentTop = adjustment;
169 * @return desired adjustment to bottom padding for resized text
176 * Set the desired adjustment to bottom padding for resized text.
178 * @param adjustment The adjustment to bottom padding, in pixel
    [all...]
  /external/chromium_org/base/strings/
utf_offset_string_conversions.cc 16 OffsetAdjuster::Adjustment::Adjustment(size_t original_offset,
40 int adjustment = 0; local
49 adjustment += static_cast<int>(i->original_length - i->output_length);
51 *offset -= adjustment;
70 int adjustment = 0; local
73 if (*offset + adjustment <= i->original_offset)
75 adjustment += static_cast<int>(i->original_length - i->output_length);
76 if ((*offset + adjustment) <
82 *offset += adjustment;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderVTTCue.cpp 252 int adjustment = 0; local
254 adjustment = -topOverflow;
256 adjustment = bottomOverflow;
258 if (adjustment)
259 setY(y() + adjustment);
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 294 float[] adjustment = mTempAdjustment; local
298 adjustment[0] = edges.left / scale;
300 adjustment[0] = (edges.right - getWidth()) / scale;
303 adjustment[1] = FloatMath.ceil(edges.top / scale);
305 adjustment[1] = (edges.bottom - getHeight()) / scale;
308 if (coef[dim] > 0) adjustment[dim] = FloatMath.ceil(adjustment[dim]);
311 mInverseRotateMatrix.mapPoints(adjustment);
312 mCenterX += adjustment[0];
313 mCenterY += adjustment[1]
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CropView.java 294 float[] adjustment = mTempAdjustment; local
298 adjustment[0] = edges.left / scale;
300 adjustment[0] = (edges.right - getWidth()) / scale;
303 adjustment[1] = FloatMath.ceil(edges.top / scale);
305 adjustment[1] = (edges.bottom - getHeight()) / scale;
308 if (coef[dim] > 0) adjustment[dim] = FloatMath.ceil(adjustment[dim]);
311 mInverseRotateMatrix.mapPoints(adjustment);
312 mCenterX += adjustment[0];
313 mCenterY += adjustment[1]
    [all...]
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 312 THREAD_LOCAL int adjustment = 0; local
360 adjustment = a;
377 adjustment = 0;
381 if (adjustment >= MAX_ADJUSTMENT)
383 adjustment++;
385 adjustment = 0;
389 clock_reg = tv.tv_usec*10 + adjustment;
394 adjustment += *num - 1;
395 last.tv_usec += adjustment / 10;
396 adjustment = adjustment % 10
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdipluseffects.h 64 CurveAdjustments adjustment; member in struct:ColorCurveParams
  /external/iptables/extensions/
libip6t_DNPT.c 83 .userspacesize = offsetof(struct ip6t_npt_tginfo, adjustment),
libip6t_SNPT.c 83 .userspacesize = offsetof(struct ip6t_npt_tginfo, adjustment),
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
ClockBackService.java 390 int adjustment = volumePercent % 10; local
391 if (adjustment < 5) {
392 volumePercent -= adjustment;
393 } else if (adjustment > 5) {
394 volumePercent += (10 - adjustment);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
utilities.js 340 var adjustment, expectation; variable
342 adjustment = adjustments[start + i];
349 expectations.push([adjustment[0], '', adjustment[0]]);
351 expectations[expectations.length - i - 2][0] = adjustment[0];

Completed in 525 milliseconds

1 2 3