Searched refs:Bias (Results 1 - 25 of 25) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp173 int64_t Bias = Subtarget.getStackPointerBias(); local
175 if (Bias) {
180 .addReg(SP::O6).addImm(Bias);
190 if (Bias) {
193 .addReg(regUnbiased).addImm(-Bias);
/netbsd-current/lib/libc/gdtoa/
H A Dgdtoaimp.h348 #define Bias 1023 macro
387 #define Bias 65 macro
413 #define Bias 129 macro
456 #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
H A Dstrtodg.c588 > Exp_msk1*(DBL_MAX_EXP+Bias-1-P))
622 >> Exp_shift1) - Bias;
624 word0(&rv) |= Bias << Exp_shift1;
628 e2 += ((word0(&rv) & Exp_mask) >> Exp_shift1) - Bias;
630 word0(&rv) |= Bias << Exp_shift1;
644 >> Exp_shift1) - Bias;
646 word0(&rv) |= Bias << Exp_shift1;
650 e2 += ((word0(&rv) & Exp_mask) >> Exp_shift1) - Bias;
652 word0(&rv) |= Bias << Exp_shift1;
H A Ddtoa.c223 * log10(&d) = (i-Bias)*log(2)/log(10) + log10(&d2)
227 * k = (i - Bias)*0.301029995663981
234 * (i - Bias) by 0.301029995663981; since |i - Bias| <= 1077,
242 i -= Bias;
253 i = bbits + be + (Bias + (P-1) - 1);
258 i -= (Bias + (P-1) - 1) + 1;
508 denorm ? be + (Bias + (P-1) - 1 + 1) :
H A Dstrtod.c400 > Exp_msk1*(DBL_MAX_EXP+Bias-1-P))
501 > Exp_msk1*(DBL_MAX_EXP+Bias-P))
503 if (z > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) {
963 if (y == Exp_msk1*(DBL_MAX_EXP+Bias-1)) {
969 Exp_msk1*(DBL_MAX_EXP+Bias-P)) {
H A Dmisc.c845 *e = (de - Bias - (P-1) << 2) + k;
848 *e = de - Bias - (P-1) + k;
854 *e = de - Bias - (P-1) + 1 + k;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp3409 unsigned Bias = ELFT::Is64Bits ? 8 : 0; local
3410 Field Fields[5] = {0, 10 + Bias, 19 + 2 * Bias, 42 + 2 * Bias, 53 + 2 * Bias};
3585 unsigned Bias = ELFT::Is64Bits ? 0 : 8; local
3593 {"Address", 41}, {"Off", 58 - Bias}, {"Size", 65 - Bias},
3594 {"ES", 72 - Bias}, {"Flg", 75 - Bias}, {"L
3719 unsigned Bias = ELFT::Is64Bits ? 8 : 0; local
3771 unsigned Bias = ELFT::Is64Bits ? 8 : 0; local
4149 unsigned Bias = ELFT::Is64Bits ? 8 : 0; local
5987 size_t Bias = ELFT::Is64Bits ? 8 : 0; local
6068 size_t Bias = ELFT::Is64Bits ? 8 : 0; local
[all...]
H A DCOFFDumper.cpp116 uint64_t Bias = 0);
1434 const RelocationRef &Reloc, uint64_t Bias) {
1435 uint64_t Offset = Reloc.getOffset() - Bias;
1433 printRelocation(const SectionRef &Section, const RelocationRef &Reloc, uint64_t Bias) argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86InsertPrefetch.cpp198 unsigned Bias = X86II::getOperandBias(Current->getDesc()); local
199 int MemOpOffset = Offset + Bias;
H A DX86ISelLowering.cpp20171 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL), dl,
20186 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, Bias)));
20196 {Chain, Or, Bias});
20210 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
20317 Constant *Bias = ConstantFP::get(
20321 SDValue CPIdx = DAG.getConstantPool(Bias, PtrVT, Align(8));
[all...]
/netbsd-current/sys/arch/sparc/stand/ofwboot/
H A Dsrt0.s78 set BIAS, %g2 ! Bias (negative)
80 add %g1, %g2, %g1 ! Frame + Bias
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCCodeView.cpp642 unsigned Bias = 0; local
650 MCBinaryExpr::createAdd(SRE, MCConstantExpr::create(Bias, Ctx), Ctx);
676 Bias += Chunk;
681 assert((NumGaps == 0 || Bias <= MaxDefRange) &&
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp691 GlobalVariable *Bias = M->getGlobalVariable(getInstrProfCounterBiasVarName()); local
692 if (!Bias) {
693 Bias = new GlobalVariable(*M, Int64Ty, false, GlobalValue::LinkOnceODRLinkage,
696 Bias->setVisibility(GlobalVariable::HiddenVisibility);
698 LI = Builder.CreateLoad(Int64Ty, Bias);
H A DControlHeightReduction.cpp1887 BranchProbability Bias = BranchBiasMap[R]; local
1888 assert(Bias >= getCHRBiasThreshold() && "Must be highly biased");
1890 if (CHRBranchBias > Bias)
1891 CHRBranchBias = Bias;
1930 BranchProbability Bias = SelectBiasMap[SI]; local
1931 assert(Bias >= getCHRBiasThreshold() && "Must be highly biased");
1933 if (CHRBranchBias > Bias)
1934 CHRBranchBias = Bias;
/netbsd-current/sys/arch/hpc/stand/hpcboot/
H A Dhpcmenu.cpp348 bi.timezone = tz.Bias;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp533 // Bias used for splitting: 5%.
535 uint64_t Bias = (RepairCost * PercentageForBias + 99) / 100; local
553 assert(CostForInsertPt + Bias > CostForInsertPt &&
555 CostForInsertPt += Bias;
H A DLegalizerHelper.cpp5806 auto Bias = MIRBuilder.buildConstant(SrcTy, 127); local
5807 auto Exponent = MIRBuilder.buildSub(SrcTy, ExponentBits, Bias);
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
H A Dtimezone.d2887 tzInfo.Bias = tziFmt.Bias;
2993 immutable minutes = diff.total!"minutes" - tzInfo.Bias;
3019 return stdTime - convert!("minutes", "hnsecs")(tzInfo.Bias + tzInfo.DaylightBias);
3021 return stdTime - convert!("minutes", "hnsecs")(tzInfo.Bias + tzInfo.StandardBias);
3085 immutable minutes = -tzInfo.Bias - diff.total!"minutes";
3117 return adjTime + convert!("minutes", "hnsecs")(tzInfo.Bias + tzInfo.DaylightBias);
3123 return adjTime + convert!("minutes", "hnsecs")(tzInfo.Bias + tzInfo.StandardBias);
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/datetime/
H A Dtimezone.d3025 tzInfo.Bias = tziFmt.Bias;
3135 immutable minutes = diff.total!"minutes" - tzInfo.Bias;
3162 return stdTime - convert!("minutes", "hnsecs")(tzInfo.Bias + tzInfo.DaylightBias);
3164 return stdTime - convert!("minutes", "hnsecs")(tzInfo.Bias + tzInfo.StandardBias);
3230 immutable minutes = -tzInfo.Bias - diff.total!"minutes";
3263 return adjTime + convert!("minutes", "hnsecs")(tzInfo.Bias + tzInfo.DaylightBias);
3269 return adjTime + convert!("minutes", "hnsecs")(tzInfo.Bias + tzInfo.StandardBias);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp2217 BranchProbability Bias(100 - ExitBlockBias, 100);
2221 !(ExitEdgeFreq < BestExitEdgeFreq * Bias))) {
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dregstr.d672 REGSTR_VAL_TZBIAS = `Bias`,
H A Dwinbase.d1369 LONG Bias;
1384 LONG Bias;
/netbsd-current/sys/arch/hpcmips/stand/pbsdboot/
H A Dmain.c824 bi->timezone = tz.Bias;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2346 SDValue Bias = DAG.getConstantFP(isSigned ?
2355 {Node->getOperand(0), Load, Bias});
2367 Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
H A DTargetLowering.cpp6683 SDValue Bias = DAG.getConstant(127, dl, IntVT);
6693 SDValue Exponent = DAG.getNode(ISD::SUB, dl, IntVT, ExponentBits, Bias);

Completed in 468 milliseconds