HomeSort by relevance Sort by last modified time
    Searched refs:origLen (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/mesa/program/
programopt.c 52 const GLuint origLen = vprog->Base.NumInstructions;
53 const GLuint newLen = origLen + 4;
103 _mesa_copy_instructions (newInst + 4, vprog->Base.Instructions, origLen);
106 _mesa_free_instructions(vprog->Base.Instructions, origLen);
120 const GLuint origLen = vprog->Base.NumInstructions;
121 const GLuint newLen = origLen + 4;
205 _mesa_copy_instructions (newInst + 4, vprog->Base.Instructions, origLen);
208 _mesa_free_instructions(vprog->Base.Instructions, origLen);
258 const GLuint origLen = fprog->Base.NumInstructions;
259 const GLuint newLen = origLen + 5
    [all...]
program.c 578 const GLuint origLen = prog->NumInstructions;
579 const GLuint newLen = origLen + count;
608 origLen - start);
611 _mesa_free_instructions(prog->Instructions, origLen);
627 const GLuint origLen = prog->NumInstructions;
628 const GLuint newLen = origLen - count;
657 _mesa_free_instructions(prog->Instructions, origLen);
    [all...]
  /external/icu/icu4c/source/common/
simplepatternformatter.cpp 58 int32_t origLen = *len;
60 for (int32_t i = origLen + idLen - 1; i >= origLen; i--) {
65 *len = origLen + idLen;
  /external/pdfium/third_party/bigint/
BigUnsigned.cc 464 Index origLen = len; // Save real length.
469 blk[origLen] = 0; // Zero the added block.
475 q.len = origLen - b.len + 1;
512 for (; k < origLen && borrowIn; k++) {
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 511 final int origLen = end - start;
514 if (origLen == 0 && newLen == 0 && !hasNonExclusiveExclusiveSpanAt(tb, tbstart)) {
520 TextWatcher[] textWatchers = getSpans(start, start + origLen, TextWatcher.class);
521 sendBeforeTextChanged(textWatchers, start, origLen, newLen);
526 boolean adjustSelection = origLen != 0 && newLen != 0;
539 final int offset = (selectionStart - start) * newLen / origLen;
547 final int offset = (selectionEnd - start) * newLen / origLen;
559 sendTextChanged(textWatchers, start, origLen, newLen);
563 sendToSpanWatchers(start, end, newLen - origLen);
    [all...]
  /frameworks/native/cmds/installd/
utils.cpp 544 static void* _cache_realloc(cache_t* cache, void* cur, size_t origLen, size_t len)
549 memcpy(alloc, cur, origLen < len ? origLen : len);
    [all...]
  /dalvik/dexdump/
DexDump.cpp     [all...]

Completed in 174 milliseconds