Searched defs:remainder (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp703 ssize_t remainder = 512 - partial; local
704 memset(buf + nRead, 0, remainder);
705 nRead += remainder;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiMonitor.java692 * @param remainder the rest of the string following the
695 void handleEvent(int event, String remainder) { argument
698 handleNetworkStateChange(NetworkInfo.DetailedState.DISCONNECTED, remainder);
702 handleNetworkStateChange(NetworkInfo.DetailedState.CONNECTED, remainder);
/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...]

Completed in 349 milliseconds