HomeSort by relevance Sort by last modified time
    Searched full:adjust (Results 1 - 25 of 1544) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/tests/
ChangeLog 19 * get-files.c: Adjust for libdw.
20 * run-get-files.sh: Adjust expected result.
25 * show-abbrev.c: Adjust call to dwarf_getabbrevattr after interface
27 * run-show-abbrev.sh: Adjust expected output.
31 * show-abbrev.c: Adjust call to dwarf_nextcu after interface change.
33 * run-show-die-info.sh: Adjust expected output.
  /external/e2fsprogs/
.release-checklist 16 6) Adjust sizes in e2fsprogs-VER.lsm; rebuild source files; rebuild RPM files
  /external/bzip2/
words0 4 adjust the flags in this Makefile to improve matters.
  /external/skia/include/core/
SkAutoKern.h 27 * the adjust() method returns a SkFixed corresponding
35 SkFixed adjust(const SkGlyph& glyph) function in class:SkAutoKern
52 SkFixed adjust = SkAutoKern_AdjustF(fPrevRsbDelta, glyph.fLsbDelta); local
54 return adjust;
  /external/skia/src/views/
SkScrollBarView.cpp 19 this->adjust();
30 this->adjust();
42 this->adjust();
54 this->adjust();
113 void SkScrollBarView::adjust() function in class:SkScrollBarView
  /external/srec/srec/clib/
cnorm_tr.c 78 int ii, adjust; local
91 adjust = mean_normalize_data(chandata[ii], 0);
92 /* channorm->adjust[ii]= adjust; */
94 shift_distribution_counts(chandata[ii], adjust);
96 shift_parameters(chandata[ii], adjust);
98 channorm->imelda_adjust[ii] += adjust;
100 channorm->adjust[ii] += adjust;
116 log_report("%d ", channorm->adjust[ii])
    [all...]
  /external/webkit/JavaScriptCore/wtf/
TCSystemAlloc.cpp 187 // Adjust the return memory so it is aligned
189 size_t adjust = 0; local
191 adjust = alignment - (ptr & (alignment - 1));
195 if (adjust > 0) {
196 munmap(reinterpret_cast<void*>(ptr), adjust); local
198 if (adjust < extra) {
199 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust);
202 ptr += adjust;
240 // Adjust the return memory so it is aligne
242 size_t adjust = 0; local
250 VirtualFree(reinterpret_cast<void*>(ptr), adjust, MEM_DECOMMIT); local
320 size_t adjust = 0; local
327 munmap(reinterpret_cast<void*>(ptr), adjust); local
    [all...]
  /frameworks/base/libs/utils/
FileMap.cpp 92 int adjust; local
113 adjust = offset % mPageSize;
114 adjOffset = offset - adjust;
115 adjLength = length + adjust;
131 int prot, flags, adjust; local
156 adjust = offset % mPageSize;
158 adjOffset = offset - adjust;
159 adjLength = length + adjust;
171 adjust = offset;
185 mDataPtr = (char*) mBasePtr + adjust;
    [all...]
  /dalvik/vm/mterp/x86-atom/
TODO.txt 12 (md) Correct OP_MONITOR_EXIT (need to adjust PC before throw)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
IconMerger.java 99 int adjust = 0; local
101 adjust = fitLeft - moreView.getLeft();
102 fitLeft -= adjust;
103 fitRight -= adjust;
109 int breakingPoint = fitLeft + extra + adjust;
  /bionic/libc/arch-x86/string/
memchr.S 20 leal -1(%edi),%eax /* adjust result of scan */
  /external/chromium/testing/
platform_test.h 20 // implemented on the Mac. To enable this for another platform, just adjust
  /external/webkit/WebCore/css/
SVGCSSPropertyNames.in 25 #font-size-adjust
CSSBorderImageValue.h 53 int m_horizontalSizeRule; // Rule for how to adjust the widths of the top/middle/bottom
54 int m_verticalSizeRule; // Rule for how to adjust the heights of the left/middle/right
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atm_nicstar.h 29 /* adjust buffer level */
  /bionic/libc/kernel/common/linux/
dccp.h 29 #error "Adjust your <asm/byteorder.h> defines"
41 #error "Adjust your <asm/byteorder.h> defines"
  /development/ndk/platforms/android-3/include/linux/
dccp.h 29 #error "Adjust your <asm/byteorder.h> defines"
41 #error "Adjust your <asm/byteorder.h> defines"
  /external/e2fsprogs/lib/ext2fs/
ext_attr.c 70 char *block_buf, int adjust,
93 header->h_refcount += adjust;
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
dccp.h 29 #error "Adjust your <asm/byteorder.h> defines"
41 #error "Adjust your <asm/byteorder.h> defines"
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
dccp.h 29 #error "Adjust your <asm/byteorder.h> defines"
41 #error "Adjust your <asm/byteorder.h> defines"
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
dccp.h 29 #error "Adjust your <asm/byteorder.h> defines"
41 #error "Adjust your <asm/byteorder.h> defines"
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
dccp.h 29 #error "Adjust your <asm/byteorder.h> defines"
41 #error "Adjust your <asm/byteorder.h> defines"
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
dccp.h 29 #error "Adjust your <asm/byteorder.h> defines"
41 #error "Adjust your <asm/byteorder.h> defines"
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
dccp.h 29 #error "Adjust your <asm/byteorder.h> defines"
41 #error "Adjust your <asm/byteorder.h> defines"
  /bootable/recovery/minzip/
SysUtil.c 155 int adjust; local
169 /* adjust to be page-aligned */
170 adjust = start % DEFAULT_PAGE_SIZE;
171 actualStart = start - adjust;
172 actualLength = length + adjust;
184 pMap->addr = (char*)memPtr + adjust;

Completed in 1524 milliseconds

1 2 3 4 5 6 7 8 91011>>