/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
OrderedDataOutputStream.java | 51 public OrderedDataOutputStream writeRational(Rational rational) throws IOException { 52 writeInt((int) rational.getNumerator()); 53 writeInt((int) rational.getDenominator());
|
/packages/apps/Camera2/src/com/android/camera/exif/ |
OrderedDataOutputStream.java | 51 public OrderedDataOutputStream writeRational(Rational rational) throws IOException { 52 writeInt((int) rational.getNumerator()); 53 writeInt((int) rational.getDenominator());
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
OrderedDataOutputStream.java | 51 public OrderedDataOutputStream writeRational(Rational rational) throws IOException { 52 writeInt((int) rational.getNumerator()); 53 writeInt((int) rational.getDenominator());
|
/packages/apps/Messaging/src/com/android/messaging/util/exif/ |
OrderedDataOutputStream.java | 51 public OrderedDataOutputStream writeRational(Rational rational) throws IOException { 52 writeInt((int) rational.getNumerator()); 53 writeInt((int) rational.getDenominator());
|
/packages/apps/Camera2/src/com/android/camera/util/ |
ExifUtil.java | 24 import com.android.camera.exif.Rational; 87 addExifTag(ExifInterface.TAG_GPS_ALTITUDE, rational(altitude, ALTITUDE_PRECISION)); 144 addExifTag(ExifInterface.TAG_SHUTTER_SPEED_VALUE, rational(shutterSpeedValue, SHUTTER_SPEED_VALUE_PRECISION)); 152 addExifTag(ExifInterface.TAG_F_NUMBER, rational(fNumber, F_NUMBER_PRECISION)); 157 addExifTag(ExifInterface.TAG_APERTURE_VALUE, rational(apertureValue, APERTURE_VALUE_PRECISION)); 162 addExifTag(ExifInterface.TAG_FOCAL_LENGTH, rational(focalLength, FOCAL_LENGTH_PRECISION)); 188 private Rational ratio(Long numerator, Long denominator) { 190 return new Rational(numerator, denominator); 194 private Rational rational(Float value, Long precision) [all...] |
/prebuilts/go/darwin-x86/src/math/big/ |
example_rat_test.go | 37 // first 15 terms in the sequence of rational convergents for
|
hilbert_test.go | 5 // A little test program and benchmark for rational arithmetics.
|
ratconv_test.go | 344 // isFinite reports whether f represents a finite rational value. 368 // Skip this check if the input uses "a/b" rational syntax. 424 // Skip this check if the input uses "a/b" rational syntax.
|
/prebuilts/go/linux-x86/src/math/big/ |
example_rat_test.go | 37 // first 15 terms in the sequence of rational convergents for
|
hilbert_test.go | 5 // A little test program and benchmark for rational arithmetics.
|
ratconv_test.go | 344 // isFinite reports whether f represents a finite rational value. 368 // Skip this check if the input uses "a/b" rational syntax. 424 // Skip this check if the input uses "a/b" rational syntax.
|
/frameworks/av/camera/ndk/ |
NdkCaptureRequest.cpp | 130 SET_ENTRY(rational,ACameraMetadata_rational)
|
/device/generic/goldfish/camera/ |
Exif.cpp | 99 ExifRational rational = { local 104 exif_set_rational(&entry->data[i * rationalSize], byteOrder, rational);
|
/prebuilts/go/darwin-x86/src/math/ |
atan.go | 27 // The approximant uses a rational function of degree 4/5 of the form
|
tanh.go | 27 // A rational function is used for |x| < 0.625. The form
|
tan.go | 29 // Range reduction is modulo pi/4. A rational function
|
erf.go | 68 // That is, we use rational approximation to approximate 103 // We use rational approximation to approximate
|
/prebuilts/go/linux-x86/src/math/ |
atan.go | 27 // The approximant uses a rational function of degree 4/5 of the form
|
tanh.go | 27 // A rational function is used for |x| < 0.625. The form
|
tan.go | 29 // Range reduction is modulo pi/4. A rational function
|
erf.go | 68 // That is, we use rational approximation to approximate 103 // We use rational approximation to approximate
|
/prebuilts/go/darwin-x86/test/chan/ |
powser1.go | 10 // A power series is a channel, along which flow rational 201 // Integer gcd; needed for rational arithmetic 209 // Make a rational from two ints and from one int
|
powser2.go | 14 // A power series is a channel, along which flow rational 211 // Integer gcd; needed for rational arithmetic 219 // Make a rational from two ints and from one int
|
/prebuilts/go/linux-x86/test/chan/ |
powser1.go | 10 // A power series is a channel, along which flow rational 201 // Integer gcd; needed for rational arithmetic 209 // Make a rational from two ints and from one int
|
powser2.go | 14 // A power series is a channel, along which flow rational 211 // Integer gcd; needed for rational arithmetic 219 // Make a rational from two ints and from one int
|