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

1234567891011>>

/external/v8/test/mjsunit/compiler/
H A Dosr-regress-max-locals.js30 var limit = %RunningInSimulator() ? 10000 : 10000000; variable
40 for (a1 = 0; a1 < limit; a1++) a2 = 23;
/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/icu/icu4c/source/i18n/unicode/
H A Dutrans.h103 * as context. The second region, [start, limit), defines what
111 * <p>contextStart <= start <= limit <= contextLimit
158 int32_t limit; member in struct:UTransPosition
369 * limit</code>.
370 * @param limit pointer to the ending index, exclusive; <code>start <=
371 * limit <= repFunc->length(rep)</code>. Upon return, *limit will
372 * contain the new limit index. The text previously occupying
373 * <code>[start, limit)</code> has been transliterated, possibly to a
375 * </code><em>new-limit</e
[all...]
/external/icu/icu4c/source/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/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_connlimit.h24 unsigned int limit; member in struct:xt_connlimit_info
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlEntities.java44 * @param limit the last position in chars that could be part of the sequence
51 public static long decodeEntityAt(String html, int offset, int limit) { argument
57 int entityLimit = Math.min(limit, offset + 10);
60 if (entityLimit == limit) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DLimitedInputStream.java13 int limit)
16 this._limit = limit;
11 LimitedInputStream( InputStream in, int limit) argument
/external/elfutils/src/libdw/
H A Ddwarf_next_cfi.c64 const uint8_t *limit = data->d_buf + data->d_size; local
75 if (unlikely (limit - bytes < 8))
83 if (unlikely ((uint64_t) (limit - bytes) < length)
93 limit = bytes + length;
132 bytes = memchr (bytes, '\0', limit - bytes);
142 if (unlikely (limit - bytes < 5))
173 if (bytes >= limit)
175 get_uleb128 (entry->cie.code_alignment_factor, bytes, limit);
177 if (bytes >= limit)
179 get_sleb128 (entry->cie.data_alignment_factor, bytes, limit);
[all...]
/external/freetype/include/
H A Dftautoh.h363 * prop.limit = 14;
390 FT_UInt limit; member in struct:FT_Prop_IncreaseXHeight_
/external/icu/icu4c/source/common/
H A Dappendable.cpp42 const UChar *limit=s+length; local
47 } while(s<limit);
H A Dbmpset.cpp64 * start<limit<=0x800
66 static void set32x64Bits(uint32_t table[64], int32_t start, int32_t limit) { argument
67 U_ASSERT(start<limit);
68 U_ASSERT(limit<=0x800);
75 if((start+1)==limit) { // Single-character shortcut.
80 int32_t limitLead=limit>>6;
81 int32_t limitTrail=limit&0x3f;
107 // limit<=0x800. If limit==0x800 then limitLead=32 and limitTrail=0.
118 UChar32 start, limit;
[all...]
H A Dunifilt.cpp42 int32_t limit,
45 if (offset < limit &&
50 if (offset > limit &&
61 if (incremental && offset == limit) {
40 matches(const Replaceable& text, int32_t& offset, int32_t limit, UBool incremental) argument
/external/icu/icu4c/source/i18n/
H A Dregeximp.cpp65 CaseFoldingUCharIterator::CaseFoldingUCharIterator(const UChar *chars, int64_t start, int64_t limit) : argument
66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
/external/icu/icu4c/source/layout/
H A DScriptAndLanguage.cpp66 le_uint16 limit = ((SWAPW(scriptRecordArray[0].offset) - sizeof(ScriptListTable)) / sizeof(scriptRecordArray)) + ANY_NUMBER; local
70 if (count > limit) {
72 // because limit may still be too large.
73 LEReferenceToArrayOf<ScriptRecord> scriptRecordArrayRef(base, success, &scriptRecordArray[0], limit);
74 for(le_int32 s = 0; (s < limit)&&LE_SUCCESS(success); s += 1) {
/external/icu/icu4c/source/tools/toolutil/
H A Dcollationinfo.cpp130 int32_t limit = (pair >> 16) & 0xffff; local
133 // [inclusive-start, exclusive-limit[
134 printf(" [%04x, %04x[\n", start, limit);
137 start, limit, offset,
138 start + (offset << 8), limit + (offset << 8));
141 start, limit, -offset,
142 start + (offset << 8), limit + (offset << 8));
144 start = limit;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsDictionaryMatcher.java21 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) { argument
34 if (count < limit) {
H A DDictionaryMatcher.java24 * @param limit The maximum amount of words to output. Must be less than or equal to lengths.length.
29 int[] count, int limit, int[] values);
32 int[] count, int limit) {
33 return matches(text, maxLength, lengths, count, limit, null);
28 matches(CharacterIterator text, int maxLength, int[] lengths, int[] count, int limit, int[] values) argument
31 matches(CharacterIterator text, int maxLength, int[] lengths, int[] count, int limit) argument
H A DSymbolTable.java80 * @param limit the index after the last character to be parsed.
85 String parseReference(String text, ParsePosition pos, int limit); argument
H A DUnicodeFilter.java36 int limit,
39 if (offset[0] < limit &&
44 if (offset[0] > limit && contains(text.char32At(offset[0]))) {
54 if (incremental && offset[0] == limit) {
34 matches(Replaceable text, int[] offset, int limit, boolean incremental) argument
H A DUnicodeReplacer.java23 * Replace characters in 'text' from 'start' to 'limit' with the
30 * @param limit exclusive end index of text to be replaced;
37 * the characters at offsets start..(limit-1) in text
41 int limit,
39 replace(Replaceable text, int start, int limit, int[] cursor) argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRangeValueIterator.java16 * &lt;start, limit, value> where</p>
19 * <li> limit is 1 after the maximum integer that follows start, such that
20 * all integers between start and (limit - 1), inclusive, have the same
22 * <li> value is the integer value that all integers from start to (limit - 1)
27 * value(limit - 1). However value(start -1) != value(start) and
28 * value(limit) != value(start).
41 * Integer.toHexString(result.limit - 1) +
54 * Stores the start and limit of the continous result range and the
55 * common value all integers between [start, limit - 1] has.
73 public int limit; field in class:RangeValueIterator.Element
[all...]
H A DValueIterator.java103 * @param limit one more than the last integer in the range
105 * illegal range. E.g limit <= start
108 public void setRange(int start, int limit); argument
/external/iptables/include/linux/netfilter/
H A Dxt_connlimit.h21 unsigned int limit; member in struct:xt_connlimit_info
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_loopfilter_16_neon.c49 const uint8_t *limit,
51 vp9_lpf_vertical_16_neon(s, p, blimit, limit, thresh);
52 vp9_lpf_vertical_16_neon(s + 8 * p, p, blimit, limit, thresh);
47 vp9_lpf_vertical_16_dual_neon(uint8_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh) argument
/external/pdfium/third_party/freetype/include/
H A Dftautoh.h363 * prop.limit = 14;
390 FT_UInt limit; member in struct:FT_Prop_IncreaseXHeight_

Completed in 2587 milliseconds

1234567891011>>