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

/system/bt/audio_a2dp_hw/test/
H A Daudio_a2dp_hw_test.cc133 const size_t remainder = expected_buffer_size % divisor; local
134 if (remainder != 0) {
135 expected_buffer_size += divisor - remainder;
/system/bt/hci/src/
H A Dhci_inject.cc187 size_t remainder = client->buffer_size - frame_len; local
188 memmove(buffer, buffer + frame_len, remainder);
/system/chre/host/msm/daemon/
H A Dchre_daemon.cc201 // Get the seconds part first, then convert the remainder to prevent
211 // Round the remainder portion to the nearest nanosecond
212 uint64_t remainder = (qTimerCount % qTimerFreq); local
214 (remainder * kOneSecondInNanoseconds + qTimerFreq / 2) / qTimerFreq;
/system/core/libcutils/
H A Dfs_config.cpp325 ssize_t len, remainder = host_len - sizeof(header); local
326 if (remainder <= 0) {
330 prefix = static_cast<char*>(calloc(1, remainder));
335 if (TEMP_FAILURE_RETRY(read(fd, prefix, remainder)) != remainder) {
340 len = strnlen(prefix, remainder);
341 if (len >= remainder) { // missing a terminating null
/system/tools/aidl/
H A Dtype_namespace.h345 std::string remainder = name.substr(opening_brace + 1, local
347 std::vector<std::string> args = Split(remainder, ",");
/system/vold/
H A DEncryptInplace.cpp498 off64_t numblocks, i, remainder; local
517 * and the remainder.
520 remainder = size % CRYPT_SECTORS_PER_BUFSIZE;
587 for (i=0; i<remainder; i++) {
/system/bt/audio_a2dp_hw/src/
H A Daudio_a2dp_hw.cc1021 const size_t remainder = buffer_sz % divisor; local
1022 if (remainder != 0) {
1023 buffer_sz += divisor - remainder;
/system/core/libpixelflinger/
H A Dscanline.cpp1914 uint32_t remainder = xc & ((1<<SPAN_BITS)-1); local
1949 if (remainder) {
1951 span = remainder;
/system/update_engine/
H A Domaha_request_action.cc910 int remainder = output_object->install_date_days % 7; local
912 output_object->install_date_days - remainder;

Completed in 170 milliseconds