Home
last modified time | relevance | path

Searched refs:VSize (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSmallVector.cpp122 size_t VSize = 0) { in replaceAllocation() argument
124 if (VSize) in replaceAllocation()
125 memcpy(NewEltsReplace, NewElts, VSize * TSize); in replaceAllocation()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td787 foreach VSize = [3, 4] in {
788 …def : Builtin<name, [VectorType<Float, VSize>, VectorType<Float, VSize>, VectorType<Float, VSize>]…
789 …def : Builtin<name, [VectorType<Double, VSize>, VectorType<Double, VSize>, VectorType<Double, VSiz…
790 …def : Builtin<name, [VectorType<Half, VSize>, VectorType<Half, VSize>, VectorType<Half, VSize>], A…
854 foreach VSize = [2, 3, 4, 8, 16] in {
855 foreach name = ["vload" # VSize] in {
856 … def : Builtin<name, [VectorType<Char, VSize>, Size, PointerType<ConstType<Char>, AS>], Attr.Pure>;
857 …def : Builtin<name, [VectorType<UChar, VSize>, Size, PointerType<ConstType<UChar>, AS>], Attr.Pure…
858 …def : Builtin<name, [VectorType<Short, VSize>, Size, PointerType<ConstType<Short>, AS>], Attr.Pure…
859 …def : Builtin<name, [VectorType<UShort, VSize>, Size, PointerType<ConstType<UShort>, AS>], Attr.Pu…
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp598 unsigned VSize = FF.getValueSize(); in writeFragment() local
601 assert(0 < VSize && VSize <= MaxChunkSize && "Illegal fragment fill size"); in writeFragment()
604 for (unsigned I = 0; I != VSize; ++I) { in writeFragment()
605 unsigned index = Endian == llvm::endianness::little ? I : (VSize - I - 1); in writeFragment()
608 for (unsigned I = VSize; I < MaxChunkSize; ++I) in writeFragment()
609 Data[I] = Data[I - VSize]; in writeFragment()
612 const unsigned NumPerChunk = MaxChunkSize / VSize; in writeFragment()
614 const unsigned ChunkSize = VSize * NumPerChunk; in writeFragment()
/freebsd/contrib/llvm-project/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp549 unsigned VSize = VTy->getScalarType()->getPrimitiveSizeInBits(); in Act() local
553 if ((getRandom() & 1) && VSize == DestSize) { in Act()
560 if (VSize > DestSize) { in Act()
564 assert(VSize < DestSize && "Different int types with the same size?"); in Act()
593 if (VSize > DestSize) { in Act()
596 } else if (VSize < DestSize) { in Act()
/freebsd/stand/common/
H A Dgfx_fb.h150 uint16_t VSize; /* Vertical Size in Lines */ member
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSection.h530 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues, in MCFillFragment() argument
532 : MCFragment(FT_Fill, false), ValueSize(VSize), Value(Value), in MCFillFragment()
/freebsd/stand/i386/libi386/
H A Dvbe.c898 *pheight = fp_info->VSize; in vbe_get_flatpanel()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1112 unsigned VSize = V->getType()->getScalarSizeInBits(); in canEvaluateZExtd() local
1114 APInt::getHighBitsSet(VSize, BitsToClear), in canEvaluateZExtd()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp9118 unsigned VSize = SrcTy.getSizeInBits(); in lowerBitreverse() local
9121 if (SrcTy.isVector() && (VSize % 8 == 0) && in lowerBitreverse()
9123 {LLT::fixed_vector(VSize / 8, 8), in lowerBitreverse()
9124 LLT::fixed_vector(VSize / 8, 8)}}))) { in lowerBitreverse()
9128 LLT VTy = LLT::fixed_vector(VSize / 8, 8); in lowerBitreverse()