Home
last modified time | relevance | path

Searched refs:FTH_STACK_DEPTH (Results 1 – 5 of 5) sorted by relevance

/dports/lang/fth/fth-1.4.1/src/
H A Dproc.c566 if (FTH_STACK_DEPTH(vm) > depth) { in execute_proc()
625 depth = FTH_STACK_DEPTH(vm); in fth_xt_call()
680 depth = FTH_STACK_DEPTH(vm); in fth_xt_apply()
726 depth = FTH_STACK_DEPTH(vm); in fth_proc_call()
777 depth = FTH_STACK_DEPTH(vm); in fth_proc_apply()
1672 depth = FTH_STACK_DEPTH(vm); in fth_get_optkey()
1743 depth = FTH_STACK_DEPTH(vm); in ficl_get_optkey()
1777 if (FTH_STACK_DEPTH(vm) > req) { in fth_get_optarg()
1855 depth = FTH_STACK_DEPTH(vm); in ficl_get_optkeys()
1923 if (FTH_STACK_DEPTH(vm) <= pos) in ficl_get_optargs()
[all …]
H A Dfth.c98 depth = FTH_STACK_DEPTH(vm); in eval_with_error_exit()
119 new_depth = FTH_STACK_DEPTH(vm) - depth; in eval_with_error_exit()
H A Dutils.c1057 len = FTH_STACK_DEPTH(vm); in ficl_history()
1286 len = FTH_STACK_DEPTH(vm); in ficl_bindkey()
1670 len = FTH_STACK_DEPTH(vm); in ficl_bindkey()
1928 len = FTH_STACK_DEPTH(vm); in fth_repl()
H A Dmisc.c799 depth = FTH_STACK_DEPTH(vm); in fth_eval()
808 new_depth = FTH_STACK_DEPTH(vm) - depth; in fth_eval()
3533 make_simple_array_var(3, FTH_STACK_DEPTH(vm), to_obj, in ficl_set_begin_paren()
3544 depth = FTH_STACK_DEPTH(vm) - (ficlInteger) simple_array_ref(ary, 0); in ficl_set_end_paren()
3573 d = FTH_STACK_DEPTH(vm); in fth_begin_values_to_obj()
3633 depth = FTH_STACK_DEPTH(vm) - od; in FTH_BEGIN_OBJ()
H A Dfth-lib.h561 #define FTH_STACK_DEPTH(Vm) \ macro