HomeSort by relevance Sort by last modified time
    Searched full:ratio (Results 901 - 925 of 3086) sorted by null

<<31323334353637383940>>

  /prebuilts/vndk/v27/arm64/arch-arm-armv7-a-neon/shared/vndk-core/
libstagefright_xmlparser.so 
  /system/extras/memory_replay/
Pointers.cpp 31 // Create a mmap that contains a 4:1 ratio of allocations to entries.
  /system/media/audio_utils/include/audio_utils/spdif/
SPDIFEncoder.h 58 * Get ratio of the encoded data burst sample rate to the encoded rate.
  /system/update_engine/payload_consumer/
xz_extent_writer.cc 26 // xz uses a variable dictionary size which impacts on the compression ratio
  /system/vold/binder/android/os/
IVold.aidl 37 void partition(@utf8InCpp String diskId, int partitionType, int ratio);
  /system/vold/model/
Disk.h 80 status_t partitionMixed(int8_t ratio);
  /cts/tests/framework/base/activitymanager/src/android/server/am/
ActivityManagerPinnedStackTests.java 349 // Wait for animation complete since we are comparing aspect ratio
353 // Assert that we have entered PIP and that the aspect ratio is correct
376 // Wait for animation complete since we are comparing aspect ratio
399 // Assert that we could not create a pinned stack with an extreme aspect ratio
422 // Try to resize the a normal pinned stack to an extreme aspect ratio and ensure that
423 // fails (the aspect ratio remains the same)
432 // Wait for animation complete since we are comparing aspect ratio
515 // Launch the PIP activity on pause, and set the aspect ratio
523 // Wait for animation complete since we are comparing aspect ratio
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
DetermineFovActivity.java 195 // Determine if the canvas aspect ratio is larger than that of the photo.
199 // If the aspect ratio is smaller, set the destination rectangle to pad
  /cts/tests/tests/transition/src/android/transition/cts/
ArcMotionTest.java 112 float ratio = (float) Math.tan(Math.PI / 8); local
113 float ex = 50 + (50 * ratio);
  /developers/build/prebuilts/gradle/PictureInPicture/kotlinApp/app/src/main/java/com/example/android/pictureinpicture/
MainActivity.kt 161 // This is how you can update action items (or aspect ratio) for Picture-in-Picture mode.
233 // Calculate the aspect ratio of the PiP screen.
  /developers/samples/android/media/PictureInPicture/kotlinApp/app/src/main/java/com/example/android/pictureinpicture/
MainActivity.kt 161 // This is how you can update action items (or aspect ratio) for Picture-in-Picture mode.
233 // Calculate the aspect ratio of the PiP screen.
  /development/apps/OBJViewer/com/android/objviewer/
OBJViewer.java 196 float ratio = (float)w/h; local
197 glView.setAspectRatio(ratio);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
complexobject.c 106 const double ratio = b.imag / b.real; local
107 const double denom = b.real + b.imag * ratio;
108 r.real = (a.real + a.imag * ratio) / denom;
109 r.imag = (a.imag - a.real * ratio) / denom;
114 const double ratio = b.real / b.imag; local
115 const double denom = b.real * ratio + b.imag;
117 r.real = (a.real * ratio + a.imag) / denom;
118 r.imag = (a.imag * ratio - a.real) / denom;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_binascii.py 95 ratio = len(line) // len(noise)
98 if len(line) // len(noise) > ratio:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
complexobject.c 106 const double ratio = b.imag / b.real; local
107 const double denom = b.real + b.imag * ratio;
108 r.real = (a.real + a.imag * ratio) / denom;
109 r.imag = (a.imag - a.real * ratio) / denom;
114 const double ratio = b.real / b.imag; local
115 const double denom = b.real * ratio + b.imag;
117 r.real = (a.real * ratio + a.imag) / denom;
118 r.imag = (a.imag * ratio - a.real) / denom;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
LegendreGaussIntegrator.java 194 double ratio = FastMath.min(4, FastMath.pow(delta / limit, 0.5 / abscissas.length)); local
195 n = FastMath.max((int) (ratio * n), n + 1);