Searched refs:stacksize (Results 26 - 50 of 58) sorted by relevance

123

/external/python/cpython2/Objects/
H A Dcodeobject.c93 PyCode_New(int argcount, int nlocals, int stacksize, int flags, argument
124 co->co_stacksize = stacksize;
178 0, /* stacksize */
263 "code(argcount, nlocals, stacksize, flags, codestring, constants, names,\n\
273 int stacksize; local
288 &argcount, &nlocals, &stacksize, &flags,
332 co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags,
/external/valgrind/coregrind/m_ume/
H A Dmacho.c381 vki_size_t stacksize = VG_PGROUNDUP(default_stack_size()); local
382 vm_address_t stackbase = VG_PGROUNDDN(out_info->stack_end+1-stacksize);
385 res = VG_(am_mmap_anon_fixed_client)(stackbase, stacksize, VKI_PROT_READ|VKI_PROT_WRITE|VKI_PROT_EXEC);
386 check_mmap(res, stackbase, stacksize, "load_unixthread1");
588 err = handle_lcmain(epcmd->stacksize, out_info);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
H A D3-2.c119 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */ local
155 if (((long)&current) - ((long)arg) >= stacksize) {
163 if (((long)arg) - ((long)&current) >= stacksize) {
451 ("Changing the stacksize after the thread was created changed the running thread stack size");
488 "Failed to set stacksize back");
/external/skia/third_party/lua/src/
H A Dlstate.h163 int stacksize; member in struct:lua_State
H A Dldo.c163 int lim = L->stacksize;
165 lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK);
166 luaM_reallocvector(L, L->stack, L->stacksize, newsize, TValue);
169 L->stacksize = newsize;
176 int size = L->stacksize;
210 goodsize >= L->stacksize) /* would grow instead of shrink? */
H A Dllimits.h299 #define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
H A Dlgc.c502 StkId lim = th->stack + th->stacksize; /* real end of stack */
506 return sizeof(lua_State) + sizeof(TValue) * th->stacksize;
/external/syslinux/com32/lua/src/
H A Dlstate.h163 int stacksize; member in struct:lua_State
H A Dldo.c163 int lim = L->stacksize;
165 lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK);
166 luaM_reallocvector(L, L->stack, L->stacksize, newsize, TValue);
169 L->stacksize = newsize;
176 int size = L->stacksize;
210 goodsize >= L->stacksize) /* would grow instead of shrink? */
H A Dllimits.h299 #define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
H A Dlgc.c503 StkId lim = th->stack + th->stacksize; /* real end of stack */
512 return sizeof(lua_State) + sizeof(TValue) * th->stacksize +
/external/syslinux/core/fs/pxe/
H A Dpxe.h50 uint16_t stacksize; member in struct:pxenv_t
/external/syslinux/core/lwip/src/include/lwip/
H A Dsys.h216 * @param stacksize stack size in bytes for the new thread (may be ignored by ports)
218 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio);
/external/valgrind/coregrind/m_initimg/
H A Dinitimg-solaris.c392 SizeT stacksize; /* total client stack size */ local
474 stacksize =
485 client_SP = clstack_end - stacksize;
503 VG_(printf)("stringsize=%lu, auxsize=%lu, stacksize=%lu, maxsize=%#lx\n"
506 stringsize, auxsize, stacksize, clstack_max_size,
569 "This may be the result of a very large --main-stacksize=\n");
900 --main-stacksize value. This makes it possible to run programs with
902 --main-stacksize. */
906 - If a larger --main-stacksize value is specified, use that instead.
H A Dinitimg-linux.c406 unsigned stacksize; /* total client stack size */ local
470 stacksize =
480 if (0) VG_(printf)("stacksize = %u\n", stacksize);
483 client_SP = clstack_end - stacksize;
496 VG_(printf)("stringsize=%u auxsize=%u stacksize=%u maxsize=0x%lx\n"
499 stringsize, auxsize, stacksize, clstack_max_size,
565 "This may be the result of a very large --main-stacksize=\n");
956 notice of the --main-stacksize value. This makes it possible
958 simply by specifying --main-stacksize
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DBytecode.java129 * <p>The parameters <code>stacksize</code> and <code>localvars</code>
135 * @param stacksize <code>max_stack</code>.
138 public Bytecode(ConstPool cp, int stacksize, int localvars) { argument
140 maxStack = stacksize;
797 int stacksize = 0;
801 stacksize += addLoad(stacksize + offset, params[i]);
804 return stacksize;
/external/markdown/
H A Dtest-markdown.py61 def stacksize(since=0.0): function
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java1194 int stacksize = 0;
1197 stacksize += addLoad(code, stacksize + offset, params[i]);
1199 return stacksize;
/external/guice/extensions/persist/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/python/cpython2/Python/
H A Dmarshal.c1001 int stacksize; local
1019 stacksize = (int)r_long(p);
1051 argcount, nlocals, stacksize, flags,
/external/python/cpython2/Lib/compiler/
H A Dpyassem.py363 self.stacksize = max_depth(self.entry, 0)
539 return types.CodeType(argcount, nlocals, self.stacksize, self.flags,
/external/valgrind/coregrind/m_syswrap/
H A Dpriv_syswrap-darwin.h798 Addr stacksize, Addr flags, Addr sp);
/external/guice/extensions/struts2/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/robolectric/v1/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/llvm/include/llvm/Support/
H A DMachO.h879 uint64_t stacksize; member in struct:llvm::MachO::entry_point_command
1176 sys::swapByteOrder(e.stacksize);

Completed in 4263 milliseconds

123