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

1 2 3 4 5

  /external/icu/icu4c/source/common/
unistr_props.cpp 35 int32_t oldLength = this->length();
36 int32_t i = oldLength, length;
49 if(length < oldLength) {
unistr_case.cpp 101 int32_t oldLength;
106 oldLength = getShortLength();
107 u_memcpy(oldStackBuffer, fUnion.fStackFields.fBuffer, oldLength);
110 oldLength = length();
114 if(oldLength <= US_STACKBUF_SIZE) {
117 capacity = oldLength + 20;
130 oldArray, oldLength, &errorCode);
uhash.c 396 int32_t oldLength = hash->length;
416 hash->length = oldLength;
420 for (i = oldLength - 1; i >= 0; --i) {
unistr.cpp 1137 int32_t oldLength,
1147 oldText.pinIndices(oldStart, oldLength);
1150 if(oldLength == 0)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_receiver_help.cc 58 uint16_t oldLength = applicationLength;
71 memcpy(applicationData, oldData, oldLength);
72 memcpy(applicationData+oldLength, data, copySize);
  /external/skia/tests/
PointTest.cpp 30 SkScalar oldLength = point.length();
33 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
  /libcore/luni/src/test/java/com/android/org/bouncycastle/crypto/digests/
DigestTest.java 67 int oldLength = oldDigest.doFinal(oldHash, 0);
85 assertEquals("Hash sizes must be equal", oldLength, newLength);
87 for (int i = 0; i < oldLength; i++) {
  /libcore/luni/src/test/java/libcore/java/util/prefs/
PreferencesTest.java 87 long oldLength = userPrefs.length();
94 assertTrue("Expected file to be clobbered", oldLength != userPrefs.length());
  /system/core/logd/
LogStatistics.cpp 443 size_t oldLength;
450 oldLength = output.length();
456 spaces += spaces_total + oldLength - output.length();
466 oldLength = output.length();
473 spaces += spaces_total + oldLength - output.length();
486 oldLength = output.length();
492 spaces -= output.length() - oldLength;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
OpenIntToDoubleHashMap.java 437 final int oldLength = states.length;
442 final int newLength = RESIZE_MULTIPLIER * oldLength;
447 for (int i = 0; i < oldLength; ++i) {
OpenIntToFieldHashMap.java 449 final int oldLength = states.length;
454 final int newLength = RESIZE_MULTIPLIER * oldLength;
459 for (int i = 0; i < oldLength; ++i) {
  /external/icu/icu4c/source/test/intltest/
alphaindextst.cpp 32 int32_t oldLength = dest.length();
35 if (dest.length() > oldLength) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 181 int oldLength = oldName.length();
183 oldLength, name));
186 int oldLength = oldName.length();
187 rootEdit.addChild(new ReplaceEdit(region.getStartOffset() + close, oldLength,
  /system/core/libutils/
String8.cpp 352 size_t oldLength = length();
353 char* buf = lockBuffer(oldLength + n);
355 vsnprintf(buf + oldLength, n + 1, fmt, args);
  /external/icu/icu4c/source/tools/makeconv/
genmbcs.cpp     [all...]
  /frameworks/support/compat/java/android/support/v4/app/
ShareCompat.java 365 int oldLength = old != null ? old.length : 0;
366 String[] result = new String[oldLength + add.length];
367 if (old != null) System.arraycopy(old, 0, result, 0, oldLength);
368 System.arraycopy(add, 0, result, oldLength, add.length);
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 587 long oldLength = entry.lengths[i];
590 size = size - oldLength + newLength;
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 587 long oldLength = entry.lengths[i];
590 size = size - oldLength + newLength;
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 587 long oldLength = entry.lengths[i];
590 size = size - oldLength + newLength;
    [all...]
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DiskLruCache.java 527 long oldLength = entry.lengths[i];
530 size = size - oldLength + newLength;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationIterator.java 148 int oldLength = oldBuffer.length();
149 if(pos > oldLength) { pos = oldLength; }
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationIterator.java 146 int oldLength = oldBuffer.length();
147 if(pos > oldLength) { pos = oldLength; }
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 540 long oldLength = entry.lengths[i];
543 size = size - oldLength + newLength;
    [all...]
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 599 int oldLength = codeAttribute.u4codeLength;
602 if (newInstructionOffsets.length < oldLength + 1)
604 newInstructionOffsets = new int[oldLength + 1];
609 oldLength);
625 oldLength);
635 * @param oldLength the code length.
638 private int mapInstructions(byte[] oldCode, int oldLength)
660 while (oldOffset < oldLength);
715 * @param oldLength the original code length.
721 int oldLength)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
IdentityHashMap.java 466 int oldLength = oldTable.length;
467 if (oldLength == 2*MAXIMUM_CAPACITY) { // can't expand any further
473 if (oldLength >= newLength)
479 for (int j = 0; j < oldLength; j += 2) {
    [all...]

Completed in 771 milliseconds

1 2 3 4 5