/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/dvb/ |
video.h | 149 video_format_t video_format; /* current aspect ratio of stream*/ 202 /* 11-10 Aspect ratio (0=4:3, 3=16:9) */
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_binascii.py | 95 ratio = len(line) // len(noise) 98 if len(line) // len(noise) > ratio:
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_binascii.py | 95 ratio = len(line) // len(noise) 98 if len(line) // len(noise) > ratio:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_binascii.py | 95 ratio = len(line) // len(noise) 98 if len(line) // len(noise) > ratio:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/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/Lib/ |
difflib.py | 79 .ratio() returns a float in [0, 1], measuring the "similarity" of the
80 sequences. As a rule of thumb, a .ratio() value over 0.6 means the
83 >>> print round(s.ratio(), 3)
144 ratio()
148 Return an upper bound on .ratio() relatively quickly.
151 Return an upper bound on ratio() very quickly.
228 >>> s.ratio()
241 >>> s.ratio()
244 >>> s.ratio()
267 >>> s.ratio()
636 def ratio(self): member in class:SequenceMatcher [all...] |
/external/lz4/tests/ |
fullbench.c | 390 double ratio=0.; local 478 ratio = (double)cSize/(double)benchedSize*100.; 479 PROGRESS("%1i- %-28.28s :%9i ->%9i (%5.2f%%),%7.1f MB/s\r", loopNb, compressorName, (int)benchedSize, (int)cSize, ratio, (double)benchedSize / bestTime / 1000000); 482 if (ratio<100.) 483 DISPLAY("%2i-%-28.28s :%9i ->%9i (%5.2f%%),%7.1f MB/s\n", cAlgNb, compressorName, (int)benchedSize, (int)cSize, ratio, (double)benchedSize / bestTime / 1000000); 485 DISPLAY("%2i-%-28.28s :%9i ->%9i (%5.1f%%),%7.1f MB/s\n", cAlgNb, compressorName, (int)benchedSize, (int)cSize, ratio, (double)benchedSize / bestTime / 100000);
|
/external/python/cpython2/Lib/ |
difflib.py | 77 .ratio() returns a float in [0, 1], measuring the "similarity" of the 78 sequences. As a rule of thumb, a .ratio() value over 0.6 means the 81 >>> print round(s.ratio(), 3) 142 ratio() 146 Return an upper bound on .ratio() relatively quickly. 149 Return an upper bound on ratio() very quickly. 226 >>> s.ratio() 239 >>> s.ratio() 242 >>> s.ratio() 265 >>> s.ratio() 634 def ratio(self): member in class:SequenceMatcher [all...] |
/external/python/cpython3/Lib/ |
difflib.py | 76 .ratio() returns a float in [0, 1], measuring the "similarity" of the 77 sequences. As a rule of thumb, a .ratio() value over 0.6 means the 80 >>> print(round(s.ratio(), 3)) 141 ratio() 145 Return an upper bound on .ratio() relatively quickly. 148 Return an upper bound on ratio() very quickly. 220 >>> s.ratio() 233 >>> s.ratio() 236 >>> s.ratio() 259 >>> s.ratio() 622 def ratio(self): member in class:SequenceMatcher [all...] |
/external/python/cpython3/Lib/test/ |
test_difflib.py | 11 self.assertAlmostEqual(sm.ratio(), 0.995, places=3) 17 self.assertAlmostEqual(sm.ratio(), 0.995, places=3) 26 self.assertAlmostEqual(sm.ratio(), 0.994, places=3) 55 self.assertAlmostEqual(sm.ratio(), 0, places=3) 60 self.assertAlmostEqual(sm.ratio(), 0.9975, places=3) 68 self.assertEqual(s.ratio(), 1)
|
/external/webrtc/talk/session/media/ |
yuvscaler_unittest.cc | 318 // Test 4x3 aspect ratio scaling 353 // Test 16x10 aspect ratio scaling 388 // Test 16x9 aspect ratio scaling 423 // Test HD 4x3 aspect ratio scaling 458 // Test HD 16x10 aspect ratio scaling 493 // Test HD 16x9 aspect ratio scaling
|
/frameworks/av/media/libaudioprocessing/tests/ |
resampler_tests.cpp | 397 // (the weird ratio triggers interpolative resampling) 425 // (the weird ratio triggers interpolative resampling) 453 // (the weird ratio triggers interpolative resampling) 481 // (the weird ratio triggers interpolative resampling) 509 // (the weird ratio triggers interpolative resampling) 537 // (the weird ratio triggers interpolative resampling)
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
CameraCapabilities.java | 40 /** Zoom ratio used for seeing sensor's full field of view. */ 632 * @return The maximal supported zoom ratio. 680 final float ratio = settings.getCurrentZoomRatio(); local 682 if (ratio != ZOOM_RATIO_UNZOOMED) { 688 Log.v(TAG, "Zoom ratio is not supported: ratio = " +
|
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/ |
CameraManager.java | 682 * is closest to the screen aspect ratio. In case of RCS conversation returns default size. 690 * ratio and size as the picture if possible 732 // The desired aspect ratio 761 // If one is closer to the target aspect ratio, prefer it. 770 // At this point they have the same aspect ratio diff and are either both bigger 851 // Log the camera size and aspect ratio for help when examining bug reports for camera
|
/packages/apps/LegacyCamera/jni/ |
mosaic_renderer_jni.cpp | 117 // maintaining its aspect ratio 513 // maintain the aspect ratio of the current frame on the screen. 517 // The "width / height" inverts the scaling, so as to maintain the aspect ratio 530 // maintain the aspect ratio of the current frame on the screen. 534 // The "height / width" inverts the scaling, so as to maintain the aspect ratio 619 // while maintaining the image aspect ratio
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
difflib.py | 79 .ratio() returns a float in [0, 1], measuring the "similarity" of the 80 sequences. As a rule of thumb, a .ratio() value over 0.6 means the 83 >>> print round(s.ratio(), 3) 144 ratio() 148 Return an upper bound on .ratio() relatively quickly. 151 Return an upper bound on ratio() very quickly. 228 >>> s.ratio() 241 >>> s.ratio() 244 >>> s.ratio() 267 >>> s.ratio() 636 def ratio(self): member in class:SequenceMatcher [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
difflib.py | 79 .ratio() returns a float in [0, 1], measuring the "similarity" of the 80 sequences. As a rule of thumb, a .ratio() value over 0.6 means the 83 >>> print round(s.ratio(), 3) 144 ratio() 148 Return an upper bound on .ratio() relatively quickly. 151 Return an upper bound on ratio() very quickly. 228 >>> s.ratio() 241 >>> s.ratio() 244 >>> s.ratio() 267 >>> s.ratio() 636 def ratio(self): member in class:SequenceMatcher [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
difflib.py | 79 .ratio() returns a float in [0, 1], measuring the "similarity" of the 80 sequences. As a rule of thumb, a .ratio() value over 0.6 means the 83 >>> print round(s.ratio(), 3) 144 ratio() 148 Return an upper bound on .ratio() relatively quickly. 151 Return an upper bound on ratio() very quickly. 228 >>> s.ratio() 241 >>> s.ratio() 244 >>> s.ratio() 267 >>> s.ratio() 636 def ratio(self): member in class:SequenceMatcher [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
difflib.py | 79 .ratio() returns a float in [0, 1], measuring the "similarity" of the 80 sequences. As a rule of thumb, a .ratio() value over 0.6 means the 83 >>> print round(s.ratio(), 3) 144 ratio() 148 Return an upper bound on .ratio() relatively quickly. 151 Return an upper bound on ratio() very quickly. 228 >>> s.ratio() 241 >>> s.ratio() 244 >>> s.ratio() 267 >>> s.ratio() 636 def ratio(self): member in class:SequenceMatcher [all...] |
/system/vold/model/ |
Disk.cpp | 460 status_t Disk::partitionMixed(int8_t ratio) { 509 if (ratio > 0) { 510 if (ratio < 10 || ratio > 90) { 511 LOG(ERROR) << "Mixed partition ratio must be between 10-90%"; 515 uint64_t splitMb = ((mSize / 100) * ratio) / 1024 / 1024;
|
/test/vts-testcase/hal/media/omx/V1_0/host_omxstore/ |
VtsHalMediaOmxStoreV1_0HostTest.py | 157 ratio = '(' + num + ':' + num + ')' variable in class:VtsHalMediaOmxStoreV1_0Host.testQueryCodecInformation.Pattern 160 range_ratio = '((' + ratio + '-' + ratio + ')|' + ratio + ')' 167 'block-aspect-ratio-range' : Pattern.range_ratio, 184 'pixel-aspect-ratio-range' : Pattern.range_ratio,
|
/device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/Msr/ |
HaswellEMsr.h | 404 Package. Maximum Ratio Limit of Turbo Mode RO if MSR_PLATFORM_INFO.[28] = 0,
432 /// [Bits 7:0] Package. Maximum Ratio Limit for 1C Maximum turbo ratio
437 /// [Bits 15:8] Package. Maximum Ratio Limit for 2C Maximum turbo ratio
442 /// [Bits 23:16] Package. Maximum Ratio Limit for 3C Maximum turbo ratio
447 /// [Bits 31:24] Package. Maximum Ratio Limit for 4C Maximum turbo ratio
452 /// [Bits 39:32] Package. Maximum Ratio Limit for 5C Maximum turbo ratio [all...] |
/external/adhd/scripts/audio_tuning/frontend/ |
audio.js | 71 * ratio - The input/output dB ratio after the knee region. 210 * drc.[0-2].{f, enable, threshold, knee, ratio, attack, release, boost} 233 set_config('drc', i, 'ratio', INIT_DRC_RATIO); 705 comp.ratio.value = INIT_DRC_RATIO; 725 case 'ratio': 1169 use_config('drc', index, 'ratio', v); [all...] |
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_030025-fw_11.27-robot_sim/ |
touch_firmware_report-lumpy-fw_11.27-complete-20140116_103515.log | 123 S' Largest gap ratio slot0: 1.571429' 335 S' Largest gap ratio slot0: 2.433105' 533 S' Largest gap ratio slot0: 1.737932' 734 S' Largest gap ratio slot0: 1.833333' 933 S' Largest gap ratio slot0: 13.446189' 1156 S' Largest gap ratio slot0: 21.000000' 1422 S' Largest gap ratio slot0: 1.674979' 1439 S' Largest gap ratio slot1: 2.006932' 1690 S' Largest gap ratio slot0: 1.840894' 1707 S' Largest gap ratio slot1: 1.815846 [all...] |
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032458-fw_11.23-robot_sim/ |
touch_firmware_report-lumpy-fw_11.23-complete-20140116_103525.log | 123 S' Largest gap ratio slot0: 3.807887' 335 S' Largest gap ratio slot0: 4.472136' 533 S' Largest gap ratio slot0: 3.847077' 734 S' Largest gap ratio slot0: 3.726780' 933 S' Largest gap ratio slot0: 2.209072' 1156 S' Largest gap ratio slot0: 11.401754' 1422 S' Largest gap ratio slot0: 2.850439' 1439 S' Largest gap ratio slot1: 2.064982' 1690 S' Largest gap ratio slot0: 4.216370' 1707 S' Largest gap ratio slot1: 3.807887 [all...] |