/external/webkit/Source/WebCore/platform/graphics/filters/ |
DistantLightSource.cpp | 42 float azimuth = deg2rad(m_azimuth); local 44 paintingData.lightVector.setX(cosf(azimuth) * cosf(elevation)); 45 paintingData.lightVector.setY(sinf(azimuth) * cosf(elevation)); 54 bool DistantLightSource::setAzimuth(float azimuth) 56 if (m_azimuth == azimuth) 58 m_azimuth = azimuth; 73 ts << "[azimuth=\"" << azimuth() << "\"]";
|
DistantLightSource.h | 33 static PassRefPtr<DistantLightSource> create(float azimuth, float elevation) 35 return adoptRef(new DistantLightSource(azimuth, elevation)); 38 float azimuth() const { return m_azimuth; } function in class:WebCore::DistantLightSource 49 DistantLightSource(float azimuth, float elevation) 51 , m_azimuth(azimuth)
|
/external/icu4c/i18n/ |
astro.h | 207 * The <i>Azimuth</i> is the geographic direction of the object from the 208 * observer's position, with 0 representing north. The azimuth increases 225 * @param azim The azimuth, measured in radians clockwise from north. 229 : altitude(alt), azimuth(azim) { } 234 * @param azim The azimuth, measured in radians clockwise from north. 239 azimuth = azim; 259 double azimuth; member in class:CalendarAstronomer::Horizon
|
astro.cpp | 514 double azimuth = atan2(-cosD*cosL*sinH, sinD - sinL * ::sin(altitude)); local 516 result.set(azimuth, altitude); [all...] |
/development/ndk/platforms/android-9/include/android/ |
sensor.h | 100 float azimuth; member in struct:ASensorVector::__anon1289::__anon1291
|
/external/chromium/webkit/glue/ |
webkitclient_impl.cc | 308 // Extract the azimuth and elevation from the resource name. 309 int azimuth = 0; local 312 sscanf(name, "IRC_Composite_C_R0195_T%3d_P%3d", &azimuth, &elevation); 327 // 0 <= azimuth < 360 in increments of 15 degrees. 328 int azimuth_index = azimuth / kAngleSpacing;
|
/external/webkit/Source/WebCore/platform/audio/ |
HRTFPanner.cpp | 89 int HRTFPanner::calculateDesiredAzimuthIndexAndBlend(double azimuth, double& azimuthBlend) 91 // Convert the azimuth angle from the range -180 -> +180 into the range 0 -> 360. 92 // The azimuth index may then be calculated from this positive value. 93 if (azimuth < 0) 94 azimuth += 360.0; 102 // Calculate the azimuth index and the blend (0 -> 1) for interpolation. 103 double desiredAzimuthIndexFloat = azimuth / angleBetweenAzimuths; 107 // We don't immediately start using this azimuth index, but instead approach this index from the last index we rendered at. 138 // IRCAM HRTF azimuths values from the loaded database is reversed from the panner's notion of azimuth. 139 double azimuth = -desiredAzimuth local [all...] |
/external/webkit/Source/WebCore/webaudio/ |
AudioPannerNode.cpp | 106 double azimuth; local 108 getAzimuthElevation(&azimuth, &elevation); 109 m_panner->pan(azimuth, elevation, source, destination, framesToProcess); 163 // FIXME: we should cache azimuth and elevation (if possible), so we only re-calculate if a change has been made. 165 double azimuth = 0.0; local 196 azimuth = 180.0 * acos(projectedSource.dot(listenerRight)) / piDouble; 197 fixNANs(azimuth); // avoid illegal values 202 azimuth = 360.0 - azimuth; 204 // Make azimuth relative to "front" and not "right" listener vecto [all...] |
/frameworks/base/native/include/android/ |
sensor.h | 100 float azimuth; member in struct:ASensorVector::__anon15262::__anon15264
|
/prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/android/ |
sensor.h | 100 float azimuth; member in struct:ASensorVector::__anon24035::__anon24037
|
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/android/ |
sensor.h | 100 float azimuth; member in struct:ASensorVector::__anon25010::__anon25012
|
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/android/ |
sensor.h | 100 float azimuth; member in struct:ASensorVector::__anon25062::__anon25064
|
/hardware/libhardware/include/hardware/ |
sensors.h | 129 * azimuth: angle between the magnetic north direction and the Y axis, around 130 * the Z axis (0<=azimuth<360). 321 float azimuth; member in struct:__anon16041::__anon16042::__anon16044
|
gps.h | 271 /** Azimuth of SV in degrees. */ 272 float azimuth; member in struct:__anon16014
|
/external/qemu/android/ |
hw-sensors.c | 91 float azimuth; member in struct:__anon9245 150 * orientation:<azimuth>:<pitch>:<roll> 314 sensor->u.orientation.azimuth, 523 qemu_put_float(f, s->u.orientation.azimuth); 574 s->u.orientation.azimuth = qemu_get_float(f);
|
/hardware/qcom/gps/loc_api/libloc_api-rpc/inc-1240/ |
loc_api_common.h | 146 float azimuth; member in struct:rpc_loc_sv_info_s_type [all...] |
/hardware/qcom/gps/loc_api/libloc_api-rpc/inc-3200/ |
loc_api_common.h | 140 float azimuth; member in struct:rpc_loc_sv_info_s_type [all...] |