Searched refs:newLen (Results 1 - 25 of 57) sorted by relevance

123

/external/chromium_org/third_party/icu/source/test/perf/usetperf/
H A Dbitset.cpp51 uint32_t newLen = len; local
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/icu/icu4c/source/test/perf/usetperf/
H A Dbitset.cpp51 uint32_t newLen = len; local
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/chromium_org/third_party/WebKit/Source/platform/text/
H A DLineEnding.cpp100 size_t newLen = 0; local
108 newLen += 2;
112 newLen += 2;
115 newLen += 1;
118 if (newLen < from.length())
121 if (newLen == from.length()) {
127 char* q = buffer.allocate(newLen);
160 size_t newLen = 0; local
175 newLen += 1;
181 result.grow(oldResultSize + newLen);
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A DNETEQTEST_DummyRTPpacket.cc101 int newLen = _kBasicHeaderLen + CC * 4 + X * 4; local
102 assert(_memSize >= newLen);
105 size_t readLen = newLen - _kBasicHeaderLen;
111 _datagramLen = newLen;
119 size_t readLen = totHdrLen - newLen;
120 if (fread(&_datagram[newLen], 1, readLen, fp) != readLen)
/external/chromium_org/v8/src/
H A Darraybuffer.js57 var newLen = fin - first;
59 var result = new $ArrayBuffer(newLen);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Deditable_text.js504 var newLen = evt.value.length;
513 if (evt.start < evtEnd && evtEnd == newLen) {
525 if (newLen >= prefixLen + suffixLen + (evtEnd - evt.start) &&
527 evtValue.substr(newLen - suffixLen) == value.substr(this.end)) {
534 newLen < len ||
535 this.isWordBreakChar(evt.value[newLen - 1] || '')) {
547 suffixLen = newLen - evtEnd;
551 evtValue.substr(newLen - suffixLen) ==
608 if (newLen <= this.maxShortPhraseLen) {
617 prefixLen < newLen
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogramopt.c53 const GLuint newLen = origLen + 4; local
74 newInst = _mesa_alloc_instructions(newLen);
110 vprog->Base.NumInstructions = newLen;
121 const GLuint newLen = origLen + 4; local
143 newInst = _mesa_alloc_instructions(newLen);
212 vprog->Base.NumInstructions = newLen;
259 const GLuint newLen = origLen + 5; local
276 newInst = _mesa_alloc_instructions(newLen);
H A Dprogram.c579 const GLuint newLen = origLen + count; local
594 newInst = _mesa_alloc_instructions(newLen);
615 prog->NumInstructions = newLen;
628 const GLuint newLen = origLen - count; local
643 newInst = _mesa_alloc_instructions(newLen);
654 newLen - start);
661 prog->NumInstructions = newLen;
/external/mesa3d/src/mesa/program/
H A Dprogramopt.c53 const GLuint newLen = origLen + 4; local
74 newInst = _mesa_alloc_instructions(newLen);
110 vprog->Base.NumInstructions = newLen;
121 const GLuint newLen = origLen + 4; local
143 newInst = _mesa_alloc_instructions(newLen);
212 vprog->Base.NumInstructions = newLen;
259 const GLuint newLen = origLen + 5; local
276 newInst = _mesa_alloc_instructions(newLen);
H A Dprogram.c579 const GLuint newLen = origLen + count; local
594 newInst = _mesa_alloc_instructions(newLen);
615 prog->NumInstructions = newLen;
628 const GLuint newLen = origLen - count; local
643 newInst = _mesa_alloc_instructions(newLen);
654 newLen - start);
661 prog->NumInstructions = newLen;
/external/javassist/src/main/javassist/bytecode/
H A DByteStream.java187 int newLen = buf.length << 1;
188 byte[] newBuf = new byte[newLen > newCount ? newLen : newCount];
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_vs_draw.c318 const uint newLen = tgsi_num_tokens(vs->state.tokens) + 100 /* XXX */; local
323 new_vs.tokens = tgsi_alloc_tokens(newLen);
353 newLen, &transform.base);
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_vs_draw.c318 const uint newLen = tgsi_num_tokens(vs->state.tokens) + 100 /* XXX */; local
323 new_vs.tokens = tgsi_alloc_tokens(newLen);
353 newLen, &transform.base);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dreptest.cpp121 void fixStyles(int32_t start, int32_t limit, int32_t newLen) { argument
132 for (int i = 0; i < newLen; ++i) {
/external/icu/icu4c/source/test/intltest/
H A Dreptest.cpp121 void fixStyles(int32_t start, int32_t limit, int32_t newLen) { argument
132 for (int i = 0; i < newLen; ++i) {
/external/aac/libSBRdec/src/
H A Denv_dec.cpp609 int refLen, newLen, shift; local
615 newLen = pFrameInfo->borders[1] - estimatedStartPos;
617 if (newLen <= 0) {
621 newLen = refLen;
625 deltaExp = FDK_getNumOctavesDiv8(newLen, refLen);
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslsecur.c493 ** Grow a buffer to hold newLen bytes of data.
498 sslBuffer_Grow(sslBuffer *b, unsigned int newLen) argument
500 newLen = PR_MAX(newLen, MAX_FRAGMENT_LENGTH + 2048);
501 if (newLen > b->space) {
504 newBuf = (unsigned char *) PORT_Realloc(b->buf, newLen);
506 newBuf = (unsigned char *) PORT_Alloc(newLen);
512 SSL_GETPID(), b->space, newLen));
514 b->space = newLen;
522 unsigned int newLen local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_pstipple.c411 const uint newLen = tgsi_num_tokens(fs->tokens) + NUM_NEW_TOKENS; local
418 new_fs->tokens = tgsi_alloc_tokens(newLen);
446 newLen, &transform.base);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pstipple.c411 const uint newLen = tgsi_num_tokens(fs->tokens) + NUM_NEW_TOKENS; local
418 new_fs->tokens = tgsi_alloc_tokens(newLen);
446 newLen, &transform.base);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dutransts.c95 int32_t newLen = Xlength(rep) + limit - start + textLength; local
96 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
107 int32_t newLen = Xlength(rep) + limit - start; local
108 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
/external/icu/icu4c/source/test/cintltst/
H A Dutransts.c98 int32_t newLen = Xlength(rep) + limit - start + textLength; local
99 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
110 int32_t newLen = Xlength(rep) + limit - start; local
111 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
/external/jhead/
H A Dmain.c518 int newLen = strlen(*buf) + len; local
519 if (newLen >= bufLen) {
521 bufLen = newLen + 5;
524 bufLen = newLen + 500;
/external/nanohttpd/webserver/src/main/java/fi/iki/elonen/
H A DSimpleWebServer.java404 long newLen = endAt - startFrom + 1;
405 if (newLen < 0) {
406 newLen = 0;
409 final long dataLen = newLen;
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DotTables.py579 newLen = oldLen//2
585 newLen = overflowRecord.itemIndex - 1
588 for i in range(newLen, oldLen):
607 newLen = oldLen//2
613 newLen = overflowRecord.itemIndex - 1
616 for i in range(newLen, oldLen):
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DotTables.py579 newLen = oldLen//2
585 newLen = overflowRecord.itemIndex - 1
588 for i in range(newLen, oldLen):
607 newLen = oldLen//2
613 newLen = overflowRecord.itemIndex - 1
616 for i in range(newLen, oldLen):

Completed in 887 milliseconds

123