Home
last modified time | relevance | path

Searched refs:SizeLimit (Results 1 – 13 of 13) sorted by relevance

/external/boringssl/src/util/fipstools/acvp/acvptool/acvp/
Dacvp.go45 SizeLimit uint64 member
278 SizeLimit int64 `json:"sizeConstraint"`
291 if reply.SizeLimit <= 0 {
294 server.SizeLimit = uint64(reply.SizeLimit)
/external/boringssl/src/util/fipstools/acvp/acvptool/
Dacvp.go534 if server.SizeLimit > 0 && resultSize >= server.SizeLimit {
537 …oo much given server limit of %d bytes. Using large-upload process.", resultSize, server.SizeLimit)
/external/llvm/lib/Target/Hexagon/
DHexagonEarlyIfConv.cpp92 cl::opt<unsigned> SizeLimit("eif-limit", cl::init(6), cl::Hidden, variable
512 if (TotalIn >= SizeLimit+Spare) in isProfitable()
540 if (TotalIn+TotalPh >= SizeLimit+Spare) in isProfitable()
/external/llvm-project/llvm/lib/Target/Hexagon/
DHexagonEarlyIfConv.cpp103 static cl::opt<unsigned> SizeLimit("eif-limit", cl::init(6), cl::Hidden, variable
558 if (TotalIn >= SizeLimit+Spare) in isProfitable()
586 if (TotalIn+TotalPh >= SizeLimit+Spare) in isProfitable()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonEarlyIfConv.cpp103 static cl::opt<unsigned> SizeLimit("eif-limit", cl::init(6), cl::Hidden, variable
558 if (TotalIn >= SizeLimit+Spare) in isProfitable()
586 if (TotalIn+TotalPh >= SizeLimit+Spare) in isProfitable()
/external/protobuf/csharp/src/Google.Protobuf/
DCodedInputStream.cs256 public int SizeLimit { get { return sizeLimit; } } property in Google.Protobuf.CodedInputStream
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DCodedInputStreamTest.cs328 public void SizeLimit() in SizeLimit() method in Google.Protobuf.CodedInputStreamTest
/external/llvm-project/clang/lib/CodeGen/
DCGDecl.cpp969 uint64_t SizeLimit = 32; in shouldUseBZeroPlusStoresToInitialize() local
971 return GlobalSize > SizeLimit && in shouldUseBZeroPlusStoresToInitialize()
983 uint64_t SizeLimit = 32; in shouldUseMemSetToInitialize() local
984 if (GlobalSize <= SizeLimit) in shouldUseMemSetToInitialize()
DTargetInfo.cpp9212 ABIArgInfo classifyType(QualType RetTy, unsigned SizeLimit) const;
9326 SparcV9ABIInfo::classifyType(QualType Ty, unsigned SizeLimit) const { in classifyType()
9334 if (Size > SizeLimit) in classifyType()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DCodedInputStreamTest.cs342 public void SizeLimit() in SizeLimit() method in Google.Protobuf.CodedInputStreamTest
/external/clang/lib/CodeGen/
DCGDecl.cpp895 uint64_t SizeLimit = 32; in shouldUseMemSetPlusStoresToInitialize() local
897 return GlobalSize > SizeLimit && in shouldUseMemSetPlusStoresToInitialize()
DTargetInfo.cpp6991 ABIArgInfo classifyType(QualType RetTy, unsigned SizeLimit) const;
7105 SparcV9ABIInfo::classifyType(QualType Ty, unsigned SizeLimit) const { in classifyType()
7113 if (Size > SizeLimit) in classifyType()
/external/llvm-project/llvm/lib/ObjectYAML/
DELFEmitter.cpp62 ContiguousBlobAccumulator(uint64_t BaseOffset, uint64_t SizeLimit) in ContiguousBlobAccumulator() argument
63 : InitialOffset(BaseOffset), MaxSize(SizeLimit), OS(Buf) {} in ContiguousBlobAccumulator()