OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Log2
(Results
1 - 9
of
9
) sorted by relevancy
/src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_dense_map.h
684
unsigned
Log2
= MostSignificantSetBitIndex(GetPageSizeCached() / Size);
685
Size <<=
Log2
;
686
NumBuckets <<=
Log2
;
sanitizer_common.h
470
inline uptr
Log2
(uptr x) {
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MathExtras.h
574
/// Compile time
Log2
.
585
inline double
Log2
(double Value) {
589
return
log2
(Value);
831
//
Log2
(Z) would be either Log2Z or Log2Z + 1.
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp
637
int32_t
Log2
= ImmValue.exactLogBase2();
639
if (
Log2
!= -1) {
640
Imm = CurDAG->getTargetConstant(
Log2
, SDLoc(N), EltTy);
724
int32_t
Log2
= (~ImmValue).exactLogBase2();
726
if (
Log2
!= -1) {
727
Imm = CurDAG->getTargetConstant(
Log2
, SDLoc(N), EltTy);
MipsSEISelLowering.cpp
511
unsigned
Log2
= Log2IfPositive;
513
if ((Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT &&
Log2
>= ExtendTySize) ||
514
Log2
== ExtendTySize) {
803
// If c is power of 2, return (shl x,
log2
(c)).
814
// where floor_c = pow(2, floor(
log2
(c))) and ceil_c = pow(2, ceil(
log2
(c))),
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp
597
//
log2
(X * 0.5) * Y =
log2
(X) * Y - Y
599
IntrinsicInst *
Log2
= nullptr;
600
if (match(Op0, m_OneUse(m_Intrinsic<Intrinsic::
log2
>(
602
Log2
= cast<IntrinsicInst>(Op0);
605
if (match(Op1, m_OneUse(m_Intrinsic<Intrinsic::
log2
>(
607
Log2
= cast<IntrinsicInst>(Op1);
610
if (
Log2
) {
611
Value *
Log2
= Builder.CreateUnaryIntrinsic(Intrinsic::
log2
, X, &I)
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common.h
401
INLINE uptr
Log2
(uptr x) {
/src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_common.h
448
inline uptr
Log2
(uptr x) {
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp
1655
int
Log2
= DemandedBits.exactLogBase2();
1656
if (
Log2
>= 0) {
1658
SDValue NewSA = TLO.DAG.getConstant(BitWidth - 1 -
Log2
, dl, ShiftVT);
2958
Known.Zero.setLowBits(
Log2
(MF.getFrameInfo().getObjectAlign(FrameIdx)));
Completed in 52 milliseconds
Indexes created Tue Mar 03 05:31:39 UTC 2026