HomeSort by relevance Sort by last modified time
    Searched defs:round_up (Results 1 - 2 of 2) sorted by null

  /frameworks/base/libs/utils/
BackupData.cpp 42 const static int ROUND_UP[4] = { 0, 3, 2, 1 };
45 round_up(size_t n) function in namespace:android
47 return n + ROUND_UP[n % 4];
53 return ROUND_UP[n % 4];
BackupHelpers.cpp 81 const static int ROUND_UP[4] = { 0, 3, 2, 1 };
84 round_up(int n) function in namespace:android
86 return n + ROUND_UP[n % 4];
119 int nameBufSize = round_up(file.nameLen);
157 bytesWritten += sizeof(FileState) + round_up(name.length());
191 int paddingLen = ROUND_UP[nameLen % 4];
    [all...]

Completed in 614 milliseconds