Searched refs:remainder (Results 1 - 15 of 15) sorted by path

/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DJsonWebKey.cpp113 int remainder = encodedText.length() % 4; local
115 if (remainder > 0) {
116 for (int i = 0; i < 4 - remainder; ++i) {
/frameworks/base/core/java/android/content/res/
H A DResources.java2105 final String remainder;
2109 remainder = "";
2112 remainder = languageTag.substring(separator);
2115 return Locale.adjustLanguageCode(language) + remainder;
/frameworks/base/core/java/android/net/
H A DNetworkUtils.java322 int remainder = prefixLength % 8;
323 byte mask = (byte)(0xFF << (8 - remainder));
/frameworks/base/core/java/com/android/internal/os/
H A DProcessCpuTracker.java777 long remainder = thousands - (hundreds*10);
778 if (remainder != 0) {
780 pw.print(remainder);
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp704 ssize_t remainder = 512 - partial; local
705 memset(buf + nRead, 0, remainder);
706 nRead += remainder;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java2774 long remainder = deltaBytesTransferred;
2775 long mb = remainder / (1024 * 1024);
2776 remainder %= 1024 * 1024;
2777 long kb = remainder / 1024;
2778 remainder %= 1024;
2779 long b = remainder;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DMesh.cpp35 size_t remainder = (stride * vertexCount) / vertexCount; local
37 // either vertexSize or texCoordSize, it must have overflowed. remainder
39 if ((stride < vertexSize) || (remainder != stride)) {
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DMonthView.java404 int remainder = (offset + mNumCells) % mNumDays;
405 return (dividend + (remainder > 0 ? 1 : 0));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiMonitor.java993 * @param remainder the rest of the string following the
996 void handleEvent(int event, String remainder) { argument
998 logDbg("handleEvent " + Integer.toString(event) + " " + remainder);
1002 handleNetworkStateChange(NetworkInfo.DetailedState.DISCONNECTED, remainder);
1006 handleNetworkStateChange(NetworkInfo.DetailedState.CONNECTED, remainder);
1019 logDbg("handleEvent unknown: " + Integer.toString(event) + " " + remainder);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java709 final int remainder = (value.length() % 3);
710 if (value.length() < 2 || (remainder != 1 && remainder != 0)) {
/frameworks/rs/api/
H A Drs_math.spec702 Returns the remainder of (numerator / denominator), where the quotient is rounded towards zero.
704 The function @remainder() is similar but rounds toward the closest interger.
706 while <code>@remainder(-3.8f, 2.f)</code> returns 0.2f (-3.8f - -2.f * 2.f).
1888 function: remainder
1898 Returns the remainder of (numerator / denominator), where the quotient is rounded towards
1903 while <code>remainder(-3.8f, 2.f)</code> returns 0.2f (-3.8f - -2.f * 2.f).
1916 Returns the quotient and the remainder of (numerator / denominator).
1921 quotient gives the quadrant and the remainder the distance within the quadrant.
/frameworks/rs/cpu_ref/
H A DrsCpuRuntimeMathFuncs.cpp76 IMPORT_F32_FN_F32_F32(remainder)
/frameworks/rs/driver/runtime/
H A Drs_cl.c540 extern float __attribute__((overloadable)) remainder(float, float);
541 FN_FUNC_FN_FN(remainder)
/frameworks/rs/scriptc/
H A Drs_math.rsh1206 * Returns the remainder of (numerator / denominator), where the quotient is rounded towards zero.
1208 * The function remainder() is similar but rounds toward the closest interger.
1210 * while remainder(-3.8f, 2.f) returns 0.2f (-3.8f - -2.f * 2.f).
3685 * remainder: Remainder of a division
3687 * Returns the remainder of (numerator / denominator), where the quotient is rounded towards
3692 * while remainder(-3.8f, 2.f) returns 0.2f (-3.8f - -2.f * 2.f).
3695 remainder(float numerator, float denominator);
3698 remainder(float2 numerator, float2 denominator);
3701 remainder(float3 numerator, float3 denominator);
3704 remainder(float
[all...]

Completed in 500 milliseconds