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

  /external/chromium_org/third_party/mesa/src/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/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...]
  /dalvik/dexdump/
DexDump.cpp     [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 454 final int origLen = end - start;
457 if (origLen == 0 && newLen == 0 && !hasNonExclusiveExclusiveSpanAt(tb, tbstart)) {
463 TextWatcher[] textWatchers = getSpans(start, start + origLen, TextWatcher.class);
464 sendBeforeTextChanged(textWatchers, start, origLen, newLen);
469 boolean adjustSelection = origLen != 0 && newLen != 0;
481 final int offset = (selectionStart - start) * newLen / origLen;
488 final int offset = (selectionEnd - start) * newLen / origLen;
496 sendTextChanged(textWatchers, start, origLen, newLen);
500 sendToSpanWatchers(start, end, newLen - origLen);
    [all...]

Completed in 2854 milliseconds