HomeSort by relevance Sort by last modified time
    Searched defs:newLen (Results 1 - 16 of 16) sorted by null

  /external/webkit/WebCore/html/
FormDataList.cpp 40 unsigned newLen = 0;
47 newLen += 2;
51 newLen += 2;
54 newLen += 1;
57 if (newLen == s.length()) {
64 CString result = CString::newUninitialized(newLen, q);
  /external/chromium/third_party/icu/source/test/perf/usetperf/
bitset.cpp 51 uint32_t newLen = len;
52 while (newLen < minLen) newLen <<= 1; // grow exponentially
53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD);
58 int32_t* limit = data + newLen;
60 len = newLen;
  /external/icu4c/test/perf/usetperf/
bitset.cpp 51 uint32_t newLen = len;
52 while (newLen < minLen) newLen <<= 1; // grow exponentially
53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD);
58 int32_t* limit = data + newLen;
60 len = newLen;
  /dalvik/vm/hprof/
HprofClass.c 87 size_t newLen;
119 newLen = strlen(c)-1 + dim*2;
120 newName = malloc(newLen + 1);
125 newName[newLen] = '\0';
129 nc = newName + newLen - dim*2;
  /libcore/luni/src/main/java/java/io/
CharArrayWriter.java 84 int newLen = Math.max(2 * buf.length, count + i);
85 char[] newbuf = new char[newLen];
  /external/jhead/
main.c 482 int newLen = strlen(*buf) + len;
483 if (newLen >= bufLen) {
485 bufLen = newLen + 5;
488 bufLen = newLen + 500;
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DerOutputStream.java 132 int[][] newLen = new int[val.length * 2][];
133 System.arraycopy(len, 0, newLen, 0, val.length);
134 len = newLen;
  /external/chromium/net/third_party/nss/ssl/
sslsecur.c 435 ** Grow a buffer to hold newLen bytes of data.
440 sslBuffer_Grow(sslBuffer *b, unsigned int newLen)
442 newLen = PR_MAX(newLen, MAX_FRAGMENT_LENGTH + 2048);
443 if (newLen > b->space) {
446 newBuf = (unsigned char *) PORT_Realloc(b->buf, newLen);
448 newBuf = (unsigned char *) PORT_Alloc(newLen);
454 SSL_GETPID(), b->space, newLen));
456 b->space = newLen;
464 unsigned int newLen = b->len + len
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
utransts.c 95 int32_t newLen = Xlength(rep) + limit - start + textLength;
96 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
107 int32_t newLen = Xlength(rep) + limit - start;
108 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
  /external/icu4c/test/cintltst/
utransts.c 95 int32_t newLen = Xlength(rep) + limit - start + textLength;
96 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
107 int32_t newLen = Xlength(rep) + limit - start;
108 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
  /external/chromium/third_party/icu/source/common/
udata.c 365 int32_t newLen;
366 newLen = This->length + (int32_t)uprv_strlen(what);
367 if (newLen >= This->fCapacity) {
368 int32_t newCapacity = newLen * 2;
379 if (newLen < This->fCapacity) {
381 This->length = newLen;
386 int32_t newLen;
387 newLen = This->length + n;
388 if (newLen >= This->fCapacity) {
389 int32_t newCapacity = newLen * 2;
    [all...]
  /external/icu4c/common/
udata.c 401 int32_t newLen;
402 newLen = This->length + (int32_t)uprv_strlen(what);
403 if (newLen >= This->fCapacity) {
404 int32_t newCapacity = newLen * 2;
415 if (newLen < This->fCapacity) {
417 This->length = newLen;
422 int32_t newLen;
423 newLen = This->length + n;
424 if (newLen >= This->fCapacity) {
425 int32_t newCapacity = newLen * 2;
    [all...]
  /external/webkit/WebCore/rendering/
RenderText.cpp 837 unsigned newLen = text->length();
838 int delta = newLen - oldLen;
    [all...]
  /dalvik/vm/
CheckJni.c     [all...]
  /prebuilt/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 661 milliseconds