Searched defs:Ratio (Results 1 - 7 of 7) sorted by path

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c2329 double Ratio; local
2346 Ratio = sectionstats.intra_error / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error);
2347 cpi->twopass.section_max_qfactor = 1.0 - ((Ratio - 10.0) * 0.025);
3006 double Ratio; local
3023 Ratio = sectionstats.intra_error / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error);
3024 cpi->twopass.section_max_qfactor = 1.0 - ((Ratio - 10.0) * 0.025);
/external/libcxx/test/utilities/time/time.duration/
H A Dratio.fail.cpp19 class Ratio class
28 typedef std::chrono::duration<int, Ratio<1> > D;
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c2329 double Ratio; local
2346 Ratio = sectionstats.intra_error / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error);
2347 cpi->twopass.section_max_qfactor = 1.0 - ((Ratio - 10.0) * 0.025);
3006 double Ratio; local
3023 Ratio = sectionstats.intra_error / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error);
3024 cpi->twopass.section_max_qfactor = 1.0 - ((Ratio - 10.0) * 0.025);
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp170 unsigned Ratio = NumSrcElt/NumDstElt; local
176 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize*(Ratio-1);
177 for (unsigned j = 0; j != Ratio; ++j) {
199 unsigned Ratio = NumDstElt/NumSrcElt; local
208 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1);
209 for (unsigned j = 0; j != Ratio; ++j) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp1126 unsigned Ratio; local
1131 Ratio = 1;
1140 Ratio = VWidth/InVWidth;
1143 InputDemandedElts.setBit(OutIdx/Ratio);
1152 Ratio = InVWidth/VWidth;
1154 if (DemandedElts[InIdx/Ratio])
1173 if (UndefElts2[OutIdx/Ratio])
1183 UndefElts.clearBit(InIdx/Ratio); // Clear undef bit.
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscnvrt.c825 cmsFloat64Number SumCMY, SumCMYK, Error, Ratio; local
882 Ratio = 1 - ((SumCMYK - bp->MaxTAC) / SumCMY);
883 if (Ratio < 0)
884 Ratio = 0;
887 Ratio = 1.0;
889 Out[0] = _cmsQuickSaturateWord(Outf[0] * Ratio * 65535.0); // C
890 Out[1] = _cmsQuickSaturateWord(Outf[1] * Ratio * 65535.0); // M
891 Out[2] = _cmsQuickSaturateWord(Outf[2] * Ratio * 65535.0); // Y
H A Dcmsvirt.c350 // Ratio= 1 - (Sum - InkLimit) / (C + M + Y)
351 // if Ratio <0
352 // Ratio=0
355 // Ratio=1
358 // C = Ratio * C
359 // M = Ratio * M
360 // Y = Ratio * Y
367 cmsFloat64Number SumCMY, SumCMYK, Ratio; local
376 Ratio = 1 - ((SumCMYK - InkLimit) / SumCMY);
377 if (Ratio <
[all...]

Completed in 364 milliseconds