HomeSort by relevance Sort by last modified time
    Searched refs:NUM (Results 1 - 25 of 67) sorted by null

1 2 3

  /gdk/samples/hello-llvm/jni/
test.cpp 1 #ifndef NUM
2 #define NUM 5566
10 return NUM;
Android.mk 9 LOCAL_CFLAGS := -D NUM=7788
Android-portable.mk 6 LOCAL_CFLAGS := -D NUM=7788
  /ndk/tests/build/short-commands/
build.sh 18 NUM=0
32 local NUM=0
33 while [ $NUM -lt $COUNT ]; do
34 SRCFILE=$SRCDIR/foo$NUM.c
36 int foo$NUM (int x)
41 NUM=$(( $NUM + 1 ))
51 NUM=0
52 while [ $NUM -lt $COUNT ]; do
54 extern int foo$NUM (int)
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDFile.h 135 template<size_t NUM>
136 class MCLDFileFactory : public GCFactory<MCLDFile, NUM>
139 typedef GCFactory<MCLDFile, NUM> Alloc;
154 template<size_t NUM>
155 mcld::MCLDFile* mcld::MCLDFileFactory<NUM>::produce(llvm::StringRef pName,
164 template<size_t NUM>
165 mcld::MCLDFile* mcld::MCLDFileFactory<NUM>::produce()
  /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/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
scopes.rb 79 | NUM
101 : ID '=' NUM ';'
125 : ID '=' NUM ';'
146 : NUM { $e[0]::a = Integer($NUM.text); }
160 : NUM { $f[-2]::a = Integer($NUM.text); }
170 NUM : ('0'..'9')+
  /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...]
  /ndk/sources/host-tools/nawk-20071023/
tran.c 72 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, ENVtab)
    [all...]
awk.h 84 int tval; /* type info: STR|NUM|ARR|FCN|FLD|CON|DONTFREE */
104 #define NUM 01 /* number value is valid */
193 #define isnum(n) ((n)->tval & NUM)
run.c 73 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 };
223 static Cell newcopycell = { OCELL, CCOPY, 0, "", 0.0, NUM|STR|DONTFREE }
1214 char *t, temp, num[50], *fs = 0; local
1811 int mflag, tempstat, num; local
    [all...]
  /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); \
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/
elfos.h 110 PREFIX is the class of label and NUM is the number within the class.
117 #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \
120 sprintf (LABEL, "*.%s%u", PREFIX, (unsigned) (NUM)); \
136 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE) \
141 #define ASM_OUTPUT_CASE_LABEL(FILE, PREFIX, NUM, JUMPTABLE) \
144 ASM_OUTPUT_BEFORE_CASE_LABEL (FILE, PREFIX, NUM, JUMPTABLE) \
145 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM); \
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/
elfos.h 110 PREFIX is the class of label and NUM is the number within the class.
117 #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \
120 sprintf (LABEL, "*.%s%u", PREFIX, (unsigned) (NUM)); \
136 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE) \
141 #define ASM_OUTPUT_CASE_LABEL(FILE, PREFIX, NUM, JUMPTABLE) \
144 ASM_OUTPUT_BEFORE_CASE_LABEL (FILE, PREFIX, NUM, JUMPTABLE) \
145 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM); \
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/
elfos.h 110 PREFIX is the class of label and NUM is the number within the class.
117 #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \
120 sprintf (LABEL, "*.%s%u", PREFIX, (unsigned) (NUM)); \
136 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE) \
141 #define ASM_OUTPUT_CASE_LABEL(FILE, PREFIX, NUM, JUMPTABLE) \
144 ASM_OUTPUT_BEFORE_CASE_LABEL (FILE, PREFIX, NUM, JUMPTABLE) \
145 (*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/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))
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
aout.h 237 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \
238 sprintf (STRING, "*%s%s%u", LOCAL_LABEL_PREFIX, PREFIX, (unsigned int)(NUM))
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/
aout.h 237 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \
238 sprintf (STRING, "*%s%s%u", LOCAL_LABEL_PREFIX, PREFIX, (unsigned int)(NUM))
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
aout.h 237 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \
238 sprintf (STRING, "*%s%s%u", LOCAL_LABEL_PREFIX, PREFIX, (unsigned int)(NUM))

Completed in 1834 milliseconds

1 2 3