HomeSort by relevance Sort by last modified time
    Searched refs:SizeLimit (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Target/Hexagon/
HexagonEarlyIfConv.cpp 92 cl::opt<unsigned> SizeLimit("eif-limit", cl::init(6), cl::Hidden,
512 if (TotalIn >= SizeLimit+Spare)
540 if (TotalIn+TotalPh >= SizeLimit+Spare)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winldap.h 380 WINLDAPAPI ULONG LDAPAPI ldap_search_extW(LDAP *ld,const PWCHAR base,ULONG scope,const PWCHAR filter,PWCHAR attrs[],ULONG attrsonly,PLDAPControlW *ServerControls,PLDAPControlW *ClientControls,ULONG TimeLimit,ULONG SizeLimit,ULONG *MessageNumber);
381 WINLDAPAPI ULONG LDAPAPI ldap_search_extA(LDAP *ld,const PCHAR base,ULONG scope,const PCHAR filter,PCHAR attrs[],ULONG attrsonly,PLDAPControlA *ServerControls,PLDAPControlA *ClientControls,ULONG TimeLimit,ULONG SizeLimit,ULONG *MessageNumber);
382 WINLDAPAPI ULONG LDAPAPI ldap_search_ext_sW(LDAP *ld,const PWCHAR base,ULONG scope,const PWCHAR filter,PWCHAR attrs[],ULONG attrsonly,PLDAPControlW *ServerControls,PLDAPControlW *ClientControls,struct l_timeval *timeout,ULONG SizeLimit,LDAPMessage **res);
383 WINLDAPAPI ULONG LDAPAPI ldap_search_ext_sA(LDAP *ld,const PCHAR base,ULONG scope,const PCHAR filter,PCHAR attrs[],ULONG attrsonly,PLDAPControlA *ServerControls,PLDAPControlA *ClientControls,struct l_timeval *timeout,ULONG SizeLimit,LDAPMessage **res);
397 WINLDAPAPI ULONG LDAPAPI ldap_search_ext(LDAP *ld,PCHAR base,ULONG scope,PCHAR filter,PCHAR attrs[],ULONG attrsonly,PLDAPControlA *ServerControls,PLDAPControlA *ClientControls,ULONG TimeLimit,ULONG SizeLimit,ULONG *MessageNumber);
398 WINLDAPAPI ULONG LDAPAPI ldap_search_ext_s(LDAP *ld,PCHAR base,ULONG scope,PCHAR filter,PCHAR attrs[],ULONG attrsonly,PLDAPControlA *ServerControls,PLDAPControlA *ClientControls,struct l_timeval *timeout,ULONG SizeLimit,LDAPMessage **res);
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 328 public void SizeLimit()
330 // Have to use a Stream rather than ByteString.CreateCodedInput as SizeLimit doesn't
  /external/clang/lib/CodeGen/
CGDecl.cpp 895 uint64_t SizeLimit = 32;
897 return GlobalSize > SizeLimit &&
    [all...]
TargetInfo.cpp     [all...]
  /external/protobuf/csharp/src/Google.Protobuf/
CodedInputStream.cs 115 private readonly int sizeLimit;
176 this.sizeLimit = DefaultSizeLimit;
188 internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize, int sizeLimit, int recursionLimit)
191 if (sizeLimit <= 0)
193 throw new ArgumentOutOfRangeException("sizeLimit", "Size limit must be positive");
199 this.sizeLimit = sizeLimit;
214 /// <param name="sizeLimit">The total limit of data to read from the stream.</param>
218 public static CodedInputStream CreateWithLimits(Stream input, int sizeLimit, int recursionLimit)
220 return new CodedInputStream(input, new byte[BufferSize], 0, 0, sizeLimit, recursionLimit);
    [all...]

Completed in 123 milliseconds