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

1 2 3

  /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;
  /development/simulator/app/
Semaphore.h 50 bool adjust(int adj, bool wait);
Semaphore.cpp 316 adjust(-1, true);
321 adjust(1, true);
326 return adjust(-1, false);
338 bool Semaphore::adjust(int adj, bool wait)
353 "semaphore adjust by %d failed for semid=%ld (errno=%d)\n",
  /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...]
  /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...]
  /external/webkit/WebCore/css/
svg.css 63 -webkit-text-size-adjust: none;
  /external/skia/include/views/
SkScrollBarView.h 47 void 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
  /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;
  /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;
  /external/icu4c/layout/
KernTable.cpp 176 float adjust = 0; local
215 adjust += font->xUnitsToPoints(value);
223 storage.adjustPosition(i, adjust, 0, success);
226 storage.adjustPosition(storage.getGlyphCount(), adjust, 0, success);
  /external/srec/srec/include/
channorm.h 40 int adjust[MAX_CHAN_DIM]; member in struct:__anon7577
swicms.h 55 imeldata adjust[MAX_CHAN_DIM]; /* target less channel */ member in struct:__anon7646
  /dalvik/vm/mterp/x86-atom/
zcmp.S 35 sal $$1, %edx # %edx<- adjust byte offset
  /external/e2fsprogs/lib/ext2fs/
ext_attr.c 70 char *block_buf, int adjust,
93 header->h_refcount += adjust;
  /frameworks/base/core/java/android/text/method/
MetaKeyKeyListener.java 155 adjust(content, CAP); method
156 adjust(content, ALT); method
157 adjust(content, SYM); method
177 private static void adjust(Spannable content, Object what) { method in class:MetaKeyKeyListener
381 state = adjust(state, META_SHIFT_ON, META_SHIFT_MASK);
382 state = adjust(state, META_ALT_ON, META_ALT_MASK);
383 state = adjust(state, META_SYM_ON, META_SYM_MASK);
387 private static long adjust(long state, int what, long mask) { method in class:MetaKeyKeyListener
  /system/core/libpixelflinger/codeflinger/
texturing.cpp 96 // adjust the color iterator to make sure it won't overflow
786 const int adjust = FRAC_BITS*2 - prec; local
819 if (adjust) {
821 ADD(AL, 0, u, u, imm(1<<(adjust-1)));
822 MOV(AL, 0, u, reg_imm(u, LSR, adjust));
834 if (adjust) {
836 ADD(AL, 0, u, u, imm(1<<(adjust-1)));
837 MOV(AL, 0, u, reg_imm(u, LSR, adjust));
848 if (adjust) {
850 ADD(AL, 0, u, u, imm(1<<(adjust-1)))
882 const int adjust = FRAC_BITS*2 - 8; local
980 const int adjust = FRAC_BITS*2 - 8; local
    [all...]
  /dalvik/libdex/
SysUtil.c 274 int adjust; local
279 /* adjust to be page-aligned */
280 adjust = start % SYSTEM_PAGE_SIZE;
281 actualStart = start - adjust;
282 actualLength = length + adjust;
294 pMap->addr = (char*)memPtr + adjust;
330 * Align "addr" to a page boundary and adjust "length" appropriately.
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
PKCS12ParametersGenerator.java 56 private void adjust( method in class:PKCS12ParametersGenerator
149 adjust(I, j * v, B); method
  /external/freetype/src/base/
ftgloadr.c 140 /* re-adjust the `current' outline fields */
183 /* re-adjust the `current' subglyphs field */
208 FT_Bool adjust = 0; local
241 adjust = 1;
259 adjust = 1;
263 if ( adjust )
349 /* adjust contours count in newest outline */
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 116 adjust(-1);
123 adjust(1);
170 private void adjust(int dir) { method in class:MatrixStack
  /packages/apps/Gallery3D/src/com/cooliris/media/
MatrixStack.java 114 adjust(-1);
120 adjust(1);
167 private void adjust(int dir) { method in class:MatrixStack
  /external/dbus/dbus/
dbus-message-factory.c 757 int adjust; local
777 adjust = lengths[len_seq];
779 if (adjust < 0)
781 if ((_dbus_string_get_length (data) + adjust) < DBUS_MINIMUM_HEADER_SIZE)
784 _dbus_string_shorten (data, - adjust);
789 if (!_dbus_string_lengthen (data, adjust))
808 new_body_len = old_body_len + adjust;
816 _dbus_verbose ("changing body len from %u to %u by adjust %d\n",
817 old_body_len, new_body_len, adjust);
    [all...]
  /external/libvpx/vp8/encoder/arm/neon/
vp8_memcpy_neon.asm 48 ;pld [r1] ;preload pred data -- need to adjust for real device

Completed in 1496 milliseconds

1 2 3