Home
last modified time | relevance | path

Searched refs:isNegative (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DFloat16Utils.java110 private static double constructDouble(long mantissa, long exponent, boolean isNegative) { in constructDouble() argument
113 if (isNegative) bits |= DOUBLE_SIGN_MASK; in constructDouble()
131 boolean isNegative = (valueBits & DOUBLE_SIGN_MASK) != 0; in roundToFloat16()
216 if (isNegative) { in roundToFloat16()
303 boolean isNegative = (value < 0.); in convertDoubleToFloat16()
306 return (isNegative) ? (short) (0x8000 | quotient) : quotient; in convertDoubleToFloat16()
316 return (isNegative) ? (short) (0x8000 | halfValue) : halfValue; in convertDoubleToFloat16()
/cts/common/device-side/bedstead/nene/src/main/java/com/android/bedstead/nene/utils/
DPoll.java200 while (!Duration.between(Instant.now(), endTime).isNegative()) { in await()
/cts/common/device-side/bedstead/harrier/src/main/java/com/android/bedstead/harrier/
DPolicy.java315 private static boolean isNegative(int[] policyFlags, Set<Integer> annotationFlags) {
346 if (isNegative(enterprisePolicy.dpc(), annotation.getValue())) {