Searched refs:MAX (Results 1 – 2 of 2) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | TimeUnit.java | 55 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); } in toNanos() 66 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); } in toNanos() 67 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); } in toMicros() 77 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); } in toNanos() 78 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); } in toMicros() 79 public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); } in toMillis() 88 public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); } in toNanos() 89 public long toMicros(long d) { return x(d, C4/C1, MAX/(C4/C1)); } in toMicros() 90 public long toMillis(long d) { return x(d, C4/C2, MAX/(C4/C2)); } in toMillis() 91 public long toSeconds(long d) { return x(d, C4/C3, MAX/(C4/C3)); } in toSeconds() [all …]
|
/libcore/luni/src/main/java/org/apache/xml/serializer/ |
D | AttributesImplSerializer.java | 57 private static final int MAX = 12; field in AttributesImplSerializer 63 private static final int MAXMinus1 = MAX - 1; 75 if (super.getLength() < MAX) in getIndex() 121 switchOverToHash(MAX); in addAttribute() 175 if (MAX <= len) in clear() 201 if (MAX <= numAtts) in setAttributes() 217 if (super.getLength() < MAX) in getIndex()
|