/external/libpcap/ |
scanner.l | 310 {N} { yylval.i = stoi((char *)yytext); return NUM; } 331 icmptype { yylval.i = 0; return NUM; } 332 icmpcode { yylval.i = 1; return NUM; } 333 icmp-echoreply { yylval.i = 0; return NUM; } 334 icmp-unreach { yylval.i = 3; return NUM; } 335 icmp-sourcequench { yylval.i = 4; return NUM; } 336 icmp-redirect { yylval.i = 5; return NUM; } 337 icmp-echo { yylval.i = 8; return NUM; } 338 icmp-routeradvert { yylval.i = 9; return NUM; } 339 icmp-routersolicit { yylval.i = 10; return NUM; } [all...] |
grammar.y | 174 %token NUM INBOUND OUTBOUND 199 %type <i> NUM action reason 234 | HID '/' NUM { $$.b = gen_mcode($1, NULL, $3, 243 | HID6 '/' NUM { 379 | LESS NUM { $$ = gen_less($2); } 380 | GREATER NUM { $$ = gen_greater($2); } 381 | CBYTE NUM byteop NUM { $$ = gen_byteop($3, $2, $4); } 395 | PF_RNR NUM { $$ = gen_pf_rnr($2); } 396 | PF_SRNR NUM { $$ = gen_pf_srnr($2); [all...] |
scanner.c | [all...] |
tokdefs.h | 65 NUM = 291, 169 #define NUM 291
|
/development/tools/findunused/ |
removeunusedresources | 26 read LINE NUM 74 read LINE NUM
|
/external/openssl/crypto/bn/ |
exp.c | 8 #define NUM (8*8*8) 17 int j,i,size=SIZE,num=NUM,mod=MOD; local 46 for (i=0; i<num; i++) 55 d,num,d/num,(int)((d/num)*mod),md/10.0); 56 num/=8; 58 if (num <= 0) num=1 [all...] |
/external/wpa_supplicant_6/wpa_supplicant/tests/ |
test_x509v3_nist.sh | 33 NUM=$1 36 $X509TEST "$@" > $TMPOUT.$NUM 44 echo "test$NUM failed - expected validation success" 50 echo "test$NUM failed - expected validation failure" 53 REASON=`grep "Certificate chain validation failed: " $TMPOUT.$NUM` 59 echo "test$NUM failed - expected validation result $RES; result was $REASONNUM" 63 echo "test$NUM failed - expected validation failure; other type of error detected" 69 rm $TMPOUT.$NUM 70 SUCCESS="$SUCCESS $NUM" 72 FAILURE="$FAILURE $NUM" [all...] |
test_x509v3_nist2.sh | 29 NUM=$1 32 $X509TEST "$@" TrustAnchorRootCertificate.crt > $TMPOUT.$NUM 40 echo "$NUM failed - expected validation success" 46 echo "$NUM failed - expected validation failure" 49 REASON=`grep "Certificate chain validation failed: " $TMPOUT.$NUM` 55 echo "$NUM failed - expected validation result $RES; result was $REASONNUM" 59 echo "$NUM failed - expected validation failure; other type of error detected" 65 rm $TMPOUT.$NUM 66 SUCCESS="$SUCCESS $NUM" 68 FAILURE="$FAILURE $NUM" [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/ |
elfos.h | 114 PREFIX is the class of label and NUM is the number within the class. 121 #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \ 124 sprintf (LABEL, "*.%s%u", PREFIX, (unsigned) (NUM)); \ 140 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE) \ 145 #define ASM_OUTPUT_CASE_LABEL(FILE, PREFIX, NUM, JUMPTABLE) \ 148 ASM_OUTPUT_BEFORE_CASE_LABEL (FILE, PREFIX, NUM, JUMPTABLE) \ 149 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM); \
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/config/ |
elfos.h | 114 PREFIX is the class of label and NUM is the number within the class. 121 #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \ 124 sprintf (LABEL, "*.%s%u", PREFIX, (unsigned) (NUM)); \ 140 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE) \ 145 #define ASM_OUTPUT_CASE_LABEL(FILE, PREFIX, NUM, JUMPTABLE) \ 148 ASM_OUTPUT_BEFORE_CASE_LABEL (FILE, PREFIX, NUM, JUMPTABLE) \ 149 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM); \
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/arm/ |
aout.h | 223 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \ 224 sprintf (STRING, "*%s%s%u", LOCAL_LABEL_PREFIX, PREFIX, (unsigned int)(NUM))
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/config/arm/ |
aout.h | 223 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \ 224 sprintf (STRING, "*%s%s%u", LOCAL_LABEL_PREFIX, PREFIX, (unsigned int)(NUM))
|
/external/bison/lib/ |
bbitset.h | 267 /* Find list of up to NUM bits set in BSET starting from and including 270 #define BITSET_LIST_(BSET, LIST, NUM, NEXT) \ 271 (BSET)->b.vtable->list (BSET, LIST, NUM, NEXT) 273 /* Find reverse list of up to NUM bits set in BSET starting from and 276 #define BITSET_LIST_REVERSE_(BSET, LIST, NUM, NEXT) \ 277 (BSET)->b.vtable->list_reverse (BSET, LIST, NUM, NEXT)
|
bitset.h | 94 bitset_bindex num; member in struct:__anon1440 269 /* Find list of up to NUM bits set in BSET starting from and including 272 #define bitset_list(BSET, LIST, NUM, NEXT) \ 273 BITSET_LIST_ (BSET, LIST, NUM, NEXT) 275 /* Find reverse list of up to NUM bits set in BSET starting from and 278 #define bitset_list_reverse(BSET, LIST, NUM, NEXT) \ 279 BITSET_LIST_REVERSE_ (BSET, LIST, NUM, NEXT) 315 for (ITER.next = (MIN), ITER.num = BITSET_LIST_SIZE; \ 316 (ITER.num == BITSET_LIST_SIZE) \ 317 && (ITER.num = bitset_list (BSET, ITER.list, [all...] |
/external/icu4c/samples/coll/ |
coll.cpp | 61 enum {FLAG, NUM, STRING} type; 76 {"-level", OptSpec::NUM, &opt_level}, 105 case OptSpec::NUM:
|
/external/icu4c/samples/strsrch/ |
strsrch.cpp | 70 enum {FLAG, NUM, STRING} type; 85 {"-level", OptSpec::NUM, &opt_level}, 116 case OptSpec::NUM:
|
/external/chromium/third_party/icu/source/test/perf/ubrkperf/ |
ubrkperfold.cpp | 125 enum {FLAG, NUM, STRING} type; 132 {"-langid", OptSpec::NUM, &opt_langid}, 137 {"-loop", OptSpec::NUM, &opt_loopCount}, 138 {"-time", OptSpec::NUM, &opt_time}, 139 {"-passes", OptSpec::NUM, &opt_passesCount}, 252 case OptSpec::NUM:
|
/external/icu4c/test/perf/ubrkperf/ |
ubrkperfold.cpp | 125 enum {FLAG, NUM, STRING} type; 132 {"-langid", OptSpec::NUM, &opt_langid}, 137 {"-loop", OptSpec::NUM, &opt_loopCount}, 138 {"-time", OptSpec::NUM, &opt_time}, 139 {"-passes", OptSpec::NUM, &opt_passesCount}, 252 case OptSpec::NUM:
|
/external/bison/data/ |
glr.c | 109 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE]) 111 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH 129 # b4_rhs_location(RULE-LENGTH, NUM) 131 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols 376 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. 396 /* YYDPREC[RULE-NUM] -- Dynamic precedence of rule #RULE-NUM (0 if none). */ 402 /* YYMERGER[RULE-NUM] -- Index of merging function for rule #RULE-NUM. * [all...] |
yacc.c | 101 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE]) 103 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH 121 # b4_rhs_location(RULE-LENGTH, NUM) 123 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols 472 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. 481 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to 482 token YYLEX-NUM. */ 502 STATE-NUM when YYTABLE doesn't specify something else to do. Zero 509 /* YYDEFGOTO[NTERM-NUM]. * [all...] |
/external/chromium/third_party/icu/source/test/perf/collationperf/ |
collperf.cpp | 142 enum {FLAG, NUM, STRING} type; 149 {"-langid", OptSpec::NUM, &opt_langid}, 167 {"-level", OptSpec::NUM, &opt_level}, 170 {"-loop", OptSpec::NUM, &opt_loopCount}, 171 {"-iloop", OptSpec::NUM, &opt_iLoopCount}, 242 case OptSpec::NUM: [all...] |
/external/icu4c/test/perf/collationperf/ |
collperf.cpp | 142 enum {FLAG, NUM, STRING} type; 149 {"-langid", OptSpec::NUM, &opt_langid}, 167 {"-level", OptSpec::NUM, &opt_level}, 170 {"-loop", OptSpec::NUM, &opt_loopCount}, 171 {"-iloop", OptSpec::NUM, &opt_iLoopCount}, 242 case OptSpec::NUM: [all...] |
/external/webkit/WebKitTools/android/flex-2.5.4a/ |
scan.l | 71 %x SECT2 SECT2PROLOG SECT3 CODEBLOCK PICKUPDEF SC CARETISBOL NUM QUOTE 336 "{"/[[:digit:]] BEGIN(NUM); return '{'; 539 <NUM>{
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
defaults.h | 167 #define ASM_OUTPUT_DEBUG_LABEL(FILE, PREFIX, NUM) \ 168 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM)
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
defaults.h | 167 #define ASM_OUTPUT_DEBUG_LABEL(FILE, PREFIX, NUM) \ 168 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM)
|