Searched defs:limit (Results 1 - 25 of 451) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/compiler/
H A Dregress-max-locals-for-osr.js30 var limit = %RunningInSimulator() ? 10000 : 10000000; variable
40 for (a1 = 0; a1 < limit; a1++) a2 = 23;
/external/chromium/base/
H A Dsys_info_freebsd.cc27 size_t limit; local
28 size_t size = sizeof(limit);
29 sysctlbyname("kern.ipc.shmmax", &limit, &size, NULL, 0);
30 return limit;
H A Dsys_info_linux.cc25 static size_t limit; local
30 limit = strtoul(contents.c_str(), NULL, 0);
33 return limit;
H A Dutf_offset_string_conversions.h58 // which is equal to or greater than |limit| with npos.
61 explicit LimitOffset(size_t limit) argument
62 : limit_(limit) {}
/external/qemu/hw/
H A Dgoldfish_nand.h20 uint64_t limit; member in struct:__anon9621
/external/e2fsprogs/lib/ext2fs/
H A Dind_block.c28 int limit = fs->blocksize >> 2; local
41 for (i = 0; i < limit; i++, block_nr++)
52 int limit = fs->blocksize >> 2; local
60 for (i = 0; i < limit; i++, block_nr++)
/external/icu4c/i18n/unicode/
H A Dutrans.h102 * as context. The second region, [start, limit), defines what
110 * <p>contextStart <= start <= limit <= contextLimit
157 int32_t limit; member in struct:UTransPosition
368 * limit</code>.
369 * @param limit pointer to the ending index, exclusive; <code>start <=
370 * limit <= repFunc->length(rep)</code>. Upon return, *limit will
371 * contain the new limit index. The text previously occupying
372 * <code>[start, limit)</code> has been transliterated, possibly to a
374 * </code><em>new-limit</e
[all...]
/external/icu4c/tools/gentest/
H A Dgenres32.c27 incKey(char *key, char *limit) { argument
30 while(limit>key) {
31 c=*--limit;
33 *limit='1';
36 *limit='o';
51 char *limit; local
70 /* find the limit of the key string */
71 for(limit=key; *limit!=0; ++limit) {
[all...]
/external/llvm/lib/Support/
H A DMemoryObject.cpp21 uint64_t limit = getBase() + getExtent(); local
23 if (current + size > limit)
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DLimitedInputStream.java13 int limit)
16 this._limit = limit;
11 LimitedInputStream( InputStream in, int limit) argument
H A DASN1StreamParser.java20 int limit)
23 this._limit = limit;
18 ASN1StreamParser( InputStream in, int limit) argument
H A DIndefiniteLengthInputStream.java17 int limit)
20 super(in, limit);
15 IndefiniteLengthInputStream( InputStream in, int limit) argument
/external/icu4c/common/
H A Dappendable.cpp39 const UChar *limit=s+length; local
44 } while(s<limit);
H A Dunifilt.cpp41 int32_t limit,
44 if (offset < limit &&
49 if (offset > limit &&
60 if (incremental && offset == limit) {
39 matches(const Replaceable& text, int32_t& offset, int32_t limit, UBool incremental) argument
H A Dpatternprops.cpp180 int32_t limit=length; local
181 while(start<limit && isWhiteSpace(s[start])) {
184 if(start<limit) {
185 // There is non-white space at start; we will not move limit below that,
186 // so we need not test start<limit in the loop.
187 while(isWhiteSpace(s[limit-1])) {
188 --limit;
191 length=limit-start;
200 const UChar *limit=s+length; local
205 } while(s<limit);
[all...]
/external/icu4c/i18n/
H A Ducol_bld.h43 uint32_t byteSize; uint32_t start; uint32_t limit; member in struct:__anon5344
/external/icu4c/layout/
H A DScriptAndLanguage.cpp50 le_uint16 limit = ((SWAPW(scriptRecordArray[0].offset) - sizeof(ScriptListTable)) / sizeof(scriptRecordArray)) + ANY_NUMBER; local
53 if (count > limit) {
55 // because limit may still be too large.
56 for(le_int32 s = 0; s < limit; s += 1) {
/external/iptables/include/linux/netfilter/
H A Dxt_connlimit.h19 unsigned int limit; member in struct:xt_connlimit_info
/external/oprofile/libregex/
H A Dop_regex.h42 * @param limit limit on number of search and replace done
43 * @param limit_defs_expansion limit on number of expansion done
49 regular_expression_replace(size_t limit = 100,
75 * Execute loop at max limit time on the set of regular expression
106 // don't increase too, it have direct impact on performance. This limit
113 size_t limit; member in class:regular_expression_replace
/external/oprofile/module/x86/
H A Dop_apic.h55 u16 limit; member in struct:_descr
/external/stlport/test/unit/
H A Dpartition_test.cpp32 less_n(int limit, size_t &nb_calls) argument
33 : _limit(limit), _nb_calls(nb_calls) {}
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKBackForwardList.cpp69 WKArrayRef WKBackForwardListCopyBackListWithLimit(WKBackForwardListRef listRef, unsigned limit) argument
71 return toAPI(toImpl(listRef)->backListAsImmutableArrayWithLimit(limit).releaseRef());
74 WKArrayRef WKBackForwardListCopyForwardListWithLimit(WKBackForwardListRef listRef, unsigned limit) argument
76 return toAPI(toImpl(listRef)->forwardListAsImmutableArrayWithLimit(limit).releaseRef());
/external/bouncycastle/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/chromium/sdch/open-vcdiff/src/
H A Dvarint_bigendian.cc32 // past limit. Returns RESULT_ERROR if the value parsed
33 // does not fit in a non-negative signed integer, or if limit is NULL.
38 SignedIntegerType VarintBE<SignedIntegerType>::Parse(const char* limit, argument
40 if (!limit) {
44 for (const char* parse_ptr = *varint_ptr; parse_ptr < limit; ++parse_ptr) {
/external/guava/guava/src/com/google/common/io/
H A DLimitInputStream.java42 * @param limit the maximum number of bytes to be read
44 public LimitInputStream(InputStream in, long limit) { argument
47 Preconditions.checkArgument(limit >= 0, "limit must be non-negative");
48 left = limit;

Completed in 433 milliseconds

1234567891011>>