OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
202
b := newFloat().SetInt(x.val.
Denom
())
226
b := x.
Denom
()
609
//
Denom
returns the denominator of x; x must be Int, Float, or Unknown.
612
func
Denom
(x Value) Value {
617
return makeInt(x.val.
Denom
())
621
return makeInt(r.
Denom
())
/prebuilts/go/linux-x86/src/go/constant/
value.go
202
b := newFloat().SetInt(x.val.
Denom
())
226
b := x.
Denom
()
609
//
Denom
returns the denominator of x; x must be Int, Float, or Unknown.
612
func
Denom
(x Value) Value {
617
return makeInt(x.val.
Denom
())
621
return makeInt(r.
Denom
())
/external/clang/lib/AST/
ExprConstant.cpp
[
all
...]
Completed in 417 milliseconds