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

/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp1192 int wholePart = degreex10000 / 10000; local
1193 if (wholePart == 0) {
1194 snprintf(str, 5, "%c%.2d.", sign, wholePart);
1196 snprintf(str, 5, "%+.2d.", wholePart);
1200 int fractionalPart = degreex10000 - (wholePart * 10000);
1217 int wholePart = degreex10000 / 10000; local
1218 if (wholePart == 0) {
1219 snprintf(str, 6, "%c%.3d.", sign, wholePart);
1221 snprintf(str, 6, "%+.3d.", wholePart);
1225 int fractionalPart = degreex10000 - (wholePart * 1000
[all...]

Completed in 45 milliseconds