Home
last modified time | relevance | path

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

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DFloat16Utils.java305 short quotient = (short) (positiveValue / MIN_VALUE); in convertDoubleToFloat16() local
306 return (isNegative) ? (short) (0x8000 | quotient) : quotient; in convertDoubleToFloat16()
DCoreMathVerifier.java48 public int quotient; field in CoreMathVerifier.RemquoResult
3055 if ((args.outQuotient & 0x07) != (expected.quotient & 0x07)) {
3058 Integer.toString(expected.quotient);
/cts/tests/tests/renderscript/libcoremathtestcpp/
DCoreMathTestJni.cpp360 int quotient = 0; in Java_android_renderscript_cts_CoreMathVerifier_remquo() local
361 result.SetFloat("remainder", remquof(numerator, denominator, &quotient)); in Java_android_renderscript_cts_CoreMathVerifier_remquo()
362 result.SetInt("quotient", quotient); in Java_android_renderscript_cts_CoreMathVerifier_remquo()