Searched refs:stack_top (Results 1 – 10 of 10) sorted by relevance
/reactos/dll/win32/usp10/ |
H A D | bidi.c | 218 do { stack_top--; \ 219 stack[stack_top].level = l; \ 220 stack[stack_top].override = o; \ 236 int stack_top = MAX_DEPTH+1; in resolveExplicit() local 238 stack[stack_top].level = level; in resolveExplicit() 239 stack[stack_top].override = NI; in resolveExplicit() 240 stack[stack_top].isolate = FALSE; in resolveExplicit() 406 else if (!stack[stack_top].isolate && stack_top < (MAX_DEPTH+1)) in resolveExplicit() 650 int stack_top = iso_run->length; in computeBracketPairs() local 668 --stack_top; in computeBracketPairs() [all …]
|
/reactos/sdk/lib/3rdparty/freetype/src/lzw/ |
H A D | ftzopen.c | 121 if ( state->stack_top >= state->stack_size ) in ft_lzwstate_stack_grow() 201 state->stack_top = 0; in ft_lzwstate_reset() 247 if ( state->stack_top >= state->stack_size && \ 251 state->stack[state->stack_top++] = (FT_Byte)(c); \ 375 while ( state->stack_top > 0 ) in ft_lzwstate_io() 377 state->stack_top--; in ft_lzwstate_io() 380 buffer[result] = state->stack[state->stack_top]; in ft_lzwstate_io()
|
H A D | ftzopen.h | 140 FT_UInt stack_top; member
|
/reactos/dll/win32/jscript/ |
H A D | engine.c | 43 unsigned stack_top; member 89 ctx->stack[ctx->stack_top++] = v; in stack_push() 107 return ctx->stack[ctx->stack_top-1]; in stack_top() 113 return ctx->stack+ctx->stack_top-1-n; in stack_top_ref() 132 return ctx->stack[--ctx->stack_top]; in stack_pop() 282 ctx->stack_top -= 2; in stack_pop_exprval() 772 id = get_number(stack_top(ctx)); in interp_forin() 919 except->stack_top = ctx->stack_top; in interp_push_except() 1428 array = stack_top(ctx); in interp_carray_set() 2776 assert(except_frame->stack_top <= ctx->stack_top); in unwind_exception() [all …]
|
H A D | json.c | 328 size_t stack_top; member 341 }else if(ctx->stack_top == ctx->stack_size) { in stringify_push_obj() 351 ctx->stack[ctx->stack_top++] = obj; in stringify_push_obj() 357 ctx->stack_top--; in stringify_pop_obj() 362 size_t i = ctx->stack_top; in is_on_stack() 533 for(j=0; j < ctx->stack_top; j++) { in stringify_array() 604 for(i=0; i < ctx->stack_top; i++) { in stringify_object() 645 for(i=1; i < ctx->stack_top; i++) { in stringify_object() 805 assert(!stringify_ctx.stack_top); in JSON_stringify()
|
H A D | jscript.h | 433 unsigned stack_top; member
|
H A D | jscript.c | 79 assert(!ctx->stack_top); in script_release()
|
/reactos/dll/win32/rpcrt4/ |
H A D | ndr_stubless.h | 259 void **stack_top, void **fpu_stack ) DECLSPEC_HIDDEN; 261 void **stack_top ) DECLSPEC_HIDDEN;
|
H A D | ndr_stubless.c | 725 This = stack_top[0]; in do_ndr_client_call() 742 stub_msg->StackTop = (unsigned char *)stack_top; in do_ndr_client_call() 851 void **stack_top, void **fpu_stack ) in ndr_client_call() argument 925 case 1: *(float *)&stack_top[i] = *(float *)&fpu_stack[i]; break; in ndr_client_call() 944 stack_top, fpu_stack, &stubMsg, procedure_number, stack_size, in ndr_client_call() 962 stack_top, fpu_stack, &stubMsg, procedure_number, stack_size, in ndr_client_call() 995 stack_top, fpu_stack, &stubMsg, procedure_number, stack_size, in ndr_client_call() 1670 memcpy(pStubMsg->StackTop, stack_top, async_call_data->stack_size); in do_ndr_async_client_call() 1802 void **stack_top ) in ndr_async_client_call() argument 1813 do_ndr_async_client_call( pStubDesc, pFormat, stack_top ); in ndr_async_client_call() [all …]
|
/reactos/dll/win32/vbscript/ |
H A D | interp.c | 256 static inline VARIANT *stack_top(exec_ctx_t *ctx, unsigned n) in stack_top() function 336 VARIANT *v = stack_top(ctx, n); in stack_assume_val() 422 VARIANT *v = stack_top(ctx, n), *ref; in stack_assume_disp() 1080 hres = VarCmp(stack_top(ctx, 0), &zero, ctx->script->lcid, 0); in interp_step() 1117 assert(V_VT(stack_top(ctx, 0)) == VT_EMPTY); in interp_newenum() 1118 r = stack_top(ctx, 0); in interp_newenum() 1182 if(V_VT(stack_top(ctx, 0)) == VT_EMPTY) { in interp_enumnext() 1187 assert(V_VT(stack_top(ctx, 0)) == VT_UNKNOWN); in interp_enumnext() 1188 iter = (IEnumVARIANT*)V_UNKNOWN(stack_top(ctx, 0)); in interp_enumnext() 1703 hres = var_cmp(ctx, stack_top(ctx, 0), v.v); in interp_case() [all …]
|