/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | TypeSize.h | 51 uint64_t MinSize; // The known minimum size. member in llvm::TypeSize 53 // of MinSize. 56 constexpr TypeSize(uint64_t MinSize, bool Scalable) in TypeSize() argument 57 : MinSize(MinSize), IsScalable(Scalable) {} in TypeSize() 63 static constexpr TypeSize Scalable(uint64_t MinSize) { in Scalable() argument 64 return TypeSize(MinSize, /*IsScalable=*/true); in Scalable() 71 return std::tie(LHS.MinSize, LHS.IsScalable) == in operator ==() 72 std::tie(RHS.MinSize, RHS.IsScalable); in operator ==() 92 return LHS.MinSize < RH in operator <() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/ |
H A D | Magic.cpp | 41 size_t MinSize = in identify_magic() local 43 if (Magic.size() < MinSize) in identify_magic() 130 size_t MinSize; in identify_magic() local 132 MinSize = sizeof(MachO::mach_header); in identify_magic() 134 MinSize = sizeof(MachO::mach_header_64); in identify_magic() 135 if (Magic.size() >= MinSize) in identify_magic() 140 size_t MinSize; in identify_magic() local 142 MinSize = sizeof(MachO::mach_header); in identify_magic() 144 MinSize = sizeof(MachO::mach_header_64); in identify_magic() 145 if (Magic.size() >= MinSize) in identify_magic() [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | points.c | 42 float size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize); in update_point_size_set() 140 if (ctx->Point.MinSize == params[0]) in _mesa_PointParameterfv() 143 ctx->Point.MinSize = params[0]; in _mesa_PointParameterfv() 216 ctx->Point.MinSize = 0.0; in _mesa_init_point()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | CombinerInfo.h | 31 bool MinSize) in CombinerInfo() 34 EnableOpt(OptEnabled), EnableOptSize(OptSize), EnableMinSize(MinSize) { in CombinerInfo() 29 CombinerInfo(bool AllowIllegalOps, bool ShouldLegalizeIllegal, LegalizerInfo *LInfo, bool OptEnabled, bool OptSize, bool MinSize) CombinerInfo() argument
|
H A D | LegalizerInfo.h | 709 /// Widen the scalar to the next power of two that is at least MinSize. 712 unsigned MinSize = 0) { in widenScalarToNextPow2() 716 LegalizeMutations::widenScalarOrEltToNextPow2(TypeIdx, MinSize)); in widenScalarToNextPow2() 720 /// at least MinSize. No effect if the scalar size is a power of two. 722 unsigned MinSize = 0) { in widenScalarOrEltToNextPow2() 726 LegalizeMutations::widenScalarOrEltToNextPow2(TypeIdx, MinSize)); in widenScalarOrEltToNextPow2()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | MachOUniversal.cpp | 132 uint32_t MinSize = sizeof(MachO::fat_header); in MachOUniversalBinary() local 134 MinSize += sizeof(MachO::fat_arch) * NumberOfObjects; in MachOUniversalBinary() 136 MinSize += sizeof(MachO::fat_arch_64) * NumberOfObjects; in MachOUniversalBinary() 141 if (Buf.size() < MinSize) { in MachOUniversalBinary() 174 if (A.getOffset() < MinSize) { in MachOUniversalBinary()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
H A D | AArch64PreLegalizerCombiner.cpp | 46 AArch64PreLegalizerCombinerInfo(bool EnableOpt, bool OptSize, bool MinSize, in AArch64PreLegalizerCombinerInfo() argument 49 /*LegalizerInfo*/ nullptr, EnableOpt, OptSize, MinSize), in AArch64PreLegalizerCombinerInfo()
|
H A D | AArch64ConditionalCompares.cpp | 767 bool MinSize; member in __anon24369::AArch64ConditionalCompares 865 if (MinSize) { in shouldConvert() 943 MinSize = MF.getFunction().hasMinSize(); in runOnMachineFunction()
|
H A D | AArch64A57FPLoadBalancing.cpp | 417 unsigned MinSize = L.front()->size() - SizeFuzz; in getAndEraseNext() local 419 if ((*I)->size() <= MinSize) { in getAndEraseNext()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | Path.cpp | 996 size_t MinSize = offsetof(COFF::BigObjHeader, UUID) + sizeof(COFF::BigObjMagic); 997 if (Magic.size() < MinSize) 1069 size_t MinSize; 1071 MinSize = sizeof(MachO::mach_header); 1073 MinSize = sizeof(MachO::mach_header_64); 1074 if (Magic.size() >= MinSize) 1079 size_t MinSize; 1081 MinSize = sizeof(MachO::mach_header); 1083 MinSize = sizeof(MachO::mach_header_64); 1084 if (Magic.size() >= MinSize) [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | CallingConvLower.cpp | 44 CCValAssign::LocInfo LocInfo, int MinSize, in HandleByVal() 49 if (MinSize > (int)Size) in HandleByVal() 50 Size = MinSize; in HandleByVal() 43 HandleByVal(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, int MinSize, int MinAlignment, ISD::ArgFlagsTy ArgFlags) HandleByVal() argument
|
H A D | TargetRegisterInfo.cpp | 307 unsigned MinSize = getRegSizeInBits(*RCA); 315 if (!RC || getRegSizeInBits(*RC) < MinSize) 332 // Bail early if we reached MinSize. We won't find a better candidate. 333 if (getRegSizeInBits(*BestRC) == MinSize)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
H A D | LazyRandomTypeCollection.cpp | 159 uint32_t MinSize = Index.toArrayIndex() + 1; in ensureCapacityFor() local 161 if (MinSize <= capacity()) in ensureCapacityFor() 164 uint32_t NewCapacity = MinSize * 3 / 2; in ensureCapacityFor()
|
/third_party/gn/src/gn/ |
H A D | pattern.h | 30 size_t MinSize() const { in MinSize() function
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | iterator_enc.c | 105 static WEBP_INLINE int MinSize(int a, int b) { return (a < b) ? a : b; } in MinSize() function 138 const int w = MinSize(pic->width - x * 16, 16); in VP8IteratorImport() 139 const int h = MinSize(pic->height - y * 16, 16); in VP8IteratorImport()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMSubtarget.cpp | 99 bool MinSize) in ARMSubtarget() 101 CPUString(CPU), OptMinSize(MinSize), IsLittle(IsLittle), in ARMSubtarget() 96 ARMSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS, const ARMBaseTargetMachine &TM, bool IsLittle, bool MinSize) ARMSubtarget() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | SmallVector.h | 207 /// element, or MinSize more elements if specified. 208 void grow(size_t MinSize = 0); 233 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { in grow() argument 238 if (NewCapacity < MinSize) in grow() 239 NewCapacity = MinSize; in grow() 300 /// least one more element or MinSize if specified. 301 void grow(size_t MinSize = 0) { in grow() 302 this->grow_pod(MinSize*sizeof(T), sizeof(T)); in grow()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | SmallVector.h | 207 /// element, or MinSize more elements if specified. 208 void grow(size_t MinSize = 0); 233 void SmallVectorTemplateBase<T, TriviallyCopyable>::grow(size_t MinSize) { in grow() argument 234 if (MinSize > UINT32_MAX) in grow() 239 NewCapacity = std::min(std::max(NewCapacity, MinSize), size_t(UINT32_MAX)); in grow() 298 /// least one more element or MinSize if specified. 299 void grow(size_t MinSize = 0) { this->grow_pod(MinSize, sizeof(T)); } in grow()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUSubtarget.cpp | 433 unsigned MinSize = 0; in makeLIDRangeMetadata() local 470 MinSize = MaxSize = mdconst::extract<ConstantInt>( in makeLIDRangeMetadata() 482 MinSize = 0; in makeLIDRangeMetadata() 487 MDNode *MaxWorkGroupSizeRange = MDB.createRange(APInt(32, MinSize), in makeLIDRangeMetadata()
|
H A D | AMDGPUInline.cpp | 119 && !Caller->hasFnAttribute(Attribute::MinSize)) in getInlineThreshold()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | ForceFunctionAttrs.cpp | 37 .Case("minsize", Attribute::MinSize) in parseAttrKind()
|
H A D | HotColdSplitting.cpp | 154 if (!F.hasFnAttribute(Attribute::MinSize)) { in markFunctionCold() 155 F.addFnAttr(Attribute::MinSize); in markFunctionCold()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | EHStreamer.cpp | 48 unsigned MinSize = LSize < RSize ? LSize : RSize; in sharedTypeIDs() local 51 for (; Count != MinSize; ++Count) in sharedTypeIDs()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_atom_rasterizer.c | 233 ctx->Point.MinSize, in st_update_rasterizer()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | Function.h | 630 bool hasMinSize() const { return hasFnAttribute(Attribute::MinSize); } in hasMinSize()
|