Home
last modified time | relevance | path

Searched refs:MinSize (Results 1 - 25 of 47) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DTypeSize.h51 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 DMagic.cpp41 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 Dpoints.c42 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 DCombinerInfo.h31 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 DLegalizerInfo.h709 /// 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 DMachOUniversal.cpp132 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 DAArch64PreLegalizerCombiner.cpp46 AArch64PreLegalizerCombinerInfo(bool EnableOpt, bool OptSize, bool MinSize, in AArch64PreLegalizerCombinerInfo() argument
49 /*LegalizerInfo*/ nullptr, EnableOpt, OptSize, MinSize), in AArch64PreLegalizerCombinerInfo()
H A DAArch64ConditionalCompares.cpp767 bool MinSize; member in __anon24369::AArch64ConditionalCompares
865 if (MinSize) { in shouldConvert()
943 MinSize = MF.getFunction().hasMinSize(); in runOnMachineFunction()
H A DAArch64A57FPLoadBalancing.cpp417 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 DPath.cpp996 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 DCallingConvLower.cpp44 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 DTargetRegisterInfo.cpp307 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 DLazyRandomTypeCollection.cpp159 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 Dpattern.h30 size_t MinSize() const { in MinSize() function
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Diterator_enc.c105 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 DARMSubtarget.cpp99 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 DSmallVector.h207 /// 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 DSmallVector.h207 /// 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 DAMDGPUSubtarget.cpp433 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 DAMDGPUInline.cpp119 && !Caller->hasFnAttribute(Attribute::MinSize)) in getInlineThreshold()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DForceFunctionAttrs.cpp37 .Case("minsize", Attribute::MinSize) in parseAttrKind()
H A DHotColdSplitting.cpp154 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 DEHStreamer.cpp48 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 Dst_atom_rasterizer.c233 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 DFunction.h630 bool hasMinSize() const { return hasFnAttribute(Attribute::MinSize); } in hasMinSize()

Completed in 20 milliseconds

12