Searched refs:b (Results 1 – 4 of 4) sorted by relevance
3 int add(int a, int b) { return a + b; } in add() argument
3 int add(int a, int b);
176 private static double calcDistance(final Point a, final Point b) { in calcDistance() argument177 return Math.sqrt((b.x - a.x) * (b.x - a.x) + (b.y - a.y) * (b.y - a.y)); in calcDistance()
57 * in JDK21 that result in r8 compilation failures (b/281536562). While the r8 issue has been fixed