HomeSort by: relevance | last modified time | path
    Searched refs:Shifts (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/
common.d 225 alias Shifts = AliasSeq!(1, 2, 4, 8, 16);
227 alias Shifts = AliasSeq!(1, 2, 4, 8, 16, 32);
228 foreach (i; Shifts)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULegalizerInfo.cpp 1126 // with. These will ultimately produce 32-bit scalar shifts to extract the
1331 auto &Shifts = getActionDefinitionsBuilder({G_SHL, G_LSHR, G_ASHR})
1335 Shifts.legalFor({{S16, S16}, {V2S16, V2S16}})
1338 Shifts.legalFor({{S16, S16}});
1341 Shifts.widenScalarIf(
1350 Shifts.maxScalarIf(typeIs(0, S16), 1, S16);
1351 Shifts.clampScalar(1, S32, S32);
1352 Shifts.clampScalar(0, S16, S64);
1353 Shifts.widenScalarToNextPow2(0, 16);
1363 Shifts.clampScalar(1, S32, S32)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 5024 SmallVector<SDValue, 16> Shifts, Factors;
5040 Shifts.push_back(DAG.getConstant(Shift, dl, ShSVT));
5051 Shift = DAG.getBuildVector(ShVT, dl, Shifts);
5054 assert(Shifts.size() == 1 && Factors.size() == 1 &&
5057 Shift = DAG.getSplatVector(ShVT, dl, Shifts[0]);
5061 Shift = Shifts[0];
5126 SmallVector<SDValue, 16> MagicFactors, Factors, Shifts, ShiftMasks;
5153 Shifts.push_back(DAG.getConstant(magics.s, dl, ShSVT));
5161 // Collect the shifts / magic values from each element.
5169 Shift = DAG.getBuildVector(ShVT, dl, Shifts);
    [all...]
SelectionDAG.cpp 2957 unsigned Shifts = IsLE ? i : SubScale - 1 - i;
2958 Known.One |= Known2.One.zext(BitWidth).shl(SubBitWidth * Shifts);
2959 Known.Zero |= Known2.Zero.zext(BitWidth).shl(SubBitWidth * Shifts);
2981 unsigned Shifts = IsLE ? i : NumElts - 1 - i;
2982 unsigned Offset = (Shifts % SubScale) * BitWidth;
5131 // TODO: Handle oversized shifts.
5634 "Shifts only work on integers");
5645 // Always fold shifts of i1 values so the code generator doesn't need to
DAGCombiner.cpp 3837 // (2) multiply-by-(power-of-2 +/- power-of-2) into shifts and add/sub.
5484 // Do we actually prefer shifts over mask?
5911 if (SDValue Shifts = unfoldExtremeBitClearingToShifts(N))
5912 return Shifts;
6546 /// InstCombine merged some outside op with one of the shifts from
6677 // for two opposing shifts shift1 and shift2 and a value X with OpBits bits:
6685 // The IsRotate flag should be set when the LHS of both shifts is the same.
6798 // shifts of Shifted. If Neg == <operand size> - Pos then the OR reduces
6825 // shifts of N0 + N1. If Neg == <operand size> - Pos then the OR reduces
6959 return SDValue(); // Shifts must disagree
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
interval.d 1096 Shifts the interval forward or backwards in time by the given duration
1097 (a positive duration shifts the interval forward; a negative duration
1098 shifts it backward). Effectively, it does $(D begin += duration) and
1140 Shifts the interval forward or backwards in time by the given number
1141 of years and/or months (a positive number of years and months shifts
1142 the interval forward; a negative number shifts it backward).
3901 Shifts the `begin` of this interval forward or backwards in time by
3902 the given duration (a positive duration shifts the interval forward; a
3903 negative duration shifts it backward). Effectively, it does
3932 Shifts the `begin` of this interval forward or backwards in tim
    [all...]

Completed in 57 milliseconds