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

1 2 3 4 5

  /external/skia/include/core/
SkAutoKern.h 19 * the adjust() method returns a SkFixed corresponding
27 SkFixed adjust(const SkGlyph& glyph) function in class:SkAutoKern
44 SkFixed adjust = SkAutoKern_AdjustF(fPrevRsbDelta, glyph.fLsbDelta); local
46 return adjust;
  /frameworks/native/libs/utils/
FileMap.cpp 95 int adjust; local
116 adjust = offset % mPageSize;
117 adjOffset = offset - adjust;
118 adjLength = length + adjust;
134 int prot, flags, adjust; local
159 adjust = offset % mPageSize;
161 adjOffset = offset - adjust;
162 adjLength = length + adjust;
174 adjust = offset;
188 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/Source/JavaScriptCore/wtf/
TCSystemAlloc.cpp 188 // Adjust the return memory so it is aligned
190 size_t adjust = 0; local
192 adjust = alignment - (ptr & (alignment - 1));
196 if (adjust > 0) {
197 munmap(reinterpret_cast<void*>(ptr), adjust); local
199 if (adjust < extra) {
200 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust);
203 ptr += adjust;
241 // Adjust the return memory so it is aligne
243 size_t adjust = 0; local
251 VirtualFree(reinterpret_cast<void*>(ptr), adjust, MEM_DECOMMIT); local
321 size_t adjust = 0; local
328 munmap(reinterpret_cast<void*>(ptr), adjust); local
    [all...]
  /external/javassist/sample/duplicate/
Ball.java 22 // Adjust the position so that the backup object is visible.
23 private void adjust() { method in class:Ball
38 adjust(); method
  /external/webkit/Source/WebCore/css/
svg.css 63 -webkit-text-size-adjust: none;
  /external/skia/include/views/
SkScrollBarView.h 40 void adjust();
  /external/skia/src/views/
SkScrollBarView.cpp 26 this->adjust();
37 this->adjust();
49 this->adjust();
61 this->adjust();
120 void SkScrollBarView::adjust() function in class:SkScrollBarView
  /external/valgrind/main/memcheck/tests/
vcpu_fbench.stdout.exp 7 adjust iteration count so the benchmark runs about five minutes.
  /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;
  /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:__anon12615
swicms.h 55 imeldata adjust[MAX_CHAN_DIM]; /* target less channel */ member in struct:__anon12684
  /dalvik/vm/mterp/x86-atom/
zcmp.S 35 sal $$1, %edx # %edx<- adjust byte offset
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 162 public MethodId adjust(MethodId methodId) { method in class:IndexMap
169 public FieldId adjust(FieldId fieldId) { method in class:IndexMap
177 public ProtoId adjust(ProtoId protoId) { method in class:IndexMap
184 public ClassDef adjust(ClassDef classDef) { method in class:IndexMap
192 public SortableType adjust(SortableType sortableType) { method in class:IndexMap
193 return new SortableType(sortableType.getBuffer(), adjust(sortableType.getClassDef()));
208 public Annotation adjust(Annotation annotation) { method in class:IndexMap
220 * Adjust an encoded value or array.
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 59 int adjust = 0; local
68 adjust = dictOffset % pagesize;
69 int adjDictOffset = dictOffset - adjust;
70 int adjDictSize = dictSize + adjust;
76 dictBuf = (void *)((char *)dictBuf + adjust);
116 releaseDictBuf(((char*)dictBuf) - adjust, adjDictSize, fd);
121 dictionary = new Dictionary(dictBuf, dictSize, fd, adjust, typedLetterMultiplier,
  /external/e2fsprogs/lib/ext2fs/
ext_attr.c 103 char *block_buf, int adjust,
126 header->h_refcount += adjust;
  /external/mesa3d/docs/
MESA_resize_buffers.spec 42 when a window size changes but would still like Mesa to adjust to
59 and adjust its internal data structures. This may include
  /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.cpp 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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 74 typename Allocator::group_throw_prob_adjustor adjust(m_size);
136 typename Allocator::group_throw_prob_adjustor adjust(m_size);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 74 typename Allocator::group_adjustor adjust(m_size);
136 typename Allocator::group_adjustor adjust(m_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 74 typename Allocator::group_adjustor adjust(m_size);
136 typename Allocator::group_adjustor adjust(m_size);
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 74 typename Allocator::group_throw_prob_adjustor adjust(m_size);
136 typename Allocator::group_throw_prob_adjustor adjust(m_size);

Completed in 1164 milliseconds

1 2 3 4 5