Lines Matching refs:a
48 static int $opt$testIfEq1(int a) { in $opt$testIfEq1() argument
49 if (a + 1 == 43) { in $opt$testIfEq1()
56 static int $opt$testIfEq2(int a) { in $opt$testIfEq2() argument
57 if (a + 1 == 41) { in $opt$testIfEq2()
64 static int $opt$testWhileLoop(int a) { in $opt$testWhileLoop() argument
65 while (a++ != 44) {} in $opt$testWhileLoop()
66 return a; in $opt$testWhileLoop()
69 static int $opt$testDoWhileLoop(int a) { in $opt$testDoWhileLoop() argument
71 } while (a++ != 44); in $opt$testDoWhileLoop()
72 return a; in $opt$testDoWhileLoop()
75 static int $opt$testForLoop(int a) { in $opt$testForLoop() argument
76 for (; a != 44; a++) {} in $opt$testForLoop()
77 return a; in $opt$testForLoop()
80 static int $opt$testIfWithLocal(int a) { in $opt$testIfWithLocal() argument
81 if (a == 5) { in $opt$testIfWithLocal()
83 a += f; in $opt$testIfWithLocal()
87 return a; in $opt$testIfWithLocal()