Searched refs:Width (Results 151 - 175 of 184) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp3008 Constant *getPclmulMask(IRBuilder<> &IRB, unsigned Width, bool OddElements) {
3010 for (unsigned X = OddElements ? 1 : 0; X < Width; X += 2) {
3029 unsigned Width = I.getArgOperand(0)->getType()->getVectorNumElements();
3035 getPclmulMask(IRB, Width, Imm & 0x01));
3038 getPclmulMask(IRB, Width, Imm & 0x10));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1888 /// \param[in] Width the element width in bytes, could be 2/4/8/16 (HalfWord/
1893 static bool isNByteElemShuffleMask(ShuffleVectorSDNode *N, unsigned Width, argument
1895 assert((Width == 2 || Width == 4 || Width == 8 || Width == 16) &&
1899 unsigned NumOfElem = 16 / Width;
1900 unsigned MaskVal[16]; // Width is never greater than 16
1902 MaskVal[0] = N->getMaskElt(i * Width);
1903 if ((StepLen == 1) && (MaskVal[0] % Width)) {
[all...]
H A DPPCInstrInfo.cpp4262 // memory width. Width is the size of memory that is being loaded/stored.
4265 unsigned &Width, const TargetRegisterInfo *TRI) const {
4278 Width = (*LdSt.memoperands_begin())->getSize();
4293 // Retrieve the base register, offset from the base register and width. Width
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h278 #define FIELD(Name, Width, Merge) \
279 unsigned Name : Width;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp1132 unsigned Width =
1134 Pad += Width;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h605 AST_MATCHER_P(FieldDecl, hasBitWidth, unsigned, Width) {
607 Node.getBitWidthValue(Finder->getASTContext()) == Width;
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp59 ValueSizeInBits = ValueTI.Width;
63 AtomicSizeInBits = AtomicTI.Width;
H A DTargetInfo.cpp3936 uint64_t Width = Info.Width;
3990 if (Width > 64 || !llvm::isPowerOf2_64(Width))
3994 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), Width));
4111 uint64_t Width = getContext().getTypeSize(Ty);
4112 IsIndirect = Width > 64 || !llvm::isPowerOf2_64(Width);
H A DCGDebugInfo.cpp1286 SizeInBits = TI.Width;
4364 fieldType = DBuilder.createPointerType(fieldType, PtrInfo.Width);
4366 PtrInfo.Width, Align, offsetInBits,
H A DCGExprScalar.cpp896 unsigned Width = CGF.getContext().getIntWidth(DstType); local
899 APSInt Min = APSInt::getMinValue(Width, Unsigned);
911 APSInt Max = APSInt::getMaxValue(Width, Unsigned);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp2170 unsigned Width = cast<IntegerType>(UDivExpr->getType())->getBitWidth(); local
2171 return DL.isIllegalInteger(Width);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp1059 writtenBS.Width = getTypeSpecWidth();
H A DSemaDeclObjC.cpp3155 if (LeftTI.Width != RightTI.Width)
3212 if (LeftTI.Width != RightTI.Width)
H A DSemaExpr.cpp3658 unsigned bit_width = Context.getTypeInfo(Ty).Width;
3746 unsigned Width = 0; local
3751 Width = 8;
3754 Width = Literal.MicrosoftInteger;
3755 Ty = Context.getIntTypeForBitwidth(Width,
3771 Width = IntSize;
3802 Width = LongSize;
3820 Width = LongLongSize;
3829 Width = Context.getTargetInfo().getLongLongWidth();
3832 if (ResultVal.getBitWidth() != Width)
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp974 getLockFreeValue(TI.get##Type##Width(), \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6202 APInt Width; local
6204 Width = NegC->getAPIntValue();
6217 Width = PosC->getAPIntValue() + NegC->getAPIntValue();
6223 // Now we just need to check that EltSize & Mask == Width & Mask.
6226 return Width.getLoBits(MaskLoBits) == 0;
6227 return Width == EltSize;
6547 unsigned Width = ByteOffsets.size(); local
6548 if (Width < 2)
6552 for (unsigned i = 0; i < Width; i++) {
6554 LittleEndian &= CurrentByteOffset == LittleEndianByteAt(Width,
6611 unsigned Width = Stores.size(); local
14910 unsigned Width = User->getValueSizeInBits(0); local
[all...]
/freebsd-11-stable/usr.sbin/acpi/acpidump/
H A Dacpi.c1084 printf("\tHost Address Width=%d\n", dmar->Width + 1);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4376 unsigned int Width, bool IsSigned,
4380 .convertToInteger(Input, Width, IsSigned, RM, IsExact);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp780 unsigned Width = SplatBits.getBitWidth(); local
781 while (Width > 8) {
782 unsigned HalfSize = Width / 2;
791 Width = HalfSize;
794 SplatBitSize = Width;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp6138 BitCastBuffer(CharUnits Width, bool TargetIsLittleEndian)
6139 : Bytes(Width.getQuantity()),
6143 bool readObject(CharUnits Offset, CharUnits Width,
6145 for (CharUnits I = Offset, E = Offset + Width; I != E; ++I) {
6302 CharUnits Width = Info.Ctx.getTypeSizeInChars(Ty);
6303 SmallVector<unsigned char, 8> Bytes(Width.getQuantity());
6304 llvm::StoreIntToMemory(Val, &*Bytes.begin(), Width.getQuantity());
H A DExpr.cpp264 if (T->isIntegralOrEnumerationType() && Context.getTypeInfo(T).Width <= 64)
945 assert(V.getBitWidth() == C.getTypeInfo(type).Width &&
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp2447 SDValue Width = DAG.getConstant(ValBytes*8, dl, MVT::i32); local
2452 {VecR, ValR, Width, Idx});
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1673 #define FIELD(Name, Width, Merge) \
1770 #define FIELD(Name, Width, Merge) Merge(Name)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp2406 unsigned Width = LT.second.getVectorNumElements(); local
2407 Index = Index % Width;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp296 unsigned Width; local
297 if (Value.getAsInteger(10, Width)) {

Completed in 718 milliseconds

12345678