OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Denominator
(Results
1 - 14
of
14
) sorted by null
/external/llvm/lib/Support/
BranchProbability.cpp
37
BranchProbability::BranchProbability(uint32_t Numerator, uint32_t
Denominator
) {
38
assert(
Denominator
> 0 && "
Denominator
cannot be 0!");
39
assert(Numerator <=
Denominator
&& "Probability cannot be bigger than 1!");
40
if (
Denominator
== D)
44
(Numerator * static_cast<uint64_t>(D) +
Denominator
/ 2) /
Denominator
;
51
uint64_t
Denominator
) {
52
assert(Numerator <=
Denominator
&& "Probability cannot be bigger than 1!");
53
// Scale down
Denominator
to fit in a 32-bit integer
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxgitype.h
52
UINT
Denominator
;
dxvahd.h
220
UINT
Denominator
;
dxva2api.h
264
UINT
Denominator
;
ks.h
[
all
...]
wingdi.h
[
all
...]
mfobjects.h
[
all
...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
dxgitype.idl
54
UINT
Denominator
;
/external/opencv3/cmake/checks/
directx.cpp
45
sd.BufferDesc.RefreshRate.
Denominator
= 1;
/external/llvm/include/llvm/Support/
BranchProbability.h
29
//
denominator
is always a constant value (here we use 1<<31 for maximum
35
//
Denominator
, which is a constant value.
39
// Construct a BranchProbability with only numerator assuming the
denominator
45
BranchProbability(uint32_t Numerator, uint32_t
Denominator
);
54
// as
denominator
.
58
uint64_t
Denominator
);
/external/llvm/lib/Analysis/
ScalarEvolution.cpp
696
//
Denominator
.
698
const SCEV *
Denominator
, const SCEV **Quotient,
700
assert(Numerator &&
Denominator
&& "Uninitialized SCEV");
702
SCEVDivision D(SE, Numerator,
Denominator
);
706
if (Numerator ==
Denominator
) {
719
if (
Denominator
->isOne()) {
725
// Split the
Denominator
when it is a product.
726
if (const SCEVMulExpr *T = dyn_cast<const SCEVMulExpr>(
Denominator
)) {
734
// the
Denominator
.
751
// Expr by
Denominator
for the following functions with empty implementation
[
all
...]
ValueTracking.cpp
[
all
...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_native.cpp
422
dxgi_modes[i].RefreshRate.
Denominator
= 1;
444
dxgi_modes[0].RefreshRate.
Denominator
= 1;
[
all
...]
/external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp
[
all
...]
Completed in 2735 milliseconds