Searched refs:remainder (Results 1 - 10 of 10) sorted by relevance

/frameworks/native/libs/utils/
H A DLinearTransform.cpp87 // Divide again. Keep the remainder around in order to round properly.
237 const T remainder = a % b; local
238 if (remainder == 0) {
243 // by swapping remainder and b, we are guaranteeing that a is
246 b = remainder;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiMonitor.java511 * @param remainder the rest of the string following the
514 void handleEvent(int event, String remainder) { argument
517 handleNetworkStateChange(NetworkInfo.DetailedState.DISCONNECTED, remainder);
521 handleNetworkStateChange(NetworkInfo.DetailedState.CONNECTED, remainder);
/frameworks/rs/scriptc/
H A Drs_cl.rsh443 * Return the remainder from x / y
603 extern float __attribute__((overloadable)) remainder(float x, float y);
604 FN_FUNC_FN_FN(remainder)
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_cl.rsh443 * Return the remainder from x / y
603 extern float __attribute__((overloadable)) remainder(float x, float y);
604 FN_FUNC_FN_FN(remainder)
/frameworks/base/core/java/com/android/internal/os/
H A DProcessStats.java748 long remainder = thousands - (hundreds*10);
749 if (remainder != 0) {
751 pw.print(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/base/libs/androidfw/
H A DBackupHelpers.cpp703 ssize_t remainder = 512 - partial; local
704 memset(buf + nRead, 0, remainder);
705 nRead += remainder;
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdRuntimeMath.cpp541 float remainder(float x, float y) { function
/frameworks/av/libvideoeditor/vss/mcs/src/
H A DM4MCS_API.c3752 uint32_t remainder = pC->EncodingWidth % 16; local
3753 if (remainder != 0) {
3754 if (remainder >= 8) {
3757 pC->EncodingWidth + (16-remainder);
3761 pC->EncodingWidth - remainder;
3766 remainder = pC->EncodingHeight % 16;
3767 if (remainder != 0) {
3768 if (remainder >= 8) {
3771 pC->EncodingHeight + (16-remainder);
3775 pC->EncodingHeight - remainder;
[all...]
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_cl.c524 extern float __attribute__((overloadable)) remainder(float, float);
525 FN_FUNC_FN_FN(remainder)

Completed in 3259 milliseconds