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

1 2 3 4 5

  /external/webkit/Source/JavaScriptCore/wtf/text/
StringBuffer.h 54 void shrink(unsigned newLength)
56 ASSERT(newLength <= m_length);
57 m_length = newLength;
60 void resize(unsigned newLength)
62 if (newLength > m_length) {
63 if (newLength > std::numeric_limits<unsigned>::max() / sizeof(UChar))
65 m_data = static_cast<UChar*>(fastRealloc(m_data, newLength * sizeof(UChar)));
67 m_length = newLength;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Arrays.java 465 public static byte[] copyOf(byte[] data, int newLength)
467 byte[] tmp = new byte[newLength];
469 if (newLength < data.length)
471 System.arraycopy(data, 0, tmp, 0, newLength);
481 public static char[] copyOf(char[] data, int newLength)
483 char[] tmp = new char[newLength];
485 if (newLength < data.length)
487 System.arraycopy(data, 0, tmp, 0, newLength);
497 public static int[] copyOf(int[] data, int newLength)
499 int[] tmp = new int[newLength];
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolSorter.java 78 int newLength = 1;
89 newIndex = newLength;
94 newConstantPool[newLength++] = constant;
101 newConstantPool[newLength++] = null;
112 System.arraycopy(newConstantPool, 0, programClass.constantPool, 0, newLength);
115 for (int index = newLength; index < constantPoolCount; index++)
120 programClass.u2constantPoolCount = newLength;
  /external/webkit/Source/WebCore/storage/
StorageMap.cpp 116 unsigned newLength = m_currentLength;
117 bool overflow = newLength + value.length() < newLength;
118 newLength += value.length();
121 overflow |= newLength - oldValue.length() > newLength;
122 newLength -= oldValue.length();
125 overflow |= newLength + adjustedKeyLength < newLength;
126 newLength += adjustedKeyLength
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ResizableIntArray.java 81 public void setLength(final int newLength) {
82 ensureCapacity(newLength);
83 mLength = newLength;
117 final int newLength = currentLength + length;
118 ensureCapacity(newLength);
120 mLength = newLength;
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributesBuilder.h 50 TextPosition(SVGTextPositioningElement* newElement = 0, unsigned newStart = 0, unsigned newLength = 0)
53 , length(newLength)
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLOptionsCollectionCustom.cpp 48 unsigned newLength = 0;
54 newLength = UINT_MAX;
56 newLength = static_cast<unsigned>(lengthValue);
59 imp->setLength(newLength, ec);
  /external/icu4c/common/
unistr_case.cpp 126 int32_t newLength;
129 newLength = stringCaseMapper(csm, getArrayStart(), getCapacity(),
131 setLength(newLength);
132 } while(errorCode==U_BUFFER_OVERFLOW_ERROR && cloneArrayIfNeeded(newLength, newLength, FALSE));
charstr.cpp 30 CharString &CharString::truncate(int32_t newLength) {
31 if(newLength<0) {
32 newLength=0;
34 if(newLength<len) {
35 buffer[len=newLength]=0;
unistr.cpp 1084 int32_t newLength)
1092 newText.pinIndices(newStart, newLength);
1105 replace(pos, oldLength, newText, newStart, newLength);
1107 start = pos + newLength;
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ObjectArrays.java 78 static <T> T[] arraysCopyOf(T[] original, int newLength) {
79 T[] copy = newArray(original, newLength);
81 original, 0, copy, 0, Math.min(original.length, newLength));
  /external/skia/tests/
PointTest.cpp 34 SkScalar newLength = point.length();
36 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(newLength, SK_Scalar1));
  /libcore/luni/src/main/java/java/util/
Arrays.java     [all...]
  /external/guava/guava/src/com/google/common/collect/
ObjectArrays.java 105 static <T> T[] arraysCopyOf(T[] original, int newLength) {
106 T[] copy = newArray(original, newLength);
108 original, 0, copy, 0, Math.min(original.length, newLength));
  /external/icu4c/tools/toolutil/
denseranges.cpp 50 void truncate(int32_t newLength) {
51 if(newLength<length) {
52 length=newLength;
  /external/proguard/src/proguard/evaluation/value/
InstructionOffsetValue.java 158 int newLength = this.values.length;
163 newLength++;
169 if (newLength == other.values.length)
176 //if (newLength == this.values.length)
182 int[] newValues = new int[newLength];
  /external/webkit/Source/WebCore/platform/network/
BlobRegistryImpl.cpp 113 long long newLength = currentLength > length ? length : currentLength;
115 blobStorageData->m_data.appendData(iter->data, iter->offset + offset, newLength);
118 blobStorageData->m_data.appendFile(iter->path, iter->offset + offset, newLength, iter->expectedModificationTime);
120 length -= newLength;
  /external/icu4c/test/intltest/
winnmtst.cpp 151 int newLength;
154 newLength = _vscwprintf(fmt, args);
157 nBuffer = NEW_ARRAY(UChar, newLength + 1);
160 result = _vsnwprintf(nBuffer, newLength + 1, fmt, args);
193 int newLength = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, NULL, 0);
195 buffer = NEW_ARRAY(UChar, newLength);
197 GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
207 int newLength = GetNumberFormatW(lcid, 0, nBuffer, NULL, NULL, 0);
209 buffer = NEW_ARRAY(UChar, newLength);
211 GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
    [all...]
  /external/webkit/Source/WebCore/websockets/
WebSocketChannel.cpp 324 size_t newLength = length * 128;
327 if (newLength > std::numeric_limits<size_t>::max() - lengthMsgByte) {
328 LOG(Network, "frame length overflow %lu+%u", static_cast<unsigned long>(newLength), lengthMsgByte);
332 newLength += lengthMsgByte;
333 if (newLength < length) { // sanity check
334 LOG(Network, "frame length integer wrap %lu->%lu", static_cast<unsigned long>(length), static_cast<unsigned long>(newLength));
338 length = newLength;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 101 unsigned newLength = 0;
107 newLength = UINT_MAX;
109 newLength = static_cast<unsigned>(v);
  /frameworks/av/media/mtp/
MtpPacket.cpp 57 int newLength = length + mAllocationIncrement;
58 mBuffer = (uint8_t *)realloc(mBuffer, newLength);
63 mBufferSize = newLength;
  /dalvik/vm/compiler/
Utility.cpp 112 int newLength = gList->numAllocated;
113 if (newLength < 128) {
114 newLength <<= 1;
116 newLength += 128;
119 (intptr_t *) dvmCompilerNew(sizeof(intptr_t) * newLength, true);
121 gList->numAllocated = newLength;
  /external/icu4c/i18n/
windtfmt.cpp 245 int newLength = GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, NULL, 0);
247 buffer = NEW_ARRAY(UChar, newLength);
248 GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, buffer, newLength);
271 int newLength = GetTimeFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, NULL, 0);
273 buffer = NEW_ARRAY(UChar, newLength);
274 GetDateFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, buffer, newLength);
winnmfmt.cpp 257 int newLength;
260 newLength = _vscwprintf(fmt, args);
263 nBuffer = NEW_ARRAY(UChar, newLength + 1);
266 result = _vsnwprintf(nBuffer, newLength + 1, fmt, args);
308 int newLength = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, NULL, 0);
310 buffer = NEW_ARRAY(UChar, newLength);
312 GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, newLength);
328 int newLength = GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, NULL, 0);
330 buffer = NEW_ARRAY(UChar, newLength);
332 GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, newLength);
    [all...]
  /libcore/luni/src/test/java/com/android/org/bouncycastle/crypto/digests/
DigestTest.java 74 int newLength = newDigest.doFinal(newHash, 0);
79 assertEquals("Hash sizes must be equal", oldLength, newLength);

Completed in 1039 milliseconds

1 2 3 4 5