Searched defs:limit (Results 1 - 25 of 934) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3collections.h361 * of the integer key. Using 64 bit keys gives us a depth limit of 64 (or bit 0..63)
454 ANTLR3_UINT32 limit; member in struct:ANTLR3_TOPO_struct
488 * array will be freed too so you should use the value of limit to
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c1529 ANTLR3_UINT32 limit; local
1550 limit = (poolCount == factory->thisPool ? factory->nextVector : ANTLR3_FACTORY_VPOOL_SIZE);
1555 if (limit > 0)
1559 for (vector = 0; vector < limit; vector++)
1592 limit = (poolCount == factory->thisPool ? factory->nextVector : ANTLR3_FACTORY_VPOOL_SIZE);
1597 if (limit > 0)
1601 for (vector = 0; vector < limit; vector++)
1620 // and freed any memory for pointers the grew beyond the internal size limit.
1798 * keys in the trie. This is the trie 'depth'. The limit for
2297 topo->limit
[all...]
H A Dantlr3commontoken.c246 ANTLR3_UINT32 limit; local
260 limit = (poolCount == factory->thisPool ? factory->nextToken : ANTLR3_FACTORY_POOL_SIZE);
265 if (limit > 0)
269 for (token = 0; token < limit; token++)
/external/bison/lib/glthread/
H A Dlock.c720 unsigned int limit = old_offset + old_count - old_alloc; local
721 for (i = 0; i < limit; i++)
/external/bison/lib/
H A Dobstack.h46 would not like to put any arbitrary upper limit on the length of your
145 char *limit; /* 1 past end of this chunk */
144 char *limit; /* 1 past end of this chunk */ member in struct:_obstack_chunk
/external/blktrace/btt/
H A Doutput.c801 float limit = base + 0.4; local
806 fprintf(ofp, "%13.9lf %5.1f\n", BIT_TIME(rip->start), limit);
807 fprintf(ofp, "%13.9lf %5.1f\n", BIT_TIME(rip->end), limit);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSUtils.java42 // enforce limit checking as from a byte array
50 // enforce some limit checking
215 int limit)
218 return Streams.readAllLimited(in, limit);
213 streamToByteArray( InputStream in, int limit) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1InputStream.java21 private final int limit; field in class:ASN1InputStream
59 * Create an ASN1InputStream where no DER object will be longer than limit.
62 * @param limit maximum size of a DER encoded object.
66 int limit)
68 this(input, limit, false);
72 * Create an ASN1InputStream where no DER object will be longer than limit, and constructed
86 * Create an ASN1InputStream where no DER object will be longer than limit, and constructed
90 * @param limit maximum size of a DER encoded object.
95 int limit,
99 this.limit
64 ASN1InputStream( InputStream input, int limit) argument
93 ASN1InputStream( InputStream input, int limit, boolean lazyEvaluate) argument
320 readLength(InputStream s, int limit) argument
[all...]
H A DASN1StreamParser.java21 int limit)
24 this._limit = limit;
19 ASN1StreamParser( InputStream in, int limit) argument
H A DIndefiniteLengthInputStream.java17 int limit)
20 super(in, limit);
15 IndefiniteLengthInputStream( InputStream in, int limit) argument
H A DLimitedInputStream.java13 int limit)
16 this._limit = limit;
11 LimitedInputStream( InputStream in, int limit) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DLongArray.java440 private int degreeFrom(int limit) argument
442 int i = (limit + 62) >>> 6;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DStreams.java29 public static byte[] readAllLimited(InputStream inStr, int limit) argument
33 pipeAllLimited(inStr, limit, buf);
70 public static long pipeAllLimited(InputStream inStr, long limit, OutputStream outStr) argument
79 if (total > limit)
/external/bzip2/
H A Dbzlib_private.h406 Int32 limit [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; member in struct:__anon1746
H A Dhuffman.c170 void BZ2_hbCreateDecodeTables ( Int32 *limit, argument
190 for (i = 0; i < BZ_MAX_CODE_LEN; i++) limit[i] = 0;
195 limit[i] = vec-1;
199 base[i] = ((limit[i-1] + 1) << 1) - base[i];
/external/chromium_org/base/memory/
H A Ddiscardable_memory_manager.cc100 size_t limit = 0; local
102 limit = memory_limit_ - bytes_required;
105 limit);
176 size_t limit) {
186 if (bytes_allocated_ <= limit)
174 PurgeIfNotUsedSinceTimestampUntilUsageIsWithinLimitWithLockAcquired( TimeTicks timestamp, size_t limit) argument
/external/chromium_org/base/process/
H A Dlaunch_posix.cc374 struct rlimit limit; local
375 if (getrlimit(resource, &limit) < 0) {
377 } else if (limit.rlim_cur < limit.rlim_max) {
378 limit.rlim_cur = limit.rlim_max;
379 if (setrlimit(resource, &limit) < 0) {
/external/chromium_org/base/strings/
H A Dutf_offset_string_conversions.h108 // which is greater than |limit| with npos. Typically this is called with a
113 explicit LimitOffset(size_t limit) argument
114 : limit_(limit) {}
/external/chromium_org/base/
H A Dsys_info_freebsd.cc27 size_t limit; local
28 size_t size = sizeof(limit);
29 if (sysctlbyname("kern.ipc.shmmax", &limit, &size, NULL, 0) < 0) {
33 return limit;
H A Dsys_info_linux.cc39 uint64 limit; local
40 if (!base::StringToUint64(contents, &limit)) {
41 limit = 0;
43 if (limit > std::numeric_limits<size_t>::max()) {
44 limit = 0;
46 DCHECK(limit > 0);
47 return static_cast<size_t>(limit);
H A Dsys_info_openbsd.cc54 size_t limit; local
55 size_t size = sizeof(limit);
56 if (sysctl(mib, arraysize(mib), &limit, &size, NULL, 0) < 0) {
60 return limit;
H A Dsys_info_posix.cc61 struct rlimit limit; local
62 int result = getrlimit(RLIMIT_DATA, &limit);
67 return limit.rlim_cur == RLIM_INFINITY ? 0 : limit.rlim_cur;
/external/chromium_org/cc/test/
H A Dfake_picture_layer_tiling_client.h56 void set_skewport_extrapolation_limit_in_content_pixels(int limit) { argument
57 skewport_extrapolation_limit_in_content_pixels_ = limit;
/external/chromium_org/chrome/browser/chromeos/login/saml/
H A Dsaml_browsertest.cc651 void SetSAMLOfflineSigninTimeLimitPolicy(int limit);
725 void SAMLPolicyTest::SetSAMLOfflineSigninTimeLimitPolicy(int limit) { argument
730 new base::FundamentalValue(limit),
832 // Set the offline login time limit for SAML users to zero.
845 // Verifies that the offline login time limit does not affect a user who
855 // Remove the offline login time limit for SAML users.
861 // Verifies that when no offline login time limit is set, a user who
871 // Set the offline login time limit for SAML users to zero.
877 // Verifies that when the offline login time limit is exceeded for a user who
/external/chromium_org/chrome/browser/chromeos/
H A Dsession_length_limiter.cc26 // The minimum session time limit that can be set.
29 // The maximum session time limit that can be set.
181 // If no session length limit is set, do not start a timer.
182 int limit; local
187 !session_length_limit_pref->GetValue()->GetAsInteger(&limit)) {
191 // Clamp the session length limit to the valid range.
194 limit, kSessionLengthLimitMinMs), kSessionLengthLimitMaxMs));
200 // Log out the user immediately if the session length limit has been reached
207 // Set a timer to log out the user when the session length limit is reached.

Completed in 431 milliseconds

1234567891011>>