HomeSort by relevance Sort by last modified time
    Searched refs:Bias (Results 1 - 19 of 19) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_picklpf.c 114 int Bias = 0; // Bias against raising loop filter in favor of lowering it.
140 Bias = (best_err >> (15 - (filt_mid / 8))) * filter_step;
143 Bias = Bias * cpi->twopass.section_intra_rating / 20;
145 // yx, bias less for large block size
147 Bias >>= 1;
166 // If value is close to the best so far then bias towards a lower loop
168 if ((filt_err - Bias) < best_err) {
188 if (filt_err < (best_err - Bias)) {
    [all...]
  /external/chromium_org/media/base/
audio_bus.cc 37 // |Format| is the destination type. If a bias is present, |Fixed| must be a
39 // overflowing. Without a bias |Fixed| must be the same as |Format|.
40 template<class Format, class Fixed, Format Bias>
44 COMPILE_ASSERT((Bias == 0 && sizeof(Fixed) == sizeof(Format)) ||
52 const Fixed v = static_cast<Fixed>(source[offset]) - Bias;
58 // |Format| is the destination type. If a bias is present, |Fixed| must be a
60 // overflowing. Without a bias |Fixed| must be the same as |Format|.
61 template<class Format, class Fixed, Format Bias>
64 COMPILE_ASSERT((Bias == 0 && sizeof(Fixed) == sizeof(Format)) ||
80 dest[offset] = static_cast<Format>(sample) + Bias;
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
picklpf.c 283 /* Bias against raising loop filter and in favor of lowering it */
284 int Bias = 0;
329 Bias = (best_err >> (15 - (filt_mid / 8))) * filter_step;
332 Bias = Bias * cpi->twopass.section_intra_rating / 20;
352 /* If value is close to the best so far then bias towards a
355 if ((filt_err - Bias) < best_err)
381 if (filt_err < (best_err - Bias))
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEConvolveMatrixElement.h 93 DECLARE_ANIMATED_NUMBER(Bias, bias)
SVGFEConvolveMatrixElement.cpp 41 DEFINE_ANIMATED_NUMBER(SVGFEConvolveMatrixElement, SVGNames::biasAttr, Bias, bias)
55 REGISTER_LOCAL_ANIMATED_PROPERTY(bias)
  /external/chromium_org/third_party/WebKit/Source/wtf/
GregorianDateTime.cpp 46 LONG bias = timeZoneInformation.Bias; local
48 bias += timeZoneInformation.DaylightBias;
50 bias += timeZoneInformation.StandardBias;
62 m_utcOffset = -bias * secondsPerMinute;
dtoa.cpp 91 #define Bias 1023
113 #define Big0 (Frac_mask1 | Exp_msk1 * (DBL_MAX_EXP + Bias - 1))
583 *e = de - Bias - (P - 1) + k;
586 *e = 0 - Bias - (P - 1) + 1 + k;
789 * log10(d) = (i-Bias)*log(2)/log(10) + log10(d2)
793 * k = (i - Bias)*0.301029995663981
800 * (i - Bias) by 0.301029995663981; since |i - Bias| <= 1077,
808 i -= Bias;
813 i = bbits + be + (Bias + (P - 1) - 1)
    [all...]
DateMath.cpp 365 int32_t bias = timeZoneInformation.Bias + timeZoneInformation.StandardBias; local
366 return -bias * 60 * 1000;
    [all...]
  /bionic/libc/stdlib/
strtod.c 249 #define Bias 1023
279 #define Bias 65
303 #define Bias 129
340 #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
1239 *e = (de - Bias - (P-1) << 2) + k;
1242 *e = de - Bias - (P-1) + k;
1248 *e = de - Bias - (P-1) + 1 + k;
1550 > Exp_msk1*(DBL_MAX_EXP+Bias-1-P))
1593 > Exp_msk1*(DBL_MAX_EXP+Bias-P))
1595 if (z > Exp_msk1*(DBL_MAX_EXP+Bias-1-P))
    [all...]
  /external/chromium_org/third_party/icu/source/common/
wintz.c 35 int32_t bias; member in struct:__anon13355
243 tziKey.bias = apiTZI.Bias;
265 Using the bias and the rules suffices, so overwrite
  /external/chromium_org/third_party/icu/source/i18n/
wintzimpl.cpp 36 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) {
46 bias = -1 * (initial->getRawOffset()/60000);
58 bias = -1 * (std->getRawOffset()/60000);
122 int32_t bias; local
128 if (getSystemTimeInformation(tz, daylightDate, standardDate, bias, daylightBias, standardBias)) {
130 zoneInfo->Bias = bias;
145 * information to put into zoneInfo. This includes bias and standard time date and daylight saving date.
  /external/icu4c/i18n/
wintzimpl.cpp 36 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) {
46 bias = -1 * (initial->getRawOffset()/60000);
58 bias = -1 * (std->getRawOffset()/60000);
122 int32_t bias; local
128 if (getSystemTimeInformation(tz, daylightDate, standardDate, bias, daylightBias, standardBias)) {
130 zoneInfo->Bias = bias;
145 * information to put into zoneInfo. This includes bias and standard time date and daylight saving date.
  /external/chromium_org/v8/src/
platform-win32.cc 297 // Guess the name of the timezone from the bias.
298 static const char* GuessTimezoneNameFromBias(int bias);
366 // Guess the name of the timezone from the bias.
368 const char* Time::GuessTimezoneNameFromBias(int bias) {
370 switch (-bias) {
403 tzinfo_.Bias = -60;
423 // simply guess the name from the UTC bias of the timezone.
429 GuessTimezoneNameFromBias(tzinfo_.Bias));
434 GuessTimezoneNameFromBias(tzinfo_.Bias));
534 return (tzinfo_.Bias + tzinfo_.DaylightBias) * -kMsPerMinute
    [all...]
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 351 #define Bias 1023
408 #define Bias 65
437 #define Bias 129
476 #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
1376 *e = (de - Bias - (P-1) << 2) + k;
1379 *e = de - Bias - (P-1) + k;
1385 *e = de - Bias - (P-1) + 1 + k;
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 351 #define Bias 1023
408 #define Bias 65
437 #define Bias 129
476 #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
1376 *e = (de - Bias - (P-1) << 2) + k;
1379 *e = de - Bias - (P-1) + k;
1385 *e = de - Bias - (P-1) + 1 + k;
    [all...]
  /external/icu4c/common/
wintz.c 36 int32_t bias; member in struct:__anon20663
275 tziKey.bias = apiTZI.Bias;
307 Using the bias and the rules suffices, so overwrite
  /external/v8/src/
platform-win32.cc 290 // Guess the name of the timezone from the bias.
291 static const char* GuessTimezoneNameFromBias(int bias);
358 // Guess the name of the timezone from the bias.
360 const char* Time::GuessTimezoneNameFromBias(int bias) {
362 switch (-bias) {
395 tzinfo_.Bias = -60;
415 // simply guess the name from the UTC bias of the timezone.
421 GuessTimezoneNameFromBias(tzinfo_.Bias));
426 GuessTimezoneNameFromBias(tzinfo_.Bias));
540 // Compute the offset for DST. The bias parameters in the timezone inf
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 1157 milliseconds