[go: nahoru, domu]

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

/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp1309 int wholePart = degreex10000 / 10000; local
1310 if (wholePart == 0) {
1311 snprintf(str, 5, "%c%.2d.", sign, wholePart);
1313 snprintf(str, 5, "%+.2d.", wholePart);
1317 int fractionalPart = degreex10000 - (wholePart * 10000);
1334 int wholePart = degreex10000 / 10000; local
1335 if (wholePart == 0) {
1336 snprintf(str, 6, "%c%.3d.", sign, wholePart);
1338 snprintf(str, 6, "%+.3d.", wholePart);
1342 int fractionalPart = degreex10000 - (wholePart * 1000
[all...]

Completed in 51 milliseconds