Home
last modified time | relevance | path

Searched refs:stack_low (Results 1 – 21 of 21) sorted by relevance

/dports/lang/mosml/mosml-ver-2.10.1/src/runtime/
H A Dstacks.c11 value * stack_low; variable
20 stack_low = (value *) stat_alloc(Stack_size); in init_stack()
21 stack_high = stack_low + Stack_size / sizeof (value); in init_stack()
22 stack_threshold = stack_low + Stack_threshold / sizeof (value); in init_stack()
33 Assert(extern_sp >= stack_low); in realloc_stack()
34 size = stack_high - stack_low; in realloc_stack()
50 stat_free((char *) stack_low); in realloc_stack()
54 stack_low = new_low; in realloc_stack()
56 stack_threshold = stack_low + Stack_threshold / sizeof (value); in realloc_stack()
H A Dstacks.h11 extern value * stack_low;
H A Dinterp.c281 Assert(sp >= stack_low); in interprete()
/dports/benchmarks/filebench/filebench-1.5-alpha3-27-g22620e6/cvars/mtwist/
H A Drandistrs.c892 size_t* stack_low; /* Stack of values below uniform */ in rd_empirical_setup() local
935 stack_low = (size_t*)malloc(n_probs * sizeof (size_t)); in rd_empirical_setup()
936 if (stack_low == NULL) in rd_empirical_setup()
962 stack_low[n_low++] = i; in rd_empirical_setup()
972 i = stack_low[--n_low]; /* i is the guy we'll adjust */ in rd_empirical_setup()
1008 stack_low[n_low++] = j; in rd_empirical_setup()
1024 free(stack_low); in rd_empirical_setup()
/dports/lang/ocaml/ocaml-4.05.0/otherlibs/threads/
H A Dscheduler.c81 value * stack_low; /* The execution stack for this thread */ member
172 curr_thread->stack_low = caml_stack_low; in thread_initialize()
232 th->stack_low = (value *) caml_stat_alloc(Thread_stack_size); in thread_new()
233 th->stack_high = th->stack_low + Thread_stack_size / sizeof(value); in thread_new()
234 th->stack_threshold = th->stack_low + Stack_threshold / sizeof(value); in thread_new()
309 curr_thread->stack_low = caml_stack_low; in schedule_thread()
502 caml_stack_low = curr_thread->stack_low; in schedule_thread()
754 caml_stat_free((char *) th->stack_low); in thread_kill()
755 th->stack_low = NULL; in thread_kill()
/dports/lang/ocaml-nox11/ocaml-4.05.0/otherlibs/threads/
H A Dscheduler.c81 value * stack_low; /* The execution stack for this thread */ member
172 curr_thread->stack_low = caml_stack_low; in thread_initialize()
232 th->stack_low = (value *) caml_stat_alloc(Thread_stack_size); in thread_new()
233 th->stack_high = th->stack_low + Thread_stack_size / sizeof(value); in thread_new()
234 th->stack_threshold = th->stack_low + Stack_threshold / sizeof(value); in thread_new()
309 curr_thread->stack_low = caml_stack_low; in schedule_thread()
502 caml_stack_low = curr_thread->stack_low; in schedule_thread()
754 caml_stat_free((char *) th->stack_low); in thread_kill()
755 th->stack_low = NULL; in thread_kill()
/dports/lang/ocaml/ocaml-4.05.0/byterun/
H A Droots.c101 CAMLexport void caml_do_local_roots (scanning_action f, value *stack_low, in caml_do_local_roots() argument
109 for (sp = stack_low; sp < stack_high; sp++) { in caml_do_local_roots()
/dports/lang/ocaml-nox11/ocaml-4.05.0/byterun/
H A Droots.c101 CAMLexport void caml_do_local_roots (scanning_action f, value *stack_low, in caml_do_local_roots() argument
109 for (sp = stack_low; sp < stack_high; sp++) { in caml_do_local_roots()
/dports/lang/ocaml/ocaml-4.05.0/otherlibs/systhreads/
H A Dst_stubs.c88 value * stack_low; /* The execution stack for this thread */ member
185 curr_thread->stack_low = caml_stack_low; in caml_thread_save_runtime_state()
214 caml_stack_low = curr_thread->stack_low; in caml_thread_restore_runtime_state()
366 th->stack_low = (value *) caml_stat_alloc(Thread_stack_size); in caml_thread_new_info()
367 th->stack_high = th->stack_low + Thread_stack_size / sizeof(value); in caml_thread_new_info()
368 th->stack_threshold = th->stack_low + Stack_threshold / sizeof(value); in caml_thread_new_info()
411 caml_stat_free(th->stack_low); in caml_thread_remove_info()
/dports/lang/ocaml-nox11/ocaml-4.05.0/otherlibs/systhreads/
H A Dst_stubs.c88 value * stack_low; /* The execution stack for this thread */ member
185 curr_thread->stack_low = caml_stack_low; in caml_thread_save_runtime_state()
214 caml_stack_low = curr_thread->stack_low; in caml_thread_restore_runtime_state()
366 th->stack_low = (value *) caml_stat_alloc(Thread_stack_size); in caml_thread_new_info()
367 th->stack_high = th->stack_low + Thread_stack_size / sizeof(value); in caml_thread_new_info()
368 th->stack_threshold = th->stack_low + Stack_threshold / sizeof(value); in caml_thread_new_info()
411 caml_stat_free(th->stack_low); in caml_thread_remove_info()
/dports/lang/librep/librep_0.92.7/src/
H A Dmain.c162 static void check_configuration (int *stack_low) __attribute__ ((noinline));
166 check_configuration (int *stack_low) in check_configuration() argument
169 int stack_dir = (&stack_high < stack_low) ? -1 : +1; in check_configuration()
545 static void check_configuration (int *stack_low) __attribute__((noinline));
/dports/devel/avr-gdb/gdb-7.3.1/sim/cris/
H A Dsim-if.c715 USI stack_low = 0; in sim_open() local
896 stack_low = (csp - (7168*1024)) & ~8191; in sim_open()
898 stacklen = stacktop - stack_low; in sim_open()
903 stack_low, stacklen, in sim_open()
1031 cpu->stack_low = stack_low; in sim_open()
H A Dsim-main.h147 USI stack_low; member
/dports/devel/gdb761/gdb-7.6.1/sim/cris/
H A Dsim-if.c715 USI stack_low = 0; in sim_open() local
896 stack_low = (csp - (7168*1024)) & ~8191; in sim_open()
898 stacklen = stacktop - stack_low; in sim_open()
903 stack_low, stacklen, in sim_open()
1031 cpu->stack_low = stack_low; in sim_open()
H A Dsim-main.h146 USI stack_low; member
/dports/devel/abseil/abseil-cpp-20211102.0/absl/debugging/internal/
H A Dstacktrace_x86-inl.inc163 size_t stack_low, size_t stack_high) {
263 if (stack_low < old_fp_u && old_fp_u <= stack_high) {
265 if (!(stack_low < new_fp_u && new_fp_u <= stack_high)) {
313 size_t stack_low = getpagesize(); // Assume that the first page is not stack.
323 fp, ucp, stack_low, stack_high);
346 fp = NextStackFrame<!IS_STACK_FRAMES, IS_WITH_CONTEXT>(fp, ucp, stack_low,
/dports/devel/py-grpcio/grpcio-1.43.0/third_party/abseil-cpp/absl/debugging/internal/
H A Dstacktrace_x86-inl.inc163 size_t stack_low, size_t stack_high) {
263 if (stack_low < old_fp_u && old_fp_u <= stack_high) {
265 if (!(stack_low < new_fp_u && new_fp_u <= stack_high)) {
313 size_t stack_low = getpagesize(); // Assume that the first page is not stack.
323 fp, ucp, stack_low, stack_high);
346 fp = NextStackFrame<!IS_STACK_FRAMES, IS_WITH_CONTEXT>(fp, ucp, stack_low,
/dports/math/teyjus/teyjus-2.1-7-ge63f40a/source/front/caml/
H A Dcompatibility.h275 #define stack_low caml_stack_low macro
/dports/devel/emscripten/emscripten-2.0.3/
H A Demscripten.py229 self.stack_low = align_memory(self.global_base + self.static_bump)
230 self.stack_high = align_memory(self.stack_low + shared.Settings.TOTAL_STACK)
232 self.stack_max = self.stack_low
/dports/lang/ocaml/ocaml-4.05.0/byterun/caml/
H A Dcompatibility.h276 #define stack_low caml_stack_low macro
/dports/lang/ocaml-nox11/ocaml-4.05.0/byterun/caml/
H A Dcompatibility.h276 #define stack_low caml_stack_low macro