Home
last modified time | relevance | path

Searched refs:stack_count (Results 1 – 6 of 6) sorted by relevance

/external/autotest/client/site_tests/security_RuntimeExecStack/
Dsecurity_RuntimeExecStack.py35 stack_count = 0
42 stack_count += 1
54 if stack_count > 0:
/external/mesa3d/src/mesa/program/
Dregister_allocate.c154 unsigned int stack_count; member
385 g->stack[g->stack_count] = i; in ra_simplify()
386 g->stack_count++; in ra_simplify()
413 while (g->stack_count != 0) { in ra_select()
415 int n = g->stack[g->stack_count - 1]; in ra_select()
442 g->stack_count--; in ra_select()
464 g->stack[g->stack_count] = i; in ra_optimistic_color()
465 g->stack_count++; in ra_optimistic_color()
/external/v8/test/unittests/compiler/
Dinstruction-selector-unittest.cc478 EXPECT_EQ(1u, desc_before->stack_count()); in TARGET_TEST_F()
590 EXPECT_EQ(1u, desc_before_outer->stack_count()); in TARGET_TEST_F()
605 EXPECT_EQ(2u, desc_before->stack_count()); in TARGET_TEST_F()
/external/v8/src/compiler/
Dinstruction.cc942 size_t locals_count, size_t stack_count, in FrameStateDescriptor() argument
950 stack_count_(stack_count), in FrameStateDescriptor()
957 size_t size = 1 + parameters_count() + locals_count() + stack_count() + in GetSize()
Dinstruction.h1126 size_t stack_count,
1135 size_t stack_count() const { return stack_count_; } in stack_count() function
Dinstruction-selector.cc452 DCHECK_EQ(descriptor->stack_count(), StateValuesAccess(stack).size()); in AddInputsToFrameStateDescriptor()