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

/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
H A DOMXExif.cpp800 status_t OMXCameraAdapter::convertGPSCoord(double coord, argument
810 if ( coord == 0 ) {
817 deg = (int) floor(fabs(coord));
818 tmp = ( fabs(coord) - floor(fabs(coord)) ) * GPS_MIN_DIV;
/hardware/qcom/camera/QCamera2/HAL3/
H A DQCamera3Channel.cpp1337 * @coord : [output] ptr to struct to store coordinate
1343 int parseGPSCoordinate(const char *coord_str, rat_t* coord) argument
1345 if(coord == NULL) {
1346 ALOGE("%s: error, invalid argument coord == NULL", __func__);
1356 getRational(&coord[0], (int)degF, 1);
1357 getRational(&coord[1], (int)minF, 1);
1358 getRational(&coord[2], (int)(secF * 10000), 10000);
/hardware/qcom/camera/QCamera2/HAL/
H A DQCameraParameters.cpp5195 * @coord : [output] ptr to struct to store coordinate
5201 int QCameraParameters::parseGPSCoordinate(const char *coord_str, rat_t* coord) argument
5203 if(coord == NULL) {
5204 ALOGE("%s: error, invalid argument coord == NULL", __func__);
5214 getRational(&coord[0], (int)degF, 1);
5215 getRational(&coord[1], (int)minF, 1);
5216 getRational(&coord[2], (int)(secF * 10000), 10000);

Completed in 1084 milliseconds