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

1 2 3

  /external/skia/src/core/
SkAdvancedTypefaceMetrics.cpp 55 int newLength;
57 newLength = endId - range->fStartId + 1;
59 newLength = 1;
61 SkASSERT(range->fAdvance.count() >= newLength);
62 range->fAdvance.setCount(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/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/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 101 unsigned newLength = 0;
107 newLength = UINT_MAX;
109 newLength = static_cast<unsigned>(v);
  /external/icu4c/common/
unistr_case.cpp 135 int32_t newLength;
139 newLength = ustr_toLower(csp, getArrayStart(), getCapacity(),
143 newLength = ustr_toUpper(csp, getArrayStart(), getCapacity(),
150 newLength = ustr_toTitle(csp, getArrayStart(), getCapacity(),
155 newLength = ustr_foldCase(csp, getArrayStart(), getCapacity(),
160 setLength(newLength);
161 } while(errorCode==U_BUFFER_OVERFLOW_ERROR && cloneArrayIfNeeded(newLength, newLength, FALSE));
  /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/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/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...]
  /frameworks/base/media/mtp/
MtpPacket.cpp 57 int newLength = length + mAllocationIncrement;
58 mBuffer = (uint8_t *)realloc(mBuffer, newLength);
63 mBufferSize = newLength;
  /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);
  /external/icu4c/i18n/
rbt_rule.cpp 451 int32_t newLength = output->toReplacer()->replace(text, pos.start, keyLimit, newStart);
452 int32_t lenDelta = newLength - (keyLimit - pos.start);
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...]
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);
  /external/webkit/Source/JavaScriptCore/runtime/
Operations.h 179 unsigned newLength = ropeBuilder.length();
180 if (newLength < length)
182 length = newLength;
225 unsigned newLength = ropeBuilder.length();
226 if (newLength < length)
228 length = newLength;
JSArray.cpp 331 unsigned newLength = value.toUInt32(exec);
332 if (value.toNumber(exec) != static_cast<double>(newLength)) {
336 setLength(newLength);
570 // increasedLength = (newLength * 3 + 1) / 2;
572 // increasedLength = (unsigned)ceil(newLength * 1.5));
584 bool JSArray::increaseVectorLength(unsigned newLength)
592 ASSERT(newLength > vectorLength);
593 ASSERT(newLength <= MAX_STORAGE_VECTOR_INDEX);
594 unsigned newVectorLength = getNewVectorLength(newLength);
614 bool JSArray::increaseVectorPrefixLength(unsigned newLength)
    [all...]
  /external/webkit/Source/WebCore/dom/
NamedNodeMap.cpp 229 unsigned newLength = other.length();
230 m_attributes.resize(newLength);
231 for (unsigned i = 0; i < newLength; i++)
238 for (unsigned i = 0; i < newLength; i++)
InputElement.cpp 148 unsigned newLength = numCharactersInGraphemeClusters(string, maxLength);
149 for (unsigned i = 0; i < newLength; ++i) {
152 newLength = i;
156 return string.left(newLength);
  /libcore/luni/src/main/java/java/io/
BufferedInputStream.java 152 int newLength = localBuf.length * 2;
153 if (newLength > marklimit) {
154 newLength = marklimit;
156 byte[] newbuf = new byte[newLength];
BufferedReader.java 141 int newLength = buf.length * 2;
142 if (newLength > markLimit) {
143 newLength = markLimit;
145 char[] newbuf = new char[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/clang/lib/Rewrite/
Rewriter.cpp 313 unsigned newLength = getRangeSize(replacementRange);
318 return ReplaceText(start, origLength, MB.substr(newOffs, 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/icu4c/tools/toolutil/
pkg_gencmn.c 493 int32_t newLength;
498 newLength = (length + 1 + (int32_t)uprv_strlen(source));
499 fullPath = uprv_malloc(newLength);
  /external/webkit/Source/WebCore/platform/graphics/gtk/
FontGtk.cpp 141 gint newLength = 0;
142 GOwnPtr<gchar> utf8Text(utf16ToUtf8(characters, length, newLength));
  /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;

Completed in 738 milliseconds

1 2 3