Lines Matching defs:in

3  * Redistribution and use in source and binary forms, with or without
8 * * Redistributions in binary form must reproduce the above
10 * disclaimer in the documentation and/or other materials provided
38 void convertGnssLocation(Location& in, GnssLocation& out)
41 if (in.flags & LOCATION_HAS_LAT_LONG_BIT)
43 if (in.flags & LOCATION_HAS_ALTITUDE_BIT)
45 if (in.flags & LOCATION_HAS_SPEED_BIT)
47 if (in.flags & LOCATION_HAS_BEARING_BIT)
49 if (in.flags & LOCATION_HAS_ACCURACY_BIT)
51 if (in.flags & LOCATION_HAS_VERTICAL_ACCURACY_BIT)
53 if (in.flags & LOCATION_HAS_SPEED_ACCURACY_BIT)
55 if (in.flags & LOCATION_HAS_BEARING_ACCURACY_BIT)
57 out.latitudeDegrees = in.latitude;
58 out.longitudeDegrees = in.longitude;
59 out.altitudeMeters = in.altitude;
60 out.speedMetersPerSec = in.speed;
61 out.bearingDegrees = in.bearing;
62 out.horizontalAccuracyMeters = in.accuracy;
63 out.verticalAccuracyMeters = in.verticalAccuracy;
64 out.speedAccuracyMetersPerSecond = in.speedAccuracy;
65 out.bearingAccuracyDegrees = in.bearingAccuracy;
66 out.timestamp = static_cast<GnssUtcTime>(in.timestamp);
69 void convertGnssConstellationType(GnssSvType& in, GnssConstellationType& out)
71 switch(in) {
97 void convertGnssEphemerisType(GnssEphemerisType& in, GnssDebug::SatelliteEphemerisType& out)
99 switch(in) {
113 void convertGnssEphemerisSource(GnssEphemerisSource& in, GnssDebug::SatelliteEphemerisSource& out)
115 switch(in) {
133 void convertGnssEphemerisHealth(GnssEphemerisHealth& in, GnssDebug::SatelliteEphemerisHealth& out)
135 switch(in) {