OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:stacksize
(Results
101 - 125
of
405
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
TimSort.java
82
private int
stackSize
= 0; // Number of pending runs on stack
97
stackSize
= 0;
139
if (DEBUG) assert
stackSize
== 1;
226
if (DEBUG) assert ts.
stackSize
== 1;
362
this.runBase[
stackSize
] = runBase;
363
this.runLen[
stackSize
] = runLen;
364
stackSize
++;
378
*
stackSize
upon entry to the method. */
380
while (
stackSize
> 1) {
381
int n =
stackSize
- 2;
[
all
...]
/external/javassist/src/main/javassist/
CtClassType.java
1464
int
stacksize
= 0;
local
1549
int
stacksize
= makeFieldInitializer(init, params);
local
1585
int
stacksize
= 0;
local
[
all
...]
CtField.java
998
int
stacksize
;
local
1046
int
stacksize
= 2;
local
1094
int
stacksize
;
local
1139
int
stacksize
= 1;
local
[
all
...]
/libcore/ojluni/src/main/java/java/util/
TimSort.java
133
private int
stackSize
= 0; // Number of pending runs on stack
251
assert ts.
stackSize
== 1;
413
this.runBase[
stackSize
] = runBase;
414
this.runLen[
stackSize
] = runLen;
415
stackSize
++;
426
* so the invariants are guaranteed to hold for i <
stackSize
upon
430
while (
stackSize
> 1) {
431
int n =
stackSize
- 2;
449
while (
stackSize
> 1) {
450
int n =
stackSize
- 2
[
all
...]
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_linux_test.cc
220
size_t
stacksize
;
local
221
pthread_attr_getstack(&attr, &stackaddr, &
stacksize
);
222
return (void *)((uptr)stackaddr +
stacksize
- descr_addr);
/external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp
57
//
StackSize
-----------
65
// with offsets that exceeds the stack size: (
stacksize
+(4*(num_arg-1))
75
// lw REGX, 16+
StackSize
(SP)
Mips16RegisterInfo.cpp
81
uint64_t
StackSize
,
130
Offset = SPOffset + (int64_t)
StackSize
;
MipsRegisterInfo.cpp
272
uint64_t
stackSize
= MF.getFrameInfo()->getStackSize();
277
<< "
stackSize
: " <<
stackSize
<< "\n");
279
eliminateFI(MI, FIOperandNum, FrameIndex,
stackSize
, spOffset);