Searched refs:NUM (Results 1 - 25 of 43) sorted by relevance

12

/macosx-10.10.1/ruby-106/ruby/benchmark/other-lang/
H A Dack.pl9 my $NUM = 9;
10 $NUM = 1 if ($NUM < 1);
11 my $ack = Ack(3, $NUM);
H A Dack.rb11 NUM = 9
12 ack(3, NUM)
H A Dack.py12 NUM = 9
14 Ack(3, NUM)
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_so_ackermann.rb16 NUM = 9
17 ack(3, NUM)
H A Dbm_so_lists.rb3 NUM = 300
42 while i<NUM
H A Dbm_so_exception.rb8 NUM = 250000 # Integer(ARGV[0] || 1)
57 max = NUM+1
/macosx-10.10.1/ksh-23/ksh/src/cmd/INIT/
H A Dexecrate.sh96 NUM=0
99 NUM=1
102 NUM=2
133 case $NUM:$# in
136 NUM=0
140 case $NUM:$# in
/macosx-10.10.1/libpcap-48/libpcap/
H A Dscanner.l342 {N} { yylval.i = stoi((char *)yytext); return NUM; }
362 icmptype { yylval.i = 0; return NUM; }
363 icmpcode { yylval.i = 1; return NUM; }
364 icmp-echoreply { yylval.i = 0; return NUM; }
365 icmp-unreach { yylval.i = 3; return NUM; }
366 icmp-sourcequench { yylval.i = 4; return NUM; }
367 icmp-redirect { yylval.i = 5; return NUM; }
368 icmp-echo { yylval.i = 8; return NUM; }
369 icmp-routeradvert { yylval.i = 9; return NUM; }
370 icmp-routersolicit { yylval.i = 10; return NUM; }
[all...]
H A Dgrammar.y278 %token NUM INBOUND OUTBOUND
305 %type <i> NUM action reason type subtype type_subtype dir
340 | HID '/' NUM { $$.b = gen_mcode($1, NULL, $3,
357 | HID6 '/' NUM {
500 | LESS NUM { $$ = gen_less($2); }
501 | GREATER NUM { $$ = gen_greater($2); }
502 | CBYTE NUM byteop NUM { $$ = gen_byteop($3, $2, $4); }
518 | PF_RNR NUM { $$ = gen_pf_rnr($2); }
519 | PF_SRNR NUM {
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/
H A Dexp.c8 #define NUM (8*8*8) macro
17 int j,i,size=SIZE,num=NUM,mod=MOD;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dexp.c26 #define NUM (8*8*8) macro
35 int j,i,size=SIZE,num=NUM,mod=MOD;
/macosx-10.10.1/awk-20/src/
H A Dtran.c72 literal0 = setsymtab("0", "0", 0.0, NUM|STR|CON|DONTFREE, symtab);
74 nullloc = setsymtab("$zero&null", "", 0.0, NUM|STR|CON|DONTFREE, symtab);
85 nfloc = setsymtab("NF", "", 0.0, NUM, symtab);
87 nrloc = setsymtab("NR", "", 0.0, NUM, symtab);
89 fnrloc = setsymtab("FNR", "", 0.0, NUM, symtab);
92 rstartloc = setsymtab("RSTART", "", 0.0, NUM, symtab);
94 rlengthloc = setsymtab("RLENGTH", "", 0.0, NUM, symtab);
106 ARGC = &setsymtab("ARGC", "", (Awkfloat) ac, NUM, symtab)->fval;
113 setsymtab(temp, *av, atof(*av), STR|NUM, ARGVtab);
135 setsymtab(*envp, p, atof(p), STR|NUM, ENVta
[all...]
H A Dawk.h85 int tval; /* type info: STR|NUM|ARR|FCN|FLD|CON|DONTFREE */
105 #define NUM 01 /* number value is valid */ macro
194 #define isnum(n) ((n)->tval & NUM)
H A Drun.c73 static Cell truecell ={ OBOOL, BTRUE, 0, 0, 1.0, NUM };
75 static Cell falsecell ={ OBOOL, BFALSE, 0, 0, 0.0, NUM };
77 static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM };
79 static Cell contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM };
81 static Cell nextcell ={ OJUMP, JNEXT, 0, 0, 0.0, NUM };
83 static Cell nextfilecell ={ OJUMP, JNEXTFILE, 0, 0, 0.0, NUM };
85 static Cell exitcell ={ OJUMP, JEXIT, 0, 0, 0.0, NUM };
87 static Cell retcell ={ OJUMP, JRET, 0, 0, 0.0, NUM };
89 static Cell tempcell ={ OCELL, CTEMP, 0, "", 0.0, NUM|STR|DONTFREE };
226 static Cell newcopycell = { OCELL, CCOPY, 0, "", 0.0, NUM|ST
[all...]
H A Dlex.c193 yylval.cp = setsymtab(buf, tostring(buf), atof(buf), CON|NUM, symtab);
315 yylval.cp = setsymtab(buf, "", 0.0, STR|NUM, symtab);
479 yylval.cp = setsymtab("NF", "", 0.0, NUM, symtab);
490 yylval.cp = setsymtab(w, "", 0.0, STR|NUM|DONTFREE, symtab);
/macosx-10.10.1/xnu-2782.1.97/pexpert/gen/
H A Dbootargs.c45 #define NUM 0 macro
121 case NUM:
291 return (NUM);
294 return (NUM);
/macosx-10.10.1/screen-22/screen/
H A Dterm.sh88 ' | sed -e s/NUM/num/ -e s/STR/str/ -e s/FLG/flg/ \
/macosx-10.10.1/CPANInternal-159.1/Parse-Yapp-1.05/
H A DCalc.yp25 exp: NUM
67 and return('NUM',$1);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DInstVisitor.h27 #define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS;
122 #define HANDLE_INST(NUM, OPCODE, CLASS) \
154 #define HANDLE_INST(NUM, OPCODE, CLASS) \
156 if (NUM == Instruction::Call) \
/macosx-10.10.1/ICU-531.30/icuSources/samples/coll/
H A Dcoll.cpp61 enum {FLAG, NUM, STRING} type; enumerator in enum:OptSpec::__anon1000
76 {"-level", OptSpec::NUM, &opt_level},
105 case OptSpec::NUM:
/macosx-10.10.1/ICU-531.30/icuSources/samples/strsrch/
H A Dstrsrch.cpp70 enum {FLAG, NUM, STRING} type; enumerator in enum:OptSpec::__anon1003
85 {"-level", OptSpec::NUM, &opt_level},
116 case OptSpec::NUM:
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/ubrkperf/
H A Dubrkperfold.cpp125 enum {FLAG, NUM, STRING} type; enumerator in enum:OptSpec::__anon1227
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:
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/tests/
H A Drun.in107 NUM="`echo $2 | sed 's/[0-9]//g'`"
108 if [ -z "$NUM" ]; then
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dstty.c102 #define NUM 3 macro
134 { "ispeed", NUM, C_SPEED,0, CBAUD, 0, C("\an\a is the input baud rate") },
135 { "ospeed", NUM, C_SPEED,0, CBAUD, 0, C("\an\a is the output baud rate") },
136 { "speed", NUM, C_SPEED,IG, CBAUD },
198 { "line", NUM, C_LINE, 0, 0, 0, C("Line discipline number") },
200 { "min", NUM, T_CHAR, 0, VMIN, 0, C("Mininmum number of characters to read in raw mode") },
201 { "time", NUM, T_CHAR, 0, VTIME, 0, C("Number of .1 second intervals with raw mode") },
719 case NUM:
846 listchars(sp,NUM);
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dmath.c156 #define NUM 47 macro
168 * 0 Non-operators: NUM (numeric constant), ID (identifier),
215 /* PREPLUS PREMINUS NUM ID POWER */
225 * 0 Non-operators: NUM (numeric constant), ID (identifier),
271 /* PREPLUS PREMINUS NUM ID POWER */
463 return NUM;
487 return NUM;
552 return NUM;
700 return NUM;
704 return NUM;
[all...]

Completed in 189 milliseconds

12