Searched refs:limit (Results 226 - 250 of 919) sorted by relevance

1234567891011>>

/macosx-10.9.5/emacs-92/emacs/src/
H A Dcomposite.c411 find_composition (pos, limit, start, end, prop, object)
412 int pos, limit, *start, *end;
420 if (limit < 0 || limit == pos)
423 if (limit > pos) /* search forward */
426 object, make_number (limit));
428 if (pos == limit)
437 object, make_number (limit));
439 if (pos == limit)
650 (pos, limit, strin
648 Lisp_Object pos, limit, string, detail_p; variable
658 CHECK_NUMBER_COERCE_MARKER (limit); variable
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dunormcmp.cpp131 const UChar *start, *s, *limit; member in struct:CmpEquivLevel
150 /* current-level start/limit - s1/s2 as current */
157 /* stacks of previous-level start/current/limit */
163 /* case folding buffers, only use current-level start/limit */
239 limit1=stack1[level1].limit; /*Not uninitialized*/
262 limit2=stack2[level2].limit; /*Not uninitialized*/
345 stack1[0].limit=limit1;
390 stack2[0].limit=limit2;
435 stack1[level1].limit=limit1;
476 stack2[level2].limit
[all...]
H A Dnormalizer2.cpp150 normalize(const UChar *src, const UChar *limit,
196 normalizeAndAppend(const UChar *src, const UChar *limit, UBool doNormalize,
270 spanQuickCheckYes(const UChar *src, const UChar *limit, UErrorCode &errorCode) const = 0;
288 normalize(const UChar *src, const UChar *limit, argument
290 impl.decompose(src, limit, &buffer, errorCode);
294 normalizeAndAppend(const UChar *src, const UChar *limit, UBool doNormalize, argument
297 impl.decomposeAndAppend(src, limit, doNormalize, safeMiddle, buffer, errorCode);
300 spanQuickCheckYes(const UChar *src, const UChar *limit, UErrorCode &errorCode) const { argument
301 return impl.decompose(src, limit, NULL, errorCode);
322 normalize(const UChar *src, const UChar *limit, argument
328 normalizeAndAppend(const UChar *src, const UChar *limit, UBool doNormalize, UnicodeString &safeMiddle, ReorderingBuffer &buffer, UErrorCode &errorCode) const argument
366 spanQuickCheckYes(const UChar *src, const UChar *limit, UErrorCode &) const argument
395 normalize(const UChar *src, const UChar *limit, ReorderingBuffer &buffer, UErrorCode &errorCode) const argument
401 normalizeAndAppend(const UChar *src, const UChar *limit, UBool doNormalize, UnicodeString &safeMiddle, ReorderingBuffer &buffer, UErrorCode &errorCode) const argument
407 spanQuickCheckYes(const UChar *src, const UChar *limit, UErrorCode &errorCode) const argument
[all...]
H A Ducnv_ext.cpp38 int32_t i, start, limit; local
42 limit=(int32_t)UCNV_EXT_TO_U_GET_BYTE(toUSection[length-1]);
43 if(byte<start || limit<byte) {
47 if(length==((limit-start)+1)) {
67 limit=length;
69 i=limit-start;
73 /* start<limit-1 */
80 if(++start<limit && word0<=toUSection[start]) {
83 if(++start<limit && word0<=toUSection[start]) {
86 /* always break at start==limit
463 int32_t i, start, limit; local
[all...]
H A Dunames.cpp510 limit=*groups++, local
514 while(start<limit-1) {
515 number=(uint16_t)((start+limit)/2);
517 limit=number;
691 UChar32 start, UChar32 limit,
698 endGroupMSB=(uint16_t)((limit-1)>>GROUP_SHIFT);
706 if(extLimit>limit) {
707 extLimit=limit;
717 /* if start and limit-1 are in the same group, then enumerate only in that one */
718 return enumGroupNames(names, group, start, limit
690 enumNames(UCharNames *names, UChar32 start, UChar32 limit, UEnumCharNamesFn *fn, void *context, UCharNameChoice nameChoice) argument
959 enumAlgNames(AlgorithmicRange *range, UChar32 start, UChar32 limit, UEnumCharNamesFn *fn, void *context, UCharNameChoice nameChoice) argument
1150 UChar32 start, limit; local
1646 u_enumCharNames(UChar32 start, UChar32 limit, UEnumCharNamesFn *fn, void *context, UCharNameChoice nameChoice, UErrorCode *pErrorCode) argument
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dcc-defs.el507 (defmacro c-forward-syntactic-ws (&optional limit)
514 LIMIT sets an upper limit of the forward movement, if specified. If
520 (if limit
522 (narrow-to-region (point-min) (or ,limit (point-max)))
526 (defmacro c-backward-syntactic-ws (&optional limit)
533 LIMIT sets a lower limit of the backward movement, if specified. If
539 (if limit
541 (narrow-to-region (or ,limit (point-min)) (point-max))
562 (defmacro c-safe-scan-lists (from count depth &optional limit)
566 A limit fo
[all...]
/macosx-10.9.5/xar-202/xar/lib/
H A Dlzmaxar.c70 lzma_memory_limitter *limit; member in struct:_lzma_context
72 lzma_memlimit *limit; member in struct:_lzma_context
193 lzma_memory_limitter_end(LZMA_CONTEXT(context)->limit, 1);
195 lzma_memlimit_end(LZMA_CONTEXT(context)->limit, 1);
259 LZMA_CONTEXT(context)->limit = lzma_memory_limitter_create(memory_limit);
263 LZMA_CONTEXT(context)->limit = lzma_memlimit_create(memory_limit);
267 LZMA_CONTEXT(context)->allocator.opaque = LZMA_CONTEXT(context)->limit;
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dglob.c409 size_t limit = 0; local
467 if ((err = glob1(patbuf, pglob, &limit)) != 0)
480 return(globextend(pattern, pglob, &limit));
494 glob1(Char *pattern, glob_t *pglob, size_t *limit) argument
501 return(glob2(pathbuf, pathbuf, pattern, pglob, limit));
520 size_t *limit)
545 return(globextend(pathbuf, pglob, limit));
564 limit));
571 glob_t *pglob, size_t *limit)
621 err = glob2(pathbuf, --dc, restpattern, pglob, limit);
519 glob2(Char *pathbuf, Char *pathend, Char *pattern, glob_t *pglob, size_t *limit) argument
570 glob3(Char *pathbuf, Char *pathend, Char *pattern, Char *restpattern, glob_t *pglob, size_t *limit) argument
649 globextend(const Char *path, glob_t *pglob, size_t *limit) argument
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dglob.c394 size_t limit = 0; local
454 if ((error = glob1(patbuf, pglob, &limit)) != 0)
468 return globextend(pattern, pglob, &limit);
489 glob1(Char *pattern, glob_t *pglob, size_t *limit) argument
497 * we save one character so that we can use ptr >= limit,
503 pglob, limit));
513 Char *pattern, glob_t *pglob, size_t *limit)
540 return(globextend(pathbuf, pglob, limit));
564 pglob, limit));
571 Char *pattern, Char *restpattern, glob_t *pglob, size_t *limit)
512 glob2(Char *pathbuf, Char *pathend, Char *pathlim, Char *pattern, glob_t *pglob, size_t *limit) argument
570 glob3(Char *pathbuf, Char *pathend, Char *pathlim, Char *pattern, Char *restpattern, glob_t *pglob, size_t *limit) argument
689 globextend(const Char *path, glob_t *pglob, size_t *limit) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Duniset.h904 * Same as <code>spanBack(s.getBuffer(), limit, spanCondition)</code>
905 * after pinning limit to 0<=end<=s.length().
907 * @param limit the exclusive-end index in the string for the span operation
911 * the substring s.tempSubStringBetween(start, limit) fulfills the spanCondition
915 inline int32_t spanBack(const UnicodeString &s, int32_t limit, USetSpanCondition spanCondition) const;
962 int32_t limit,
968 * If limit > start then match forward from start+1 to limit
969 * matching all characters except s.charAt(0). If limit < start,
979 * @param limit th
1675 spanBack(const UnicodeString &s, int32_t limit, USetSpanCondition spanCondition) const argument
[all...]
/macosx-10.9.5/CPANInternal-140/Class-DBI-AbstractSearch-0.07/lib/Class/DBI/
H A DAbstractSearch.pm18 my $limit = ($attr) ? delete($attr->{limit}) : undef;
31 my($phrase, @bind) = $sql->where($where, $order, $limit, $offset);
59 limit => 1
105 B<limit>
/macosx-10.9.5/cctools-845/as/
H A Dobstack.c91 h->chunk_limit = chunk->limit
122 new_chunk->limit = h->chunk_limit = (char *) new_chunk + new_size;
163 while (lp != 0 && ((POINTER)lp > obj || (POINTER)(lp)->limit < obj))
187 while (lp != 0 && ((POINTER)lp >= obj || (POINTER)(lp)->limit < obj))
196 (h)->chunk_limit = lp->limit;
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dcomposite.el271 (defun find-composition (pos &optional limit string detail-p)
303 (let ((result (find-composition-internal pos limit string detail-p)))
312 (defun compose-chars-after (pos &optional limit object)
344 (if (if limit
345 (and (re-search-forward pattern limit t)
/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dearcon.el109 (limit (if (< n 0) (point-min) (point-max))))
111 (while (and (not (= limit (point)))
115 (goto-char (funcall function (point) 'earcon-callback nil limit)))
117 (gnus-goto-char (funcall function (point) 'earcon-callback nil limit))
120 (goto-char (funcall function (point) 'earcon-callback nil limit)))
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/generator/template/json_index/js/
H A Dsearcher.js19 var state = { from: 0, pass: 0, limit: MAX_RESULTS, n: suid++}; property in class:find.state
32 var hasMore = (state.limit > 0 && state.pass < 4);
189 while (state.pass < 4 && state.limit > 0 && togo > 0) {
204 for (; togo > 0 && i < l && state.limit > 0; i++, togo--) {
209 state.limit--;
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DGlyphPositionAdjustments.cpp144 le_int32 limit = lastExitPoint /*+ dir*/; local
148 limit += dir;
151 for (le_int32 j = firstExitPoint; j != limit; j += dir) {
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DLDAPConstraints.cpp87 void LDAPConstraints::setHopLimit(int limit){ argument
90 " limit:" << limit << endl);
91 m_HopLimit=limit;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DTextureCacheCompositingThread.h62 void setMemoryLimit(size_t limit) { m_memoryLimit = limit; } argument
64 // Evict unprotected textures until we reach the limit provided.
65 void prune(size_t limit);
/macosx-10.9.5/ncurses-42/ncurses/include/
H A Dterm_entry.h76 #define EXT_NAMES(tp,i,limit,index,table) (i >= limit) ? tp->ext_Names[index] : table[i]
81 #define EXT_NAMES(tp,i,limit,index,table) table[i]
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tinfo/
H A Dwrite_entry.c69 unsigned limit = sizeof(buffer); local
79 if (write_object(tp, buffer, &offset, limit) == ERR
119 make_db_path(char *dst, const char *src, unsigned limit) argument
125 if (strlen(src) + 1 <= limit) {
130 if (strlen(top) + strlen(src) + 2 <= limit) {
142 if (have + 3 <= limit)
253 unsigned limit = sizeof(buffer); local
312 if (write_object(tp, buffer + 1, &offset, limit - 1) != ERR) {
466 unsigned limit,
471 int have = (limit
464 fake_write(char *dst, unsigned *offset, unsigned limit, char *src, unsigned want, unsigned size) argument
594 write_object(TERMTYPE *tp, char *buffer, unsigned *offset, unsigned limit) argument
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dnetstring.c17 /* VSTRING *netstring_get(stream, buf, limit)
20 /* ssize_t limit;
64 /* netstring_setup() arranges for a time limit on the netstring
76 /* and extracts its content. The limit specifies a maximal size.
77 /* Specify zero to disable the size limit. The result is not null
124 /* The time limit specified to netstring_setup() was exceeded.
255 VSTRING *netstring_get(VSTREAM *stream, VSTRING *buf, ssize_t limit) argument
260 if (limit && len > limit)
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Drbt_rule.cpp54 * context limit
345 * be completed by additional text inserted at pos.limit.
412 match = key->matches(text, oText, pos.limit, incremental);
421 if (incremental && keyLimit == pos.limit) {
422 // The key matches just before pos.limit, and there is
425 // pos.limit -- this is a partial match.
456 pos.limit += lenDelta;
458 // Restrict new value of start to [minOText, min(oText, pos.limit)].
459 pos.start = uprv_max(minOText, uprv_min(uprv_min(oText, pos.limit), newStart));
532 int32_t limit local
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitwebbackforwardlist.cpp200 * @limit: the number of items to retrieve
202 * Returns a list of items that succeed the current item, limited by @limit
204 * Return value: (element-type WebKit.WebHistoryItem) (transfer container): a #GList of items succeeding the current item, limited by @limit
206 GList* webkit_web_back_forward_list_get_forward_list_with_limit(WebKitWebBackForwardList* webBackForwardList, gint limit) argument
217 backForwardList->forwardListWithLimit(limit, items);
230 * @limit: the number of items to retrieve
232 * Returns a list of items that precede the current item, limited by @limit
234 * Return value: (element-type WebKit.WebHistoryItem) (transfer container): a #GList of items preceding the current item, limited by @limit
236 GList* webkit_web_back_forward_list_get_back_list_with_limit(WebKitWebBackForwardList* webBackForwardList, gint limit) argument
247 backForwardList->backListWithLimit(limit, item
412 webkit_web_back_forward_list_set_limit(WebKitWebBackForwardList* webBackForwardList, gint limit) argument
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/include/isc/
H A Dmem.h237 void (*setmaxalloc)(isc_mempool_t *mpctx, unsigned int limit);
238 void (*setfreemax)(isc_mempool_t *mpctx, unsigned int limit);
241 void (*setfillcount)(isc_mempool_t *mpctx, unsigned int limit);
410 * Set/get the memory quota of 'mctx'. This is a hard limit
650 isc_mempool_setfreemax(isc_mempool_t *mpctx, unsigned int limit);
668 isc_mempool_setmaxalloc(isc_mempool_t *mpctx, unsigned int limit);
673 *\li limit > 0
690 isc_mempool_setfillcount(isc_mempool_t *mpctx, unsigned int limit);
695 *\li limit > 0
/macosx-10.9.5/postfix-252/postfix/src/postscreen/
H A Dpostscreen_dnsbl.c149 int limit; /* last valid index */ member in struct:__anon11813
154 (sp)->limit = 0; \
172 if ((sp)->index >= (sp)->limit) { \
173 int _count_ = ((sp)->limit ? (sp)->limit * 2 : 5); \
177 (sp)->limit = _count_; \

Completed in 575 milliseconds

1234567891011>>