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

1 2

  /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/srec/srec/include/
channorm.h 40 int adjust[MAX_CHAN_DIM]; member in struct:__anon11325
swicms.h 55 imeldata adjust[MAX_CHAN_DIM]; /* target less channel */ member in struct:__anon11394
  /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/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...]
  /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/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
  /frameworks/base/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/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 */
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 57 int adjust = 0; local
66 adjust = dictOffset % pagesize;
67 int adjDictOffset = dictOffset - adjust;
68 int adjDictSize = dictSize + adjust;
74 dictBuf = (void *)((char *)dictBuf + adjust);
114 releaseDictBuf(((char*)dictBuf) - adjust, adjDictSize, fd);
119 dictionary = new Dictionary(dictBuf, dictSize, fd, adjust, typedLetterMultiplier,
  /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/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);
  /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
  /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...]
  /frameworks/base/core/java/android/text/method/
MetaKeyKeyListener.java 214 adjust(content, CAP); method
215 adjust(content, ALT); method
216 adjust(content, SYM); method
236 private static void adjust(Spannable content, Object what) { method in class:MetaKeyKeyListener
  /build/tools/zipalign/
ZipFile.cpp 954 long delCount, adjust; local
972 delCount = adjust = 0;
1005 adjust += span;
1011 /* adjust loop control */
1014 } else if (span != 0 && adjust > 0) {
1017 // pEntry->getFileName(), adjust);
1018 result = filemove(mZipFp, pEntry->getLFHOffset() - adjust,
1026 pEntry->setLFHOffset(pEntry->getLFHOffset() - adjust);
1035 mEOCD.mCentralDirOffset -= adjust;
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 148 public MethodId adjust(MethodId methodId) { method in class:IndexMap
155 public FieldId adjust(FieldId fieldId) { method in class:IndexMap
163 public ProtoId adjust(ProtoId protoId) { method in class:IndexMap
170 public ClassDef adjust(ClassDef classDef) { method in class:IndexMap
178 public SortableType adjust(SortableType sortableType) { method in class:IndexMap
179 return new SortableType(sortableType.getBuffer(), adjust(sortableType.getClassDef()));
194 public Annotation adjust(Annotation annotation) { method in class:IndexMap
206 * Adjust an encoded value or array.
  /external/dbus/dbus/
dbus-message-factory.c 822 int adjust; local
842 adjust = lengths[len_seq];
844 if (adjust < 0)
846 if ((_dbus_string_get_length (data) + adjust) < DBUS_MINIMUM_HEADER_SIZE)
849 _dbus_string_shorten (data, - adjust);
854 if (!_dbus_string_lengthen (data, adjust))
873 new_body_len = old_body_len + adjust;
881 _dbus_verbose ("changing body len from %u to %u by adjust %d\n",
882 old_body_len, new_body_len, adjust);
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 954 long delCount, adjust; local
972 delCount = adjust = 0;
1005 adjust += span;
1011 /* adjust loop control */
1014 } else if (span != 0 && adjust > 0) {
1017 // pEntry->getFileName(), adjust);
1018 result = filemove(mZipFp, pEntry->getLFHOffset() - adjust,
1026 pEntry->setLFHOffset(pEntry->getLFHOffset() - adjust);
1035 mEOCD.mCentralDirOffset -= adjust;
    [all...]
  /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...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 265 // If one ancestor chain is longer, adjust its start point
269 // Adjust startNode2 to depth of startNode1
270 int adjust = nParents2 - nParents1; local
272 for (int i = 0; i < adjust; i++)
279 // adjust startNode1 to depth of startNode2
280 int adjust = nParents1 - nParents2; local
282 for (int i = 0; i < adjust; i++)
    [all...]
  /external/qemu/telephony/
sms.c 501 int dlen, adjust = 0; local
525 adjust = 0;
535 adjust = 1;
543 address->len = 2*dlen + adjust;
    [all...]
  /external/icu4c/i18n/
usearch.cpp 749 // this is to adjust for characters in the middle of the
751 int32_t adjust = pattern->CELength - patternceindex; local
752 if (adjust > 1 && shift >= adjust) {
753 shift -= adjust - 1;
1993 int32_t adjust = patternceindex; local
    [all...]
decNumber.c 3872 Int adjust; \/* work *\/ local
3908 Int adjust; \/* work *\/ local
5908 Int adjust=reqexp-lhs->exponent; \/* digit adjustment needed *\/ local
7431 Int etiny, adjust; \/* .. *\/ local
    [all...]

Completed in 675 milliseconds

1 2