Searched refs:rounded (Results 1 - 3 of 3) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcompress.h33 s64 offs, s64 to_write, s64 rounded,
H A Dcompress.c1062 * returns the size actually written (rounded to a full cluster)
1076 s32 rounded; local
1141 rounded = ((compsz - 1) | (clsz - 1)) + 1;
1142 memset(&outbuf[compsz], 0, rounded - compsz);
1143 written = write_clusters(vol, rl, offs, rounded, outbuf);
1144 if (written != rounded) {
1621 * returns the size actually written (rounded to a full cluster)
1630 s32 rounded; local
1647 rounded = ((count - 1) | (clsz - 1)) + 1;
1648 if (rounded > coun
1670 ntfs_compressed_pwrite(ntfs_attr *na, runlist_element *wrl, s64 wpos, s64 offs, s64 to_write, s64 rounded, const void *b, int compressed_part, VCN *update_from) argument
[all...]
/haiku/src/apps/icon-o-matic/generic/support/
H A Dsupport.cpp101 int32 rounded = n >= 0.0 ? (int32)fabs(floorf(n)) : (int32)fabs(ceilf(n)); local
107 string << rounded; local
109 if ((float)rounded != n) {
111 n = n - rounded;
112 rounded = (int32)(n * pow(10, maxDigits));
114 sprintf(tmp, "%0*" B_PRId32, (int)maxDigits, rounded);

Completed in 90 milliseconds