OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:STACK_SIZE
(Results
1 - 14
of
14
) sorted by null
/ndk/tests/device/clone/jni/
clone.c
16
#define
STACK_SIZE
1024
29
child_stack = (void **) malloc(
STACK_SIZE
* sizeof(void *));
32
clone(child_proc, child_stack +
STACK_SIZE
, CLONE_VM|CLONE_FILES, NULL);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
ldlinux-sects.asm
5
STACK_SIZE
equ 4096
6
STACK_START equ TEXT_START-
STACK_SIZE
26
resb
STACK_SIZE
/system/extras/tests/bionic/libc/common/
test_clone.c
55
#define
STACK_SIZE
(4 * PAGE_SIZE)
57
char clone_stack[
STACK_SIZE
] __attribute__ ((aligned (PAGE_SIZE)));
/external/valgrind/main/memcheck/tests/linux/
stack_changes.c
8
#define
STACK_SIZE
(10 * 4096)
37
stack = (void *)mmap(0,
STACK_SIZE
, PROT_READ|PROT_WRITE|PROT_EXEC,
45
ret = VALGRIND_STACK_REGISTER(stack, stack +
STACK_SIZE
);
49
uc->uc_stack.ss_size =
STACK_SIZE
;
stack_switch.c
17
#define
STACK_SIZE
8192
40
if ( ( stack = mmap( NULL, 2*
STACK_SIZE
, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 ) ) == MAP_FAILED )
46
stackid = VALGRIND_STACK_REGISTER( stack, stack +
STACK_SIZE
);
48
if ( ( pid = clone( thread_main, stack +
STACK_SIZE
, CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|SIGCHLD, NULL ) ) == -1 )
/external/grub/docs/
multiboot.h
34
#define
STACK_SIZE
0x4000
/external/jmonkeyengine/engine/src/core/com/jme3/util/
TempVars.java
53
private static final int
STACK_SIZE
= 5;
65
TempVars[] tempVars = new TempVars[
STACK_SIZE
];
91
* If more than
STACK_SIZE
(currently 5) instances are requested
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_qsort.c
91
#define
STACK_SIZE
(8*sizeof(size_t))
323
stack_entry stack[
STACK_SIZE
];
354
stack_entry stack[
STACK_SIZE
];
385
stack_entry stack[
STACK_SIZE
];
/dalvik/vm/mterp/mips/
header.S
275
#define
STACK_SIZE
128
289
#define STACK_STORE_RA() CREATE_STACK(
STACK_SIZE
); \
301
DELETE_STACK(
STACK_SIZE
)
309
#define STACK_STORE_FULL() CREATE_STACK(
STACK_SIZE
); \
332
DELETE_STACK(
STACK_SIZE
)
/dalvik/vm/compiler/template/mips/
header.S
334
#define
STACK_SIZE
128
353
#define STACK_STORE_RA() CREATE_STACK(
STACK_SIZE
); \
365
DELETE_STACK(
STACK_SIZE
)
373
#define STACK_STORE_FULL() CREATE_STACK(
STACK_SIZE
); \
396
DELETE_STACK(
STACK_SIZE
)
/dalvik/vm/compiler/template/out/
CompilerTemplateAsm-mips.S
341
#define
STACK_SIZE
128
360
#define STACK_STORE_RA() CREATE_STACK(
STACK_SIZE
); \
372
DELETE_STACK(
STACK_SIZE
)
380
#define STACK_STORE_FULL() CREATE_STACK(
STACK_SIZE
); \
403
DELETE_STACK(
STACK_SIZE
)
[
all
...]
/dalvik/vm/mterp/out/
InterpAsm-mips.S
282
#define
STACK_SIZE
128
296
#define STACK_STORE_RA() CREATE_STACK(
STACK_SIZE
); \
308
DELETE_STACK(
STACK_SIZE
)
316
#define STACK_STORE_FULL() CREATE_STACK(
STACK_SIZE
); \
339
DELETE_STACK(
STACK_SIZE
)
415
.frame sp,
STACK_SIZE
, ra
427
/* Save to the stack. Frame size =
STACK_SIZE
*/
432
addu fp, sp,
STACK_SIZE
# Move Frame Pointer to the base of frame
[
all
...]
/external/srec/srec/test/SRecTest/src/
SRecTest.c
[
all
...]
/external/srec/srec/test/SRecTestAudio/src/
SRecTestAudio.c
[
all
...]
Completed in 4313 milliseconds