Lines Matching refs:a

41     long a = 0;  in $opt$TestLostCopy()  local
44 b = a; in $opt$TestLostCopy()
45 a++; in $opt$TestLostCopy()
46 } while (a != 5); in $opt$TestLostCopy()
51 long a = 0; in $opt$TestTwoLive() local
54 a++; in $opt$TestTwoLive()
56 } while (a != 5); in $opt$TestTwoLive()
57 return a - b; in $opt$TestTwoLive()
61 long a = 0; in $opt$TestThreeLive() local
65 a++; in $opt$TestThreeLive()
68 } while (a != 5); in $opt$TestThreeLive()
69 return a - b - c; in $opt$TestThreeLive()
73 long a = 0; in $opt$TestFourLive() local
78 a++; in $opt$TestFourLive()
82 } while (a != 5); in $opt$TestFourLive()
87 long a = 0; in $opt$TestMultipleLive() local
95 a++; in $opt$TestMultipleLive()
102 } while (a != 5); in $opt$TestMultipleLive()
107 long a = 0; in $opt$TestWithBreakAndContinue() local
110 a++; in $opt$TestWithBreakAndContinue()
111 if (a == 2) { in $opt$TestWithBreakAndContinue()
115 if (a == 5) { in $opt$TestWithBreakAndContinue()
119 return a - b; in $opt$TestWithBreakAndContinue()
122 public static long $opt$testSpillInIf(long a, long b, long c) { in $opt$testSpillInIf() argument
125 if (a == 5) { in $opt$testSpillInIf()
132 return a - b - c - d - e; in $opt$testSpillInIf()
135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1() argument
136 long h = a - b; in $opt$TestAgressiveLive1()
139 long k = 42 + g - a; in $opt$TestAgressiveLive1()
153 return a - b - c - d - e - f - g - h - i - j - k; in $opt$TestAgressiveLive1()
156 …public static long $opt$TestAgressiveLive2(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive2() argument
157 long h = a - b; in $opt$TestAgressiveLive2()
160 long k = 42 + g - a; in $opt$TestAgressiveLive2()
164 return a - b - c - d - e - f - g - h - i - j - k; in $opt$TestAgressiveLive2()