/packages/apps/Settings/src/com/android/settings/ |
CryptKeeperSettings.java | 45 // This is the minimum acceptable password quality. If the current password quality is 163 int quality = lockPatternUtils.getActivePasswordQuality(); local 164 if (quality == DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK 166 // Use the alternate as the quality. We expect this to be 168 quality = lockPatternUtils.getKeyguardStoredPasswordQuality(); 170 if (quality < MIN_PASSWORD_QUALITY) {
|
/external/chromium_org/content/browser/devtools/ |
renderer_overrides_handler.cc | 160 int quality = kDefaultScreenshotQuality; local 167 &quality); 173 if (quality < 0 || quality > 100) 174 quality = kDefaultScreenshotQuality; 182 // TODO(pfeldman): support format, scale and quality in ui::GrabViewSnapshot. 209 weak_factory_.GetWeakPtr(), command, format, quality, scale)); 216 int quality, 244 quality, &data);
|
/external/libvorbis/doc/ |
vorbis-fidelity.html | 80 for discussion of Vorbis's and other formats' audio quality.</p> 93 specifications, listeners may strongly prefer the sound quality of one 98 measurable quality. This preference is <em>subjective</em> and 102 but overall subjective quality generally is not measurable. Different 109 quality. This is why evaluating a perceptual codec via distortion 111 provide insight into the quality or functioning of a codec, but cannot 148 of quality to an average 44.1kHz stereo mp3 encoded at 80 or 96kbps. 152 <p>Thus, when a CODEC <em>must</em> sacrifice subjective quality in order 168 failures when it is necessary to sacrifice subjective quality is a
|
/external/libvpx/libvpx/vp9/common/ |
vp9_onyx.h | 70 // 0 - best quality/slowest decode, 71 // 3 - lowest quality/fastest decode 85 // (1)=Good Quality Fast Encoding. The encoder balances quality with the amount of time it takes to 87 // (2)=One Pass - Best Quality. The encoder places priority on the quality of the output over encoding 88 // speed. The output is compressed at the highest possible quality. This option takes the longest 95 // encoding pass to create the compressed output using the highest possible quality, and taking a 120 // controlling quality
|
/frameworks/base/graphics/java/android/graphics/ |
YuvImage.java | 116 * @param quality Hint to the compressor, 0-100. 0 meaning compress for 117 * small size, 100 meaning compress for max quality. 120 * @throws IllegalArgumentException if rectangle is invalid; quality is not within [0, 123 public boolean compressToJpeg(Rect rectangle, int quality, OutputStream stream) { 130 if (quality < 0 || quality > 100) { 131 throw new IllegalArgumentException("quality must be 0..100"); 142 rectangle.height(), offsets, mStrides, quality, stream, 239 int quality, OutputStream stream, byte[] tempStorage);
|
/device/generic/goldfish/camera/ |
JpegCompressor.cpp | 43 int width, int height, int quality); 72 int quality) 77 return (status_t)(*f)(&mStub, image, width, height, quality);
|
JpegCompressor.h | 52 * quality - JPEG quality. 60 int quality);
|
JpegStub.h | 30 int width, int height, int quality);
|
JpegStub.cpp | 37 int width, int height, int quality) 48 if (encoder->encode(stream, pY, width, height, offsets, quality)) {
|
/external/jpeg/ |
jcparam.c | 66 /* Set or change the 'quality' (quantization) setting, using default tables 67 * and a straight percentage-scaling quality scale. In most cases it's better 73 * The spec says that the values given produce "good" quality, and 74 * when divided by 2, "very good" quality. 106 jpeg_quality_scaling (int quality) 107 /* Convert a user-specified quality rating to a percentage scaling factor 109 * The input 'quality' factor should be 0 (terrible) to 100 (very good). 112 /* Safety limit on quality factor. Convert 0 to 1 to avoid zero divide. */ 113 if (quality <= 0) quality = 1 [all...] |
djpeg.1 | 53 Select recommended processing options for fast, low quality output. (The 54 default options are chosen for highest quality output.) Currently, this is 136 between speed and quality; no dithering is fast but usually looks awful. Note 153 Use a faster, lower-quality upsampling routine. 157 faster and needs less memory, but it produces a lower-quality image. 201 Several options are available that trade off image quality to gain speed. 208 gain speed at a small sacrifice in quality. 211 is fast but much lower quality than the default behavior.
|
/external/libvorbis/doc/vorbisenc/ |
vorbis_encode_init_vbr.html | 20 <p>This is the primary function within libvorbisenc for setting up variable bitrate ("quality" based) modes. 48 <dd>Desired quality level, currently from -0.1 to 1.0 (lo to hi).</dd> 61 <li>OV_EIMPL - Unimplemented mode; unable to comply with quality level request.</li>
|
/external/qemu/distrib/jpeg-6b/ |
jcparam.c | 66 /* Set or change the 'quality' (quantization) setting, using default tables 67 * and a straight percentage-scaling quality scale. In most cases it's better 73 * The spec says that the values given produce "good" quality, and 74 * when divided by 2, "very good" quality. 106 jpeg_quality_scaling (int quality) 107 /* Convert a user-specified quality rating to a percentage scaling factor 109 * The input 'quality' factor should be 0 (terrible) to 100 (very good). 112 /* Safety limit on quality factor. Convert 0 to 1 to avoid zero divide. */ 113 if (quality <= 0) quality = 1 [all...] |
djpeg.1 | 53 Select recommended processing options for fast, low quality output. (The 54 default options are chosen for highest quality output.) Currently, this is 136 between speed and quality; no dithering is fast but usually looks awful. Note 153 Use a faster, lower-quality upsampling routine. 157 faster and needs less memory, but it produces a lower-quality image. 201 Several options are available that trade off image quality to gain speed. 208 gain speed at a small sacrifice in quality. 211 is fast but much lower quality than the default behavior.
|
/external/chromium_org/content/common/gpu/client/ |
gl_helper.cc | 141 GLHelper::ScalerQuality quality); 167 GLHelper::ScalerQuality quality); 170 GLHelper::ScalerQuality quality, 225 GLHelper::ScalerQuality quality, 263 GLHelper::ScalerQuality quality, 305 GLHelper::ScalerQuality quality); 328 ScalerQuality quality, 335 return scaler_impl_->CreateScaler(quality, 350 GLHelper::ScalerQuality quality) { 352 helper_->CreateScaler(quality, [all...] |
/external/chromium_org/remoting/codec/ |
audio_encoder_speex.cc | 18 // A quality of 8 in wide band mode corresponds to 27,800 bits per second. 32 // Set the encoding quality. 33 int quality = kSpeexHighQuality; local 34 speex_encoder_ctl(speex_state_, SPEEX_SET_QUALITY, &quality);
|
/external/chromium_org/skia/ext/ |
paint_simplifier.cc | 21 // Preserve a modicum of text quality; black & white text is
|
/external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Light/ |
Deferred.j3md | 8 // Improve quality at the cost of performance
|
/external/libvpx/libvpx/ |
CHANGELOG | 18 - Quality: 19 In general, quality is consistent with the Eider release. 58 gives higher quality than the older spatial denoiser. (See above 86 Large realtime encoding speed gains at a small quality expense are 94 - Quality: 95 On the whole, quality is consistent with the Duclair release. Some 101 Improved quality of static sections (like slideshows) with 111 Additional constraints were added to disable multi-frame quality 142 Multiframe quality enhancement postprocessing can make visual quality [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterNegative.java | 34 public Bitmap apply(Bitmap bitmap, float scaleFactor, int quality) {
|
/external/e2fsprogs/misc/ |
uuidgen.1.in | 34 will generate a random-based UUID if a high-quality random number 47 quality random number generator, such as
|
/frameworks/base/core/jni/android/graphics/ |
YuvToJpegEncoder.h | 30 * @param jpegQuality Picture quality in [0, 100]. 42 int height, int quality);
|
/frameworks/base/docs/html/distribute/ |
distribute_toc.cs | 49 <div class="nav-section-header"><a href="<?cs var:toroot ?>distribute/googleplay/quality/index.html">App Quality</a></div> 51 <li><a href="<?cs var:toroot ?>distribute/googleplay/quality/core.html">Core App Quality</a></li> 52 <li><a href="<?cs var:toroot ?>distribute/googleplay/quality/tablet.html">Tablet App Quality</a></li> 53 <li><a href="<?cs var:toroot ?>distribute/googleplay/strategies/app-quality.html">Improving App Quality</a></li>
|
/libcore/luni/src/main/java/java/lang/ |
ArrayIndexOutOfBoundsException.java | 59 * Used internally for consistent high-quality error reporting. 67 * Used internally for consistent high-quality error reporting.
|
/packages/apps/Gallery2/jni_jpegstream/src/ |
jpeg_writer.h | 37 * width, pixel format, and compression quality in range (0, 100]. 42 Jpeg_Config::Format format, int32_t quality);
|