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

  /external/llvm/lib/CodeGen/
SpillPlacement.cpp 14 // bias.
63 /// but Bias and Links are computed each time placeSpills is called.
76 /// Bias - Normalized contributions from non-transparent blocks.
77 /// A bundle connected to a MustSpill block has a huge negative bias,
79 float Bias;
81 /// Value - Output value of this node computed from the Bias and links.
103 // Actually, we must spill if Bias < sum(weights).
105 return Bias < -2.0f;
116 Bias = Value = 0;
136 /// addBias - Bias this node from an ingoing[0] or outgoing[1] link
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGFEConvolveMatrixElement.h 62 DECLARE_ANIMATED_NUMBER(Bias, bias)
SVGFEConvolveMatrixElement.cpp 42 DEFINE_ANIMATED_NUMBER(SVGFEConvolveMatrixElement, SVGNames::biasAttr, Bias, bias)
139 return convolveMatrix->setBias(bias());
253 bias(), IntPoint(targetXValue, targetYValue), static_cast<EdgeModeType>(edgeMode()),
  /external/libvpx/vp8/encoder/
picklpf.c 307 int Bias = 0; // Bias against raising loop filter and in favour of lowering it
377 Bias = (best_err >> (15 - (filt_mid / 8))) * filter_step; //PGW change 12/12/06 for small images
379 // jbb chg: 20100118 - in sections with lots of new material coming in don't bias as much to a low filter value
381 Bias = Bias * cpi->section_intra_rating / 20;
415 // If value is close to the best so far then bias towards a lower loop filter value.
416 if ((filt_err - Bias) < best_err)
456 if (filt_err < (best_err - Bias))
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 134 #define Bias 1023
156 #define Big0 (Frac_mask1 | Exp_msk1 * (DBL_MAX_EXP + Bias - 1))
704 *e = de - Bias - (P - 1) + k;
707 *e = de - Bias - (P - 1) + 1 + k;
936 if ((z = word0(&rv) & Exp_mask) > Exp_msk1 * (DBL_MAX_EXP + Bias - P))
938 if (z > Exp_msk1 * (DBL_MAX_EXP + Bias - 1 - P)) {
1126 if (y == Exp_msk1 * (DBL_MAX_EXP + Bias - 1)) {
1131 if ((word0(&rv) & Exp_mask) >= Exp_msk1 * (DBL_MAX_EXP + Bias - P)) {
    [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/icu4c/common/
wintz.c 35 int32_t bias; member in struct:__anon6250
243 tziKey.bias = apiTZI.Bias;
265 Using the bias and the rules suffices, so overwrite
  /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/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/v8/src/
platform-win32.cc 293 // Guess the name of the timezone from the bias.
294 static const char* GuessTimezoneNameFromBias(int bias);
361 // Guess the name of the timezone from the bias.
363 const char* Time::GuessTimezoneNameFromBias(int bias) {
365 switch (-bias) {
398 tzinfo_.Bias = -60;
420 // simply guess the name from the UTC bias of the timezone.
426 GuessTimezoneNameFromBias(tzinfo_.Bias));
431 GuessTimezoneNameFromBias(tzinfo_.Bias));
545 // 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 452 milliseconds