Searched refs:limit (Results 1 - 25 of 838) sorted by relevance

1234567891011>>

/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/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;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Ddowhile-001.js28 function LabeledContinue( limit, expect ) {
34 } while ( i < limit );
38 "do while ( " + i +" < " + limit +" )",
H A Dlabel-001.js30 function LabelTest( limit, expect) {
31 woo: for ( var result = 0; result < 1000; result++ ) { if (result == limit) { break woo; } else { continue woo; } };
35 "break out of a labeled for loop: "+ limit,
H A Ddowhile-002.js33 function LabeledContinue( limit, expect ) {
41 if ( ! (i < limit) ) {
52 "do while ( " + i +" < " + limit +" )",
H A Ddowhile-004.js29 function DoWhile( limit, expect ) {
37 if ( ! (i < limit) ) {
48 "do while ( " + i +" < " + limit +" )",
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DAbstractBufferTest.java42 assertTrue(0 <= baseBuf.position() && baseBuf.position() <= baseBuf.limit()
43 && baseBuf.limit() <= baseBuf.capacity());
49 int oldLimit = baseBuf.limit();
54 assertEquals(baseBuf.limit(), baseBuf.capacity());
63 baseBuf.limit(oldLimit);
70 int oldLimit = baseBuf.limit();
75 assertEquals(baseBuf.limit(), oldPosition);
84 baseBuf.limit(oldLimit);
91 int oldLimit = baseBuf.limit();
93 assertEquals(baseBuf.hasRemaining(), baseBuf.position() < baseBuf.limit());
[all...]
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DRetryableOutputStream.java32 private final int limit; field in class:RetryableOutputStream
35 public RetryableOutputStream(int limit) { argument
36 this.limit = limit;
37 this.content = new ByteArrayOutputStream(limit);
41 this.limit = -1;
50 if (content.size() < limit) {
52 "content-length promised " + limit + " bytes, but received " + content.size());
60 if (limit != -1 && content.size() > limit
[all...]
/external/freetype/src/psaux/
H A Dpsconv.h31 FT_Byte* limit,
37 FT_Byte* limit );
41 FT_Byte* limit,
47 FT_Byte* limit,
54 FT_Byte* limit,
60 FT_Byte* limit,
H A Dpsconv.c74 FT_Byte* limit,
82 if ( p >= limit || base < 2 || base > 36 )
90 if ( p == limit )
94 for ( ; p < limit; p++ )
121 FT_Byte* limit )
128 num = PS_Conv_Strtol( cursor, limit, 10 );
131 if ( p < limit && *p == '#' )
135 return PS_Conv_Strtol( cursor, limit, num );
144 FT_Byte* limit,
153 if ( p >= limit )
[all...]
H A Dpsobjs.c104 FT_Byte** limit = offset + table->max_elems; local
107 for ( ; offset < limit; offset++ )
292 FT_Byte* limit )
297 while ( cur < limit )
310 FT_Byte* limit )
315 while ( cur < limit )
321 skip_comment( &cur, limit );
340 FT_Byte* limit )
348 while ( cur < limit )
364 if ( cur == limit )
521 FT_Byte* limit = parser->limit; local
623 FT_Byte* limit; local
740 T1_Token limit = cur + max_tokens; local
775 ps_tocoordarray( FT_Byte* *acur, FT_Byte* limit, FT_Int max_coords, FT_Short* coords ) argument
852 ps_tofixedarray( FT_Byte* *acur, FT_Byte* limit, FT_Int max_values, FT_Fixed* values, FT_Int power_ten ) argument
1032 FT_Byte* limit; local
1417 ps_parser_init( PS_Parser parser, FT_Byte* base, FT_Byte* limit, FT_Memory memory ) argument
[all...]
/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/v8/test/mjsunit/regress/
H A Dregress-117794.js35 function assertHasOwnProperties(object, limit) {
36 for (var i = 0; i < limit; i++) { }
/external/icu4c/i18n/
H A Duni2name.cpp78 offsets.start = offsets.limit;
85 offsets.start = offsets.limit;
90 int32_t limit = offsets.limit; local
96 while (cursor < limit) {
106 limit += len-clen; // change in length
112 offsets.contextLimit += limit - offsets.limit;
113 offsets.limit = limit;
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DByteBufferHelper.java32 nuSamples.get(lastIndex).arrayOffset() + nuSamples.get(lastIndex).limit() == buffer.arrayOffset()) {
34 ByteBuffer nu = ByteBuffer.wrap(buffer.array(), oldBuffer.arrayOffset(), oldBuffer.limit() + buffer.limit()).slice();
39 nuSamples.get(lastIndex).limit() == nuSamples.get(lastIndex).capacity() - buffer.capacity()) {
42 oldBuffer.limit(buffer.limit() + oldBuffer.limit());
/external/wpa_supplicant_8/wpa_supplicant/
H A Dautoscan_exponential.c18 int limit; member in struct:autoscan_exponential_data
39 data->limit = atoi(pos);
60 "and limit is %d", data->base, data->limit);
84 if (data->interval >= data->limit)
85 return data->limit;
91 if (data->interval > data->limit)
92 return data->limit;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
H A Dsplit-003.js18 * The [,limit] argument to String.split is new, and not covered in any
29 var TITLE = "String.prototype.split( regexp, [,limit] )";
77 var limit = (split_array.length > string.split(separator).length )
89 string, separator, str_sep, limit, split_array ) {
94 "( " + string + " ).split(" + str_sep +", " + limit +
97 string.split(separator, limit).constructor == Array );
102 "( " + string + " ).split(" + str_sep +", " + limit + " ).length",
104 string.split(separator, limit).length );
109 ? split_array.length : string.split(separator, limit).length;
113 "( " + string + " ).split(" + str_sep +", " + limit
[all...]
/external/icu4c/common/unicode/
H A Durep.h91 * Function pointer that replaces text between start and limit in
98 * @param limit the ending index of the text to be replaced,
101 * start..limit-1.
108 int32_t limit,
114 * [<tt>start</tt>, <tt>limit</tt>) into the array <tt>dst</tt>.
119 * @param limit offset immediately following the last character to
122 * <tt>dst</tt> must be at least <tt>(limit - start)</tt>.
127 int32_t limit,
131 * Function pointer that copies text between start and limit in
135 * start..limit
[all...]
/external/icu4c/common/
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/iptables/include/linux/netfilter/
H A Dxt_connlimit.h19 unsigned int limit; member in struct:xt_connlimit_info
/external/kernel-headers/original/asm-x86/
H A Dldt.h16 * Note on 64bit base and limit is ignored and you cannot set DS/ES/CS
23 unsigned int limit; member in struct:user_desc
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DGroupEntry.java26 return get().limit();
/external/qemu/hw/
H A Dgoldfish_nand.h20 uint64_t limit; member in struct:__anon11811

Completed in 645 milliseconds

1234567891011>>