/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | SmallVector.cpp | 114 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 D | OpenCLBuiltins.td | 783 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 D | MCAssembler.cpp | 696 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 D | llvm-stress.cpp | 562 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 D | MCFragment.h | 345 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 D | gfx_fb.h | 150 uint16_t VSize; /* Vertical Size in Lines */ member
|
/freebsd/stand/i386/libi386/ |
H A D | vbe.c | 898 *pheight = fp_info->VSize; in vbe_get_flatpanel()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | SmallVector.h | 89 size_t VSize = 0);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCasts.cpp | 1058 unsigned VSize = V->getType()->getScalarSizeInBits(); in canEvaluateZExtd() local 1060 APInt::getHighBitsSet(VSize, BitsToClear), in canEvaluateZExtd()
|