HomeSort by relevance Sort by last modified time
    Searched defs:Denom (Results 1 - 6 of 6) sorted by null

  /prebuilts/go/darwin-x86/src/math/big/
rat.go 399 // Denom returns the denominator of x; it is always > 0.
402 func (x *Rat) Denom() *Int {
  /prebuilts/go/linux-x86/src/math/big/
rat.go 399 // Denom returns the denominator of x; it is always > 0.
402 func (x *Rat) Denom() *Int {
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 372 unsigned Denom = (BackEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) +
376 Probs[0] = BranchProbability(LBH_TAKEN_WEIGHT, Denom);
378 Probs[1] = BranchProbability(LBH_TAKEN_WEIGHT, Denom);
380 Probs[2] = BranchProbability(LBH_NONTAKEN_WEIGHT, Denom);
  /prebuilts/go/darwin-x86/src/go/constant/
value.go 263 b := newFloat().SetInt(x.val.Denom())
282 b := x.Denom()
672 // Denom returns the denominator of x; x must be Int, Float, or Unknown.
675 func Denom(x Value) Value {
680 return makeInt(x.val.Denom())
684 return makeInt(r.Denom())
  /prebuilts/go/linux-x86/src/go/constant/
value.go 263 b := newFloat().SetInt(x.val.Denom())
282 b := x.Denom()
672 // Denom returns the denominator of x; x must be Int, Float, or Unknown.
675 func Denom(x Value) Value {
680 return makeInt(x.val.Denom())
684 return makeInt(r.Denom())
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]

Completed in 114 milliseconds