HomeSort by: relevance | last modified time | path
    Searched refs:nesting (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /src/crypto/external/bsd/heimdal/dist/cf/
roken-h-process.pl 23 my @nesting;
25 push @nesting, 1;
31 push @nesting, 1;
33 push @nesting, 0;
39 push @nesting, 0;
41 push @nesting, 1;
45 my $var = pop @nesting;
47 push @nesting, $var;
49 } elsif ($nesting[$#nesting] and m/\s*#define\s+(\w+)\s+(\S+)/)
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
dict_cidr.c 120 int nesting, VSTRING *why)
162 if (nesting == 0) {
265 int nesting = 0; local
320 nesting, why);
329 sizeof(*rule_stack), nesting + 1,
333 (DICT_CIDR_ENTRY **) mvect_realloc(&mvect, nesting + 1);
334 rule_stack[nesting] = rule;
335 nesting++;
339 if (nesting-- <= 0)
342 if_rule = rule_stack[nesting];
    [all...]
dict_regexp.c 78 #define DICT_REGEXP_OP_IF 2 /* Increase if/endif nesting on match */
79 #define DICT_REGEXP_OP_ENDIF 3 /* Decrease if/endif nesting on match */
553 int nesting)
722 if (nesting == 0) {
762 int nesting = 0; local
822 p, nesting);
831 sizeof(*rule_stack), nesting + 1,
835 (DICT_REGEXP_RULE **) mvect_realloc(&mvect, nesting + 1);
836 rule_stack[nesting] = rule;
837 nesting++
    [all...]
dict_pcre.c 152 #define DICT_PCRE_OP_IF 2 /* Increase if/endif nesting on match */
153 #define DICT_PCRE_OP_ENDIF 3 /* Decrease if/endif nesting on match */
755 int nesting)
966 if (nesting == 0) {
1013 int nesting = 0; local
1080 p, nesting);
1086 sizeof(*rule_stack), nesting + 1,
1090 (DICT_PCRE_RULE **) mvect_realloc(&mvect, nesting + 1);
1091 rule_stack[nesting] = rule;
1092 nesting++
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/bfin/
cec-raise-reti.S 44 # Activate interrupt nesting early
70 # Activate interrupt nesting early
86 # Activate interrupt nesting early
cec-no-snen-reti.S 20 # Disable self nesting
34 # Counters to keep track of nesting depth
65 # Try to avoid nesting a few times
cec-snen-reti.S 20 # Enable self nesting
34 # Counter to keep track of nesting depth
cec-multi-pending.S 60 # Activate interrupt nesting early
105 # Activate interrupt nesting a little later
154 # Activate interrupt nesting a little later
  /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
cec-raise-reti.S 44 # Activate interrupt nesting early
70 # Activate interrupt nesting early
86 # Activate interrupt nesting early
cec-no-snen-reti.S 20 # Disable self nesting
34 # Counters to keep track of nesting depth
65 # Try to avoid nesting a few times
cec-snen-reti.S 20 # Enable self nesting
34 # Counter to keep track of nesting depth
cec-multi-pending.S 60 # Activate interrupt nesting early
105 # Activate interrupt nesting a little later
154 # Activate interrupt nesting a little later
  /src/usr.bin/make/unit-tests/
directive-if-nested.mk 4 # .if directives is pre-allocated, any deeper nesting is reallocated.
varmod-match.mk 193 # ( while parsing the pattern, starts a nesting level
194 # ) while parsing the pattern, ends a nesting level
195 # { while parsing the pattern, starts a nesting level
196 # } while parsing the pattern, ends a nesting level
varmod-edge.mk 111 # counts for the nesting level and matches with the first closing brace.
126 # Again, the ( takes place in the nesting level, and there is no way to
var-op-sunsh.mk 88 # the assignment operator at nesting level 0. All other words would lead
  /src/bin/ksh/
syn.c 18 int start_token; /* token than began nesting (eg, FOR) */
19 int start_line; /* line nesting began on */
57 static struct nesting_state nesting; /* \n changed to ; */ variable in typeref:struct:nesting_state
722 if (nesting.start_token) {
723 c = nesting.start_token;
724 source->errline = nesting.start_line;
764 *save = nesting;
765 nesting.start_token = tok;
766 nesting.start_line = source->line;
773 nesting = *saved
    [all...]
  /src/usr.bin/mail/
support.c 429 int nesting = 1; local
431 for (/*EMPTY*/; nesting > 0 && *cp; cp++) {
438 nesting++;
441 nesting--;
names.c 98 int nesting = 0; local
103 nesting++;
106 --nesting;
109 if (nesting <= 0)
mime_decode.c 150 int nesting; local
167 nesting = 1;
168 while (nesting > 0 && *++cp) {
172 nesting++;
174 nesting--;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
parser.d 177 uint nesting = 0; // group nesting level and repetitions step
178 uint lookaroundNest = 0; // nesting of lookaround
274 nesting++;
281 nesting++;
292 nesting++;
306 nesting++;
378 counterDepth = std.algorithm.comparison.max(counterDepth, nesting+1);
396 counterDepth = std.algorithm.comparison.max(counterDepth, nesting+1);
479 nesting--
    [all...]
  /src/tests/usr.bin/indent/
t_errors.sh 329 'error: code.c:1: Statement nesting error' \
342 'error: code.c:1: Statement nesting error' \
383 error: code.c:4: Statement nesting error
  /src/external/gpl3/binutils/dist/binutils/
wrstabs.c 164 /* The block nesting depth. */
165 unsigned int nesting; member in struct:stab_write_handle
2058 if (info->nesting != 0 || info->fun_offset != -1)
2142 ++info->nesting;
2148 if (info->nesting == 1)
2192 if (info->nesting < 1)
2195 --info->nesting;
2198 if (info->nesting == 0)
  /src/external/gpl3/binutils.old/dist/binutils/
wrstabs.c 164 /* The block nesting depth. */
165 unsigned int nesting; member in struct:stab_write_handle
2060 if (info->nesting != 0 || info->fun_offset != -1)
2144 ++info->nesting;
2150 if (info->nesting == 1)
2194 if (info->nesting < 1)
2197 --info->nesting;
2200 if (info->nesting == 0)
  /src/external/gpl3/gcc/dist/gcc/cp/
lambda.cc 1488 unsigned nesting; // Inside a function, VAR_DECLs get the function variable
1489 // as scope. This counts that nesting.
1506 lambda_scope.nesting++;
1511 lambda_scope.nesting = 0;
1522 if (!lambda_scope.nesting--)

Completed in 26 milliseconds

1 2 3