Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dint128.cc103 uint128 quotient = 0; in DivModImpl() local
115 quotient |= position; in DivModImpl()
121 *quotient_ret = quotient; in DivModImpl()
126 uint128 quotient = 0; in operator /=() local
128 DivModImpl(*this, divisor, &quotient, &remainder); in operator /=()
129 *this = quotient; in operator /=()
133 uint128 quotient = 0; in operator %=() local
135 DivModImpl(*this, divisor, &quotient, &remainder); in operator %=()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/binary/
Darith.js235 var quotient = new jspb.arith.UInt64(0, 0);
251 quotient = quotient.add(unit);
259 return [quotient, remainder];
273 var quotient = divResult[0], remainder = divResult[1];
275 num = quotient;
Darith_test.js275 var quotient = result[0];
277 assertEquals(quotient.lo, testData[i][3]);
278 assertEquals(quotient.hi, testData[i][4]);
/frameworks/rs/script_api/
Drs_math.spec1037 Returns the remainder of (numerator / denominator), where the quotient is rounded towards zero.
2887 Returns the remainder of (numerator / denominator), where the quotient is rounded towards
2913 summary: Remainder and quotient of a division
2915 Returns the quotient and the remainder of (numerator / denominator).
2917 Only the sign and lowest three bits of the quotient are guaranteed to be accurate.
2920 quotient gives the quadrant and the remainder the distance within the quadrant.
/frameworks/rs/script_api/include/
Drs_math.rsh1871 * Returns the remainder of (numerator / denominator), where the quotient is rounded towards zero.
5670 * Returns the remainder of (numerator / denominator), where the quotient is rounded towards
5710 * remquo: Remainder and quotient of a division
5712 * Returns the quotient and the remainder of (numerator / denominator).
5714 * Only the sign and lowest three bits of the quotient are guaranteed to be accurate.
5717 * quotient gives the quadrant and the remainder the distance within the quadrant.
5727 * quotient: *quotient will be set to the integer quotient.
5732 remquo(float numerator, float denominator, int* quotient);
5735 remquo(float2 numerator, float2 denominator, int2* quotient);
5738 remquo(float3 numerator, float3 denominator, int3* quotient);
[all …]