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.cpp114 size_t VSize) { in replaceAllocation() argument
116 if (VSize) in replaceAllocation()
117 memcpy(NewEltsReplace, NewElts, VSize * TSize); in replaceAllocation()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td783 foreach VSize = [3, 4] in {
784 …def : Builtin<name, [VectorType<Float, VSize>, VectorType<Float, VSize>, VectorType<Float, VSize>]…
785 …def : Builtin<name, [VectorType<Double, VSize>, VectorType<Double, VSize>, VectorType<Double, VSiz…
786 …def : Builtin<name, [VectorType<Half, VSize>, VectorType<Half, VSize>, VectorType<Half, VSize>], A…
850 foreach VSize = [2, 3, 4, 8, 16] in {
851 foreach name = ["vload" # VSize] in {
852 … def : Builtin<name, [VectorType<Char, VSize>, Size, PointerType<ConstType<Char>, AS>], Attr.Pure>;
853 …def : Builtin<name, [VectorType<UChar, VSize>, Size, PointerType<ConstType<UChar>, AS>], Attr.Pure…
854 …def : Builtin<name, [VectorType<Short, VSize>, Size, PointerType<ConstType<Short>, AS>], Attr.Pure…
855 …def : Builtin<name, [VectorType<UShort, VSize>, Size, PointerType<ConstType<UShort>, AS>], Attr.Pu…
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp696 unsigned VSize = FF.getValueSize(); in writeFragment() local
699 assert(0 < VSize && VSize <= MaxChunkSize && "Illegal fragment fill size"); in writeFragment()
702 for (unsigned I = 0; I != VSize; ++I) { in writeFragment()
703 unsigned index = Endian == llvm::endianness::little ? I : (VSize - I - 1); in writeFragment()
706 for (unsigned I = VSize; I < MaxChunkSize; ++I) in writeFragment()
707 Data[I] = Data[I - VSize]; in writeFragment()
710 const unsigned NumPerChunk = MaxChunkSize / VSize; in writeFragment()
712 const unsigned ChunkSize = VSize * NumPerChunk; in writeFragment()
/freebsd/contrib/llvm-project/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp562 unsigned VSize = VTy->getScalarType()->getPrimitiveSizeInBits(); in Act() local
566 if ((getRandom() & 1) && VSize == DestSize) { in Act()
573 if (VSize > DestSize) { in Act()
577 assert(VSize < DestSize && "Different int types with the same size?"); in Act()
603 if (VSize > DestSize) { in Act()
606 } else if (VSize < DestSize) { in Act()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFragment.h345 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues, in MCFillFragment() argument
347 : MCFragment(FT_Fill, false), ValueSize(VSize), Value(Value), in MCFillFragment()
/freebsd/stand/common/
H A Dgfx_fb.h150 uint16_t VSize; /* Vertical Size in Lines */ member
/freebsd/stand/i386/libi386/
H A Dvbe.c898 *pheight = fp_info->VSize; in vbe_get_flatpanel()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h89 size_t VSize = 0);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1058 unsigned VSize = V->getType()->getScalarSizeInBits(); in canEvaluateZExtd() local
1060 APInt::getHighBitsSet(VSize, BitsToClear), in canEvaluateZExtd()