Home
last modified time | relevance | path

Searched refs:ref_stack_t (Results 1 – 16 of 16) sorted by relevance

/plan9/sys/src/cmd/gs/src/
H A Distack.h66 int ref_stack_init(ref_stack_t *pstack, const ref *pblock_array,
72 void ref_stack_allow_expansion(ref_stack_t *pstack, bool expand);
75 void ref_stack_set_error_codes(ref_stack_t *pstack, int underflow_error,
82 int ref_stack_set_max_count(ref_stack_t *pstack, long nmax);
88 int ref_stack_set_margin(ref_stack_t *pstack, uint margin);
91 uint ref_stack_count(const ref_stack_t *pstack);
104 ref *ref_stack_index(const ref_stack_t *pstack, long index);
110 uint ref_stack_counttomark(const ref_stack_t *pstack);
116 int ref_stack_store_check(const ref_stack_t *pstack, ref *parray,
129 int ref_stack_store(const ref_stack_t *pstack, ref *parray, uint count,
[all …]
H A Distack.c33 private void init_block(ref_stack_t *pstack, const ref *pblock_array,
35 private int ref_stack_push_block(ref_stack_t *pstack, uint keep, uint add);
42 ref_stack_t *const sptr = vptr; in CLEAR_MARKS_PROC()
47 ENUM_PTRS_WITH(ref_stack_enum_ptrs, ref_stack_t *sptr) return 0;
51 private RELOC_PTRS_WITH(ref_stack_reloc_ptrs, ref_stack_t *sptr) in RELOC_PTRS_WITH()
76 ref_stack_init(ref_stack_t *pstack, const ref *pblock_array, in ref_stack_init()
127 ref_stack_allow_expansion(ref_stack_t *pstack, bool expand) in ref_stack_allow_expansion()
134 ref_stack_set_error_codes(ref_stack_t *pstack, int underflow_error, in ref_stack_set_error_codes()
143 ref_stack_set_max_count(ref_stack_t *pstack, long nmax) in ref_stack_set_max_count()
166 ref_stack_set_margin(ref_stack_t *pstack, uint margin) in ref_stack_set_margin()
[all …]
H A Diparam.h81 ref_stack_t *pstack;
104 int stack_param_list_read(stack_param_list *, ref_stack_t *, uint,
106 int stack_param_list_write(stack_param_list *, ref_stack_t *,
H A Didebug.h37 typedef struct ref_stack_s ref_stack_t; /* also defined in isdata.h */ typedef
41 const ref_stack_t * pstack, const char *msg);
H A Disdata.h65 typedef struct ref_stack_s ref_stack_t; /* also defined in idebug.h */ typedef
96 gs_public_st_complex_only(st_ref_stack, ref_stack_t, "ref_stack_t",\
H A Dzcontext.c302 private void stack_copy(ref_stack_t *, const ref_stack_t *, uint, uint);
525 values_older_than(const ref_stack_t * pstack, uint first, uint last,
685 ref_stack_t *dstack = (ref_stack_t *)&pctx->state.dict_stack; in do_fork()
704 ref_stack_t *estack = (ref_stack_t *)&pctx->state.exec_stack; in do_fork()
713 ref_stack_t *ostack = (ref_stack_t *)&pctx->state.op_stack; in do_fork()
732 values_older_than(const ref_stack_t * pstack, uint first, uint last, in values_older_than()
862 const ref_stack_t *ostack = in zjoin()
863 (ref_stack_t *)&pctx->state.op_stack; in zjoin()
1232 stack_copy(ref_stack_t * to, const ref_stack_t * from, uint count, in stack_copy()
H A Dzvmem.c103 private int restore_check_stack(const ref_stack_t *, const alloc_save_t *, bool);
104 private void restore_fix_stack(ref_stack_t *, const alloc_save_t *, bool);
198 restore_check_stack(const ref_stack_t * pstack, const alloc_save_t * asave, in restore_check_stack()
279 restore_fix_stack(ref_stack_t * pstack, const alloc_save_t * asave, in restore_fix_stack()
H A Diparray.h33 int make_packed_array(ref *, ref_stack_t *, uint, gs_dual_memory_t *,
H A Diosdata.h29 ref_stack_t stack; /* the actual operand stack */
H A Diesdata.h28 ref_stack_t stack; /* the actual execution stack */
H A Didsdata.h32 ref_stack_t stack; /* the actual stack of dictionaries */
H A Dzpacked.c85 make_packed_array(ref * parr, ref_stack_t * pstack, uint size, in make_packed_array()
H A Dinterp.c137 private int copy_stack(i_ctx_t *, const ref_stack_t *, ref *);
318 ref_stack_t *pos = &pcst->op_stack.stack; in gs_interp_alloc_stacks()
329 ref_stack_t *pes = &pcst->exec_stack.stack; in gs_interp_alloc_stacks()
345 ref_stack_t *pds = &pcst->dict_stack.stack; in gs_interp_alloc_stacks()
675 copy_stack(i_ctx_t *i_ctx_p, const ref_stack_t * pstack, ref * arr) in copy_stack()
H A Diparam.c369 ref_stack_t *pstack = splist->pstack; in stack_param_write()
411 stack_param_list_write(stack_param_list * plist, ref_stack_t * pstack, in stack_param_list_write()
1059 ref_stack_t *pstack = splist->pstack; in stack_param_read()
1078 stack_param_list_read(stack_param_list * plist, ref_stack_t * pstack, in stack_param_list_read()
H A Dicontext.c194 ref_stack_t *rdstack = &dstack->stack; in context_state_load()
H A Didebug.c259 const ref_stack_t * pstack, const char *msg) in debug_dump_stack()