Home
last modified time | relevance | path

Searched refs:stack_top (Results 1 - 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
H A Dosfiber_ppc64.c32 uintptr_t stack_top = (uintptr_t)((uint8_t*)(stack) + stack_size - sizeof(uintptr_t)); in marl_fiber_set_target() local
33 if ((stack_top % 16) != 0) { in marl_fiber_set_target()
34 stack_top -= (stack_top % 16); in marl_fiber_set_target()
38 *(uintptr_t*)stack_top = 0; in marl_fiber_set_target()
40 stack_top -= 48; in marl_fiber_set_target()
41 *(uintptr_t*)stack_top = stack_top + 48; in marl_fiber_set_target()
43 stack_top -= 32; in marl_fiber_set_target()
44 *(uintptr_t*)stack_top in marl_fiber_set_target()
[all...]
H A Dosfiber_x86.c39 uintptr_t* stack_top = (uintptr_t*)((uint8_t*)(stack) + stack_size); in marl_fiber_set_target() local
41 ctx->ESP = (uintptr_t)&stack_top[-5]; in marl_fiber_set_target()
42 stack_top[-3] = (uintptr_t)arg; in marl_fiber_set_target()
43 stack_top[-4] = (uintptr_t)target; in marl_fiber_set_target()
44 stack_top[-5] = 0; // No return target. in marl_fiber_set_target()
H A Dosfiber_x64.c34 uintptr_t* stack_top = (uintptr_t*)((uint8_t*)(stack) + stack_size); in marl_fiber_set_target() local
38 ctx->RSP = (uintptr_t)&stack_top[-3]; in marl_fiber_set_target()
39 stack_top[-2] = 0; // No return target. in marl_fiber_set_target()
H A Dosfiber_aarch64.c32 uintptr_t* stack_top = (uintptr_t*)((uint8_t*)(stack) + stack_size); in marl_fiber_set_target() local
36 ctx->SP = ((uintptr_t)stack_top) & ~(uintptr_t)15; in marl_fiber_set_target()
H A Dosfiber_arm.c32 uintptr_t* stack_top = (uintptr_t*)((uint8_t*)(stack) + stack_size); in marl_fiber_set_target() local
36 ctx->SP = ((uintptr_t)stack_top) & ~(uintptr_t)15; in marl_fiber_set_target()
H A Dosfiber_mips64.c32 uintptr_t* stack_top = (uintptr_t*)((uint8_t*)(stack) + stack_size); in marl_fiber_set_target() local
36 ctx->sp = ((uintptr_t)stack_top) & ~(uintptr_t)15; in marl_fiber_set_target()
/third_party/selinux/checkpolicy/
H A Dmodule_compiler.c50 static scope_stack_t *stack_top = NULL; variable
123 while (stack_top != NULL) { in define_policy()
141 if (stack_top->type != 1 || stack_top->in_else) { in is_creation_allowed()
158 avrule_decl_t *decl = stack_top->decl; in create_symbol()
201 avrule_decl_t *decl = stack_top->decl; in declare_symbol()
330 assert(stack_top->type == 1); in declare_role()
332 if (stack_top->parent == NULL) { in declare_role()
336 roles_tab = stack_top->decl->p_roles.table; in declare_role()
564 assert(stack_top in declare_user()
[all...]
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-scanner.c78 scan_stack_modes_t stack_top) /**< current stack top */ in scanner_scan_primary_expression()
218 if (stack_top != SCAN_STACK_ARRAY_LITERAL) in scanner_scan_primary_expression()
230 if (stack_top != SCAN_STACK_PAREN_EXPRESSION && stack_top != SCAN_STACK_ARRAY_LITERAL) in scanner_scan_primary_expression()
240 if (stack_top != SCAN_STACK_ARRAY_LITERAL) in scanner_scan_primary_expression()
273 if (stack_top == SCAN_STACK_PAREN_EXPRESSION) in scanner_scan_primary_expression()
298 scan_stack_modes_t stack_top) /**< current stack top */ in scanner_scan_post_primary_expression()
369 && (type != LEXER_KEYW_IN || !SCANNER_IS_FOR_START (stack_top))) in scanner_scan_post_primary_expression()
387 scan_stack_modes_t stack_top) /**< current stack top */ in scanner_scan_primary_expression_end()
391 switch (stack_top) in scanner_scan_primary_expression_end()
75 scanner_scan_primary_expression(parser_context_t *context_p, scanner_context_t *scanner_context_p, lexer_token_type_t type, scan_stack_modes_t stack_top) scanner_scan_primary_expression() argument
295 scanner_scan_post_primary_expression(parser_context_t *context_p, scanner_context_t *scanner_context_p, lexer_token_type_t type, scan_stack_modes_t stack_top) scanner_scan_post_primary_expression() argument
384 scanner_scan_primary_expression_end(parser_context_t *context_p, scanner_context_t *scanner_context_p, lexer_token_type_t type, scan_stack_modes_t stack_top) scanner_scan_primary_expression_end() argument
1076 scanner_scan_statement(parser_context_t *context_p, scanner_context_t *scanner_context_p, lexer_token_type_t type, scan_stack_modes_t stack_top) scanner_scan_statement() argument
2135 uint8_t stack_top = context_p->stack_top_uint8; scanner_scan_statement_end() local
2360 scan_stack_modes_t stack_top = (scan_stack_modes_t) context_p->stack_top_uint8; scanner_scan_all() local
[all...]
H A Djs-scanner-internal.h138 #define SCANNER_IS_FOR_START(stack_top) \
139 ((stack_top) >= SCAN_STACK_FOR_VAR_START && (stack_top) <= SCAN_STACK_FOR_START)
/third_party/node/deps/v8/src/diagnostics/
H A Dunwinder.cc74 const void* stack_top) { in AddressIsInStack()
75 return address <= stack_base && address >= stack_top; in AddressIsInStack()
121 const void* stack_top = register_state->sp; in TryUnwindV8Frames() local
127 if (!AddressIsInStack(current_fp, stack_base, stack_top)) return false; in TryUnwindV8Frames()
134 if (!AddressIsInStack(current_fp, stack_base, stack_top)) return false; in TryUnwindV8Frames()
140 if (!AddressIsInStack(final_sp, stack_base, stack_top)) return false; in TryUnwindV8Frames()
73 AddressIsInStack(const void* address, const void* stack_base, const void* stack_top) AddressIsInStack() argument
/third_party/skia/third_party/externals/freetype/src/lzw/
H A Dftzopen.c121 if ( state->stack_top >= state->stack_size ) in ft_lzwstate_stack_grow()
206 state->stack_top = 0; in ft_lzwstate_reset()
252 if ( state->stack_top >= state->stack_size && \
256 state->stack[state->stack_top++] = (FT_Byte)(c); \
380 while ( state->stack_top > 0 ) in FT_LOCAL_DEF()
382 state->stack_top--; in FT_LOCAL_DEF()
385 buffer[result] = state->stack[state->stack_top]; in FT_LOCAL_DEF()
H A Dftzopen.h140 FT_UInt stack_top; member
/third_party/ltp/testcases/kernel/syscalls/mmap/
H A Dmmap18.c88 void *start, *stack_top, *stack_bottom; in allocate_stack() local
100 stack_top = start + reserved_size; in allocate_stack()
103 tst_res(TINFO, "start = %p, stack_top = %p, stack bottom = %p", in allocate_stack()
104 start, stack_top, stack_bottom); in allocate_stack()
/third_party/ltp/testcases/cve/
H A Dstack_clash.c142 unsigned long stack_top = -1UL, start, end; in read_stack_addr_from_proc() local
163 stack_top = start; in read_stack_addr_from_proc()
165 stack_top = end; in read_stack_addr_from_proc()
171 return stack_top; in read_stack_addr_from_proc()
/third_party/node/deps/v8/src/logging/
H A Druntime-call-stats.cc210 RuntimeCallTimer* stack_top = current_timer(); in Leave() local
211 if (stack_top == nullptr) return; // Missing timer is a result of Reset(). in Leave()
212 CHECK(stack_top == timer); in Leave()
/third_party/googletest/googletest/src/
H A Dgtest-death-test.cc1354 void* const stack_top = in ExecDeathTestSpawnChild() local
1359 reinterpret_cast<uintptr_t>(stack_top) % kMaxStackAlignment == 0); in ExecDeathTestSpawnChild()
1361 child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); in ExecDeathTestSpawnChild()
/third_party/node/deps/googletest/src/
H A Dgtest-death-test.cc1320 void* const stack_top = in ExecDeathTestSpawnChild() local
1325 reinterpret_cast<uintptr_t>(stack_top) % kMaxStackAlignment == 0); in ExecDeathTestSpawnChild()
1327 child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); in ExecDeathTestSpawnChild()
/third_party/mesa3d/src/gtest/src/
H A Dgtest-death-test.cc1380 void* const stack_top = in ExecDeathTestSpawnChild() local
1385 reinterpret_cast<uintptr_t>(stack_top) % kMaxStackAlignment == 0); in ExecDeathTestSpawnChild()
1387 child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); in ExecDeathTestSpawnChild()
/third_party/node/deps/v8/tools/
H A Dgrokdump.py1990 stack_top = self.reader.ExceptionSP()
1995 for slot in range(stack_top, stack_bottom,
1999 for slot in range(stack_top, stack_bottom,
2750 stack_top = self.reader.ExceptionSP()
2754 for slot in range(stack_top, stack_bottom,
2832 stack_top = self.reader.ExceptionSP()
2835 stack_top + self.MAX_CONTEXT_STACK)
2836 self.output_words(f, stack_top - 16, stack_bottom, stack_top, "Stack",
3909 stack_top
[all...]
/third_party/jerryscript/jerry-core/vm/
H A Dopcodes.c623 size_t stack_top = (size_t) (frame_ctx_p->stack_top_p - VM_GET_REGISTERS (frame_ctx_p)); in opfunc_create_executable_object() local
624 ecma_value_t *new_stack_top_p = new_registers_p + stack_top; in opfunc_create_executable_object()
/third_party/node/src/
H A Dnode_worker.cc645 const uintptr_t stack_top = reinterpret_cast<uintptr_t>(&arg); in StartThread()
649 w->stack_base_ = stack_top - (w->stack_size_ - kStackBufferSize); in StartThread()

Completed in 27 milliseconds