Searched refs:stack (Results 1 – 11 of 11) sorted by relevance
| /scripts/kconfig/ |
| D | symbol.c | 1058 static void dep_stack_insert(struct dep_stack *stack, struct symbol *sym) in dep_stack_insert() argument 1060 memset(stack, 0, sizeof(*stack)); in dep_stack_insert() 1062 check_top->next = stack; in dep_stack_insert() 1063 stack->prev = check_top; in dep_stack_insert() 1064 stack->sym = sym; in dep_stack_insert() 1065 check_top = stack; in dep_stack_insert() 1082 struct dep_stack *stack; in sym_check_print_recursive() local 1093 for (stack = check_top; stack != NULL; stack = stack->prev) in sym_check_print_recursive() 1094 if (stack->sym == last_sym) in sym_check_print_recursive() 1096 if (!stack) { in sym_check_print_recursive() [all …]
|
| D | zconf.tab.c_shipped | 332 /* The OS might guarantee only one guard page at the bottom of the stack, 335 to allow for a few compiler-allocated temporary stack slots. */ 374 /* A type that is properly aligned for any stack member. */ 381 /* The size of the maximum gap between one aligned stack and the next. */ 394 elements in the stack, and YYPTR gives the new location of the 395 stack. Advance YYPTR to a properly aligned location for the next 396 stack. */ 995 | yy_stack_print -- Print the state stack from its BOTTOM up to its | 1044 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", 1080 if the built-in stack extension method is used). [all …]
|
| D | zconf.lex.c_shipped | 280 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ 281 static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ 288 * Returns the top of the stack, or NULL. 294 /* Same as previous macro, but useful when we know that the buffer stack is not 991 /* Number of entries by which start-condition stack grows. */ 1965 /** Pushes the new state onto the stack. The new state becomes 1966 * the current state. This function will allocate the stack 1997 /** Removes and deletes the top of the stack, if present. 2017 /* Allocates the stack if it does not exist. 2027 * scanner will even need a stack. We use 2 instead of 1 to avoid an [all …]
|
| /scripts/ |
| D | checkstack.pl | 37 my (@stack, $re, $dre, $x, $xs, $funcre); 155 push @stack, "$intro$size\n"; 171 push @stack, "$intro$size\n"; 176 print sort { ($b =~ /:\t*(\d+)$/)[0] <=> ($a =~ /:\t*(\d+)$/)[0] } @stack;
|
| D | Makefile.kasan | 14 --param asan-stack=1 --param asan-globals=1 \
|
| D | checkpatch.pl | 1064 my @stack = (); 1071 @stack = (['', 0]) if ($#stack == -1); 1105 push(@stack, [ $type, $level ]); 1107 ($type, $level) = @{$stack[$#stack - 1]}; 1109 ($type, $level) = @{pop(@stack)}; 1268 my @stack = ($level); 1277 push(@stack, $level); 1279 $level = $stack[$#stack - 1]; 1281 $level = pop(@stack);
|
| D | analyze_suspend.py | 774 stack = dict() 778 stack[l.depth] = l 781 if(l.depth not in stack): 783 stack[l.depth].length = l.length 784 stack[l.depth] = 0
|
| /scripts/genksyms/ |
| D | parse.tab.c_shipped | 355 /* The OS might guarantee only one guard page at the bottom of the stack, 358 to allow for a few compiler-allocated temporary stack slots. */ 395 /* A type that is properly aligned for any stack member. */ 402 /* The size of the maximum gap between one aligned stack and the next. */ 415 elements in the stack, and YYPTR gives the new location of the 416 stack. Advance YYPTR to a properly aligned location for the next 417 stack. */ 940 | yy_stack_print -- Print the state stack from its BOTTOM up to its | 973 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", 1010 if the built-in stack extension method is used). [all …]
|
| D | lex.lex.c_shipped | 252 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ 253 static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ 260 * Returns the top of the stack, or NULL. 266 /* Same as previous macro, but useful when we know that the buffer stack is not 710 /* Number of entries by which start-condition stack grows. */ 1517 /** Pushes the new state onto the stack. The new state becomes 1518 * the current state. This function will allocate the stack 1549 /** Removes and deletes the top of the stack, if present. 1569 /* Allocates the stack if it does not exist. 1579 * scanner will even need a stack. We use 2 instead of 1 to avoid an [all …]
|
| /scripts/dtc/ |
| D | dtc-parser.tab.c_shipped | 343 /* The OS might guarantee only one guard page at the bottom of the stack, 346 to allow for a few compiler-allocated temporary stack slots. */ 384 /* A type that is properly aligned for any stack member. */ 392 /* The size of the maximum gap between one aligned stack and the next. */ 405 elements in the stack, and YYPTR gives the new location of the 406 stack. Advance YYPTR to a properly aligned location for the next 407 stack. */ 875 | yy_stack_print -- Print the state stack from its BOTTOM up to its | 908 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", 945 if the built-in stack extension method is used). [all …]
|
| D | dtc-lexer.lex.c_shipped | 251 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ 252 static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ 259 * Returns the top of the stack, or NULL. 265 /* Same as previous macro, but useful when we know that the buffer stack is not 804 /* Number of entries by which start-condition stack grows. */ 1829 /** Pushes the new state onto the stack. The new state becomes 1830 * the current state. This function will allocate the stack 1861 /** Removes and deletes the top of the stack, if present. 1881 /* Allocates the stack if it does not exist. 1891 * scanner will even need a stack. We use 2 instead of 1 to avoid an [all …]
|