OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:origLen
(Results
1 - 5
of
5
) 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/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++) {
/dalvik/dexdump/
DexDump.cpp
[
all
...]
/frameworks/base/core/java/android/text/
SpannableStringBuilder.java
528
final int
origLen
= end - start;
531
if (
origLen
== 0 && newLen == 0 && !hasNonExclusiveExclusiveSpanAt(tb, tbstart)) {
537
TextWatcher[] textWatchers = getSpans(start, start +
origLen
, TextWatcher.class);
538
sendBeforeTextChanged(textWatchers, start,
origLen
, newLen);
543
boolean adjustSelection =
origLen
!= 0 && newLen != 0;
557
final int offset = Math.toIntExact(diff * newLen /
origLen
);
566
final int offset = Math.toIntExact(diff * newLen /
origLen
);
578
sendTextChanged(textWatchers, start,
origLen
, newLen);
582
sendToSpanWatchers(start, end, newLen -
origLen
);
[
all
...]
Completed in 2432 milliseconds