HomeSort by relevance Sort by last modified time
    Searched defs:Mask (Results 101 - 125 of 142) sorted by null

1 2 3 45 6

  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 370 // Check if the AND mask is an immediate of the form: 000.....1111111100
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 62 // instructions that for the IT block. Firstcond and Mask correspond to the
64 void setITState(char Firstcond, char Mask) {
67 unsigned NumTZ = countTrailingZeros<uint8_t>(Mask);
69 assert(NumTZ <= 3 && "Invalid IT mask!");
72 bool T = ((Mask >> Pos) & 1) == CondBit0;
4911 unsigned mask = fieldFromInstruction(Insn, 0, 4); local
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 116 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
117 /// rotate and mask opcode and mask operation.
118 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask,
475 bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
484 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
491 // apply shift left to mask if it comes first
492 if (isShiftMask) Mask = Mask << Shift;
496 // apply shift right to mask if it comes firs
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 133 // True if LHS u> RHS and RHS == high-bit-mask - 1
137 // True if LHS u>= RHS and RHS == high-bit-mask (2^7, 2^15, 2^31, etc)
    [all...]
  /external/v8/src/crankshaft/
hydrogen-instructions.cc 181 int32_t Range::Mask() const {
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
XIproto.h 57 #define Mask CARD32
83 Mask mask; member in struct:_XExtEventInfo
92 Mask mask; member in struct:tmask
870 CARD32 mask B32;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XIproto.h 57 #define Mask CARD32
83 Mask mask; member in struct:_XExtEventInfo
92 Mask mask; member in struct:tmask
870 CARD32 mask B32;
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp     [all...]
CGExpr.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp 68 "Number of and mask instructions added to form ext loads");
69 STATISTIC(NumAndUses, "Number of uses of and mask instructions optimized");
241 // If there is a mask, compare against zero, and branch that can be combined
242 // into a single target instruction, push the mask and compare into branch
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 570 SDValue Mask = N->getOperand(0);
574 Mask = PromoteTargetBoolean(Mask, OpTy);
578 LHS.getValueType(), Mask, LHS, RHS);
    [all...]
LegalizeVectorTypes.cpp 317 // Vector read from all ones, scalar expects a single 1 so mask.
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp 62 // If I is a shifted mask, set the size (Size) and the first bit of the
63 // mask (Pos), and return true.
695 SDValue ShiftRight = N->getOperand(0), Mask = N->getOperand(1);
710 // Op's second operand must be a shifted mask.
711 if (!(CN = dyn_cast<ConstantSDNode>(Mask)) ||
715 // Return if the shifted mask does not start at bit 0 or the sum of its size
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
X.h 70 typedef unsigned long Mask;
86 typedef CARD32 Mask;
147 /* Input Event Masks. Used as event-mask window attribute and as arguments
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
X.h 70 typedef unsigned long Mask;
86 typedef CARD32 Mask;
147 /* Input Event Masks. Used as event-mask window attribute and as arguments
  /external/clang/include/clang/AST/
Expr.h     [all...]
Type.h 158 /// The width of the "fast" qualifier mask.
161 /// The fast qualifier mask.
165 Qualifiers() : Mask(0) {}
171 if (!(L.Mask & ~CVRMask) && !(R.Mask & ~CVRMask)) {
173 Q.Mask = L.Mask & R.Mask;
174 L.Mask &= ~Q.Mask;
    [all...]

Completed in 1008 milliseconds

1 2 3 45 6