reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/DAGCombiner.cpp
 2576       IsFlip = (Const->getAPIntValue() & 0x01) == 1;
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
 3348       (~N1Known.Zero & 0x01) == ~N1Known.Zero)
 3354     if ((~N0Known.Zero & 0x01) == ~N0Known.Zero)
lib/IR/ConstantFold.cpp
  273     if ((ShAmt & 7) != 0)
  296     if ((ShAmt & 7) != 0)
lib/Target/X86/X86ISelLowering.cpp
14824   bool IsLowZero = (Zeroable & 0x3) == 0x3;
14825   bool IsHighZero = (Zeroable & 0xc) == 0xc;
16271   if (WidenedMask[0] == 0 && (Zeroable & 0xf0) == 0xf0 &&
16272       (WidenedMask[1] == 1 || (Zeroable & 0x0c) == 0x0c)) {
16273     unsigned NumElts = ((Zeroable & 0x0c) == 0x0c) ? 2 : 4;
41775     APInt MaskedVal1 = Val1 & 0xFFFF;
tools/clang/lib/Sema/SemaChecking.cpp
 6283     if ((Value & 0xFF) != 0)
 6335       (Result > 0 && Result < 0x10000 && (Result & 0xFF) == 0xFF))
unittests/ADT/APIntTest.cpp
  548   EXPECT_EQ(A1 & E1, E1);
  549   EXPECT_EQ(A1 & 0, 0);
  550   EXPECT_EQ(A1 & 1, 1);
  551   EXPECT_EQ(A1 & 5, 5);
  552   EXPECT_EQ(A1 & UINT64_MAX, E1);
  576   EXPECT_EQ(A2 & N, N);
  577   EXPECT_EQ(A2 & 0, 0);
  578   EXPECT_EQ(A2 & 1, 1);
  579   EXPECT_EQ(A2 & 5, 1);
  580   EXPECT_EQ(A2 & UINT64_MAX, N);
  799     APInt AndLK = Ten & 0xc;
  806     APInt AndRK = getRValue("A", RawDataL) & 0xc;