Searched refs:stack_ptr (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dthread.h183 vm_offset_t stack_ptr; local
188 __asm__ volatile("mov %%rsp, %0" : "=m" (stack_ptr));
190 __asm__ volatile("mov %%esp, %0" : "=m" (stack_ptr));
194 - stack_ptr);
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tinfo/
H A Dlib_tparm.c175 if (TPS(stack_ptr) < STACKSIZE) {
176 TPS(stack)[TPS(stack_ptr)].num_type = TRUE;
177 TPS(stack)[TPS(stack_ptr)].data.num = x;
178 TPS(stack_ptr)++;
189 if (TPS(stack_ptr) > 0) {
190 TPS(stack_ptr)--;
191 if (TPS(stack)[TPS(stack_ptr)].num_type)
192 result = TPS(stack)[TPS(stack_ptr)].data.num;
203 if (TPS(stack_ptr) < STACKSIZE) {
204 TPS(stack)[TPS(stack_ptr)]
[all...]
/macosx-10.9.5/vim-53/src/
H A Dmisc2.c4200 static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
4203 static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
5422 ff_push(search_ctx, stack_ptr)
5424 ff_stack_T *stack_ptr;
5428 if (stack_ptr != NULL)
5430 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5431 search_ctx->ffsc_stack_ptr = stack_ptr;
5456 ff_free_stack_element(stack_ptr)
5457 ff_stack_T *stack_ptr;
5460 vim_free(stack_ptr
[all...]

Completed in 98 milliseconds