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

1234567891011>>

/macosx-10.9.5/BerkeleyDB-21/db/common/
H A Ddb_log2.c51 u_int32_t i, limit; local
53 limit = 1;
54 for (i = 0; limit < num; limit = limit << 1)
/macosx-10.9.5/Libc-997.90.3/db/hash/FreeBSD/
H A Dhash_log2.c47 u_int32_t i, limit; local
49 limit = 1;
50 for (i = 0; limit < num; limit = limit << 1, i++);
/macosx-10.9.5/ICU-511.35/icuSources/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...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dfile_limit.c5 /* limit the file size
11 /* void set_file_limit(limit)
12 /* off_t limit;
14 /* This module manipulates the process-wide file size limit.
15 /* The limit is specified in bytes.
17 /* get_file_limit() looks up the process-wide file size limit.
19 /* set_file_limit() sets the process-wide file size limit to
56 /* get_file_limit - get process-wide file size limit */
60 off_t limit; local
63 if ((limit
80 set_file_limit(off_t limit) argument
[all...]
H A Dopen_limit.c5 /* set/get open file limit
9 /* int open_limit(int limit)
12 /* number of open files to the specified limit. Specify a null
14 /* limit for the current process. The number can be smaller or larger
15 /* than the requested limit.
50 /* open_limit - set/query file descriptor limit */
52 int open_limit(int limit) argument
58 if (limit < 0) {
65 if (limit > 0) {
66 if (limit > r
[all...]
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dulimit.c41 struct rlimit limit; local
46 if (getrlimit(RLIMIT_FSIZE, &limit) == -1)
48 limit.rlim_cur /= 512;
49 if (limit.rlim_cur > LONG_MAX)
51 return ((long)limit.rlim_cur);
56 limit.rlim_max = limit.rlim_cur = (rlim_t)arg * 512;
59 if (setrlimit(RLIMIT_FSIZE, &limit) == -1)
/macosx-10.9.5/JavaScriptCore-7537.78.1/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 +" )",
/macosx-10.9.5/ncurses-42/ncurses/ncurses/widechar/
H A Dlib_in_wchnstr.c54 int j, k, limit; local
57 limit = getmaxx(win) - col;
61 n = limit;
62 } else if (n > limit) {
63 n = limit;
/macosx-10.9.5/ICU-511.35/icuSources/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...]
H A Dnortrans.cpp102 // start and limit of the input range
104 int32_t limit = offsets.limit; local
105 if(start >= limit) {
112 * In incremental mode, a chunk that ends with offsets.limit
119 int32_t length = limit - start;
120 _Replaceable_extractBetween(text, start, limit, input.getBuffer(length));
126 text.handleReplaceBetween(start, limit, normalized);
130 offsets.limit += delta;
131 offsets.start = limit
[all...]
H A Danytrans.cpp58 * | | - first run (start, limit)
59 * | | - second run (start, limit)
87 int32_t limit; member in class:ScriptRunIterator
91 * (inclusive) to limit (exclusive).
93 ScriptRunIterator(const Replaceable& text, int32_t start, int32_t limit);
98 * examine scriptCode, start, and limit.
103 * Adjusts internal indices for a change in the limit index of the
104 * given delta. A positive delta means the limit has increased.
119 limit = myStart;
128 start = limit;
257 int32_t limit = pos.limit; local
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_back_forward_list.cpp69 WKRetainPtr<WKArrayRef> EwkBackForwardList::backList(int limit) const
71 if (limit == -1)
72 limit = WKBackForwardListGetBackListCount(m_wkList.get());
73 ASSERT(limit >= 0);
75 return adoptWK(WKBackForwardListCopyBackListWithLimit(m_wkList.get(), limit));
78 WKRetainPtr<WKArrayRef> EwkBackForwardList::forwardList(int limit) const
80 if (limit == -1)
81 limit = WKBackForwardListGetForwardListCount(m_wkList.get());
82 ASSERT(limit >= 0);
84 return adoptWK(WKBackForwardListCopyForwardListWithLimit(m_wkList.get(), limit));
169 ewk_back_forward_list_n_back_items_copy(const Ewk_Back_Forward_List* list, int limit) argument
179 ewk_back_forward_list_n_forward_items_copy(const Ewk_Back_Forward_List* list, int limit) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/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...]
/macosx-10.9.5/ICU-511.35/icuSources/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...]
/macosx-10.9.5/ICU-511.35/icuSources/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
H A Dunorm_it.c50 * api.limit: one past the last valid character in chars[], but states[limit] is valid
58 /* there are UChars available before start or after limit? */
74 api->start=api->index=api->limit=0;
79 api->start=api->index=api->limit=uni->capacity;
84 api->start=api->index=api->limit=uni->capacity/2;
96 int32_t start, limit; local
107 limit=api->limit;
114 uprv_memcpy(states+delta+start, uni->states+start, (limit
135 int32_t srcIndex, destIndex, limit; local
195 int32_t limit, capacity, room; local
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKBackForwardList.cpp69 WKArrayRef WKBackForwardListCopyBackListWithLimit(WKBackForwardListRef listRef, unsigned limit) argument
71 return toAPI(toImpl(listRef)->backListAsImmutableArrayWithLimit(limit).leakRef());
74 WKArrayRef WKBackForwardListCopyForwardListWithLimit(WKBackForwardListRef listRef, unsigned limit) argument
76 return toAPI(toImpl(listRef)->forwardListAsImmutableArrayWithLimit(limit).leakRef());
/macosx-10.9.5/ncurses-42/ncurses/ncurses/base/
H A Dlib_slkset.c56 int limit; local
73 limit = MAX_SKEY_LEN(SP->slk_format);
92 if (wcwidth(wc) + numcols > limit)
103 if (numcols > limit)
104 numcols = limit;
114 (unsigned) (limit +
125 offset = (limit - numcols) / 2;
128 offset = limit - numcols;
140 if (offset < limit) {
143 (unsigned) (limit
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DMemoryObject.cpp21 uint64_t limit = getBase() + getExtent(); local
23 if (current + size > limit)
/macosx-10.9.5/Heimdal-323.92.1/appl/login/
H A Dlimits_conf.c44 struct limit { struct
49 struct rlimit limit; member in struct:limit
81 static struct limit *
84 struct limit *l;
106 struct limit *l;
154 syslog(LOG_ERR, "%s: line %d: unknown limit %s", file, lineno, args[2]);
176 /* XXX unclear: if you set group hard and user soft limit,
177 should the hard limit still apply? this code doesn't. */
191 if(getrlimit(l->resource, &l->limit) < 0)
199 l->limit
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/samples/uciter8/
H A Duit_len8.c86 * The caller must not modify start and limit because they are used internally.
93 * limit UTF-8 length of the string
120 int32_t i, limit, index; local
124 limit=iter->start; /* count up to the UTF-8 index */
125 while(i<limit) {
126 L8_NEXT(s, i, limit, c);
135 if(i==iter->limit) {
149 int32_t i, limit, length; local
158 limit=iter->start;
161 while(i<limit) {
306 int32_t limit=iter->limit; local
[all...]

Completed in 303 milliseconds

1234567891011>>