Searched refs:limit (Results 276 - 300 of 919) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dustrcase.cpp115 if(csc->index<csc->limit) {
116 U16_NEXT((const UChar *)csc->p, csc->index, csc->limit, c);
186 csc.limit=srcLength;
306 csc.limit=srcLength;
321 csc.limit=srcLength;
464 const UChar *start, *s, *limit; member in struct:CmpEquivLevel
476 /* current-level start/limit - s1/s2 as current */
483 /* stacks of previous-level start/current/limit */
486 /* case folding buffers, only use current-level start/limit */
550 limit1=stack1[level1].limit; /*No
[all...]
H A Dutext.cpp423 int64_t start, int64_t limit,
426 return ut->pFuncs->extract(ut, start, limit, dest, destCapacity, status);
719 pinIndex(int64_t &index, int64_t limit) { argument
722 } else if (index > limit) {
723 index = limit;
875 // and one for an entry for the buffer limit position.
1355 // Set native indexing limit to be the current position.
1357 // the limit will be here if the rest of the chars to be
1451 int64_t start, int64_t limit,
1463 int32_t limit32 = pinIndex(limit, lengt
422 utext_extract(UText *ut, int64_t start, int64_t limit, UChar *dest, int32_t destCapacity, UErrorCode *status) argument
1450 utf8TextExtract(UText *ut, int64_t start, int64_t limit, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
1827 repTextExtract(UText *ut, int64_t start, int64_t limit, UChar *dest, int32_t destCapacity, UErrorCode *status) argument
1870 repTextReplace(UText *ut, int64_t start, int64_t limit, const UChar *src, int32_t length, UErrorCode *status) argument
1927 repTextCopy(UText *ut, int64_t start, int64_t limit, int64_t destIndex, UBool move, UErrorCode *status) argument
2106 unistrTextExtract(UText *t, int64_t start, int64_t limit, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
2143 unistrTextReplace(UText *ut, int64_t start, int64_t limit, const UChar *src, int32_t length, UErrorCode *pErrorCode) argument
2188 unistrTextCopy(UText *ut, int64_t start, int64_t limit, int64_t destIndex, UBool move, UErrorCode *pErrorCode) argument
2472 ucstrTextExtract(UText *ut, int64_t start, int64_t limit, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
2732 charIterTextExtract(UText *ut, int64_t start, int64_t limit, UChar *dest, int32_t destCapacity, UErrorCode *status) argument
[all...]
H A Drbbistbl.cpp139 ParsePosition& pos, int32_t limit) const
144 while (i < limit) {
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSCore/
H A DDNSCommon.h191 extern mDNSu8 *putDomainNameAsLabels(const DNSMessage *const msg, mDNSu8 *ptr, const mDNSu8 *const limit, const domainname *const name);
192 extern mDNSu8 *putRData(const DNSMessage *const msg, mDNSu8 *ptr, const mDNSu8 *const limit, const ResourceRecord *const rr);
199 extern mDNSu8 *PutResourceRecordTTLWithLimit(DNSMessage *const msg, mDNSu8 *ptr, mDNSu16 *count, ResourceRecord *rr, mDNSu32 ttl, const mDNSu8 *limit);
216 extern mDNSu8 *putQuestion(DNSMessage *const msg, mDNSu8 *ptr, const mDNSu8 *const limit, const domainname *const name, mDNSu16 rrtype, mDNSu16 rrclass);
217 extern mDNSu8 *putZone(DNSMessage *const msg, mDNSu8 *ptr, mDNSu8 *limit, const domainname *zone, mDNSOpaque16 zoneClass);
220 extern mDNSu8 *putDeletionRecordWithLimit(DNSMessage *msg, mDNSu8 *ptr, ResourceRecord *rr, mDNSu8 *limit);
221 extern mDNSu8 *putDeleteRRSetWithLimit(DNSMessage *msg, mDNSu8 *ptr, const domainname *name, mDNSu16 rrtype, mDNSu8 *limit);
224 extern mDNSu8 *putUpdateLeaseWithLimit(DNSMessage *msg, mDNSu8 *ptr, mDNSu32 lease, mDNSu8 *limit);
226 extern mDNSu8 *putHINFO(const mDNS *const m, DNSMessage *const msg, mDNSu8 *ptr, DomainAuthInfo *authInfo, mDNSu8 *limit);
227 extern mDNSu8 *putDNSSECOption(DNSMessage *msg, mDNSu8 *end, mDNSu8 *limit);
[all...]
H A DDNSCommon.c708 mDNSexport mDNSu16 DomainNameLengthLimit(const domainname *const name, const mDNSu8 *limit) argument
711 while (src < limit && *src <= MAX_DOMAIN_LABEL)
839 // Check that ptr + length byte + data bytes + final zero does not exceed our limit
872 const mDNSu8 *const limit = label->c + 1 + MAX_DOMAIN_LABEL; // The maximum we can put local
873 while (*cstr && ptr < limit) *ptr++ = (mDNSu8)*cstr++; // Copy the label
2144 // limit points to one byte past the end of the buffer that we must not overrun
2147 mDNSu8 *ptr, const mDNSu8 *const limit, const domainname *const name)
2159 if (ptr >= limit) return(mDNSNULL);
2174 // name we've written is exactly 256 bytes long, exactly at the correct legal limit.
2183 if (ptr+2 > limit) retur
2146 putDomainNameAsLabels(const DNSMessage *const msg, mDNSu8 *ptr, const mDNSu8 *const limit, const domainname *const name) argument
2223 putRData(const DNSMessage *const msg, mDNSu8 *ptr, const mDNSu8 *const limit, const ResourceRecord *const rr) argument
2439 PutResourceRecordTTLWithLimit(DNSMessage *const msg, mDNSu8 *ptr, mDNSu16 *count, ResourceRecord *rr, mDNSu32 ttl, const mDNSu8 *limit) argument
2495 putEmptyResourceRecord(DNSMessage *const msg, mDNSu8 *ptr, const mDNSu8 *const limit, mDNSu16 *count, const AuthRecord *rr) argument
2509 putQuestion(DNSMessage *const msg, mDNSu8 *ptr, const mDNSu8 *const limit, const domainname *const name, mDNSu16 rrtype, mDNSu16 rrclass) argument
2522 putZone(DNSMessage *const msg, mDNSu8 *ptr, mDNSu8 *limit, const domainname *zone, mDNSOpaque16 zoneClass) argument
2557 putDeletionRecordWithLimit(DNSMessage *msg, mDNSu8 *ptr, ResourceRecord *rr, mDNSu8 *limit) argument
2567 putDeleteRRSetWithLimit(DNSMessage *msg, mDNSu8 *ptr, const domainname *name, mDNSu16 rrtype, mDNSu8 *limit) argument
2587 const mDNSu8 *limit = msg->data + AbsoluteMaxDNSMessageData; local
2620 putUpdateLeaseWithLimit(DNSMessage *msg, mDNSu8 *end, mDNSu32 lease, mDNSu8 *limit) argument
2634 putDNSSECOption(DNSMessage *msg, mDNSu8 *end, mDNSu8 *limit) argument
2652 putHINFO(const mDNS *const m, DNSMessage *const msg, mDNSu8 *end, DomainAuthInfo *authInfo, mDNSu8 *limit) argument
2746 const mDNSu8 *const limit = np + MAX_DOMAIN_NAME; // Limit so we don't overrun buffer local
3733 mDNSu8 *limit = msg->data + AbsoluteMaxDNSMessageData; local
[all...]
/macosx-10.9.5/system_cmds-597.90.1/getty.tproj/
H A Dmain.c196 struct rlimit limit; local
215 limit.rlim_max = RLIM_INFINITY;
216 limit.rlim_cur = GETTY_TIMEOUT;
217 (void)setrlimit(RLIMIT_CPU, &limit);
399 limit.rlim_max = RLIM_INFINITY;
400 limit.rlim_cur = RLIM_INFINITY;
401 (void)setrlimit(RLIMIT_CPU, &limit);
445 limit.rlim_max = RLIM_INFINITY;
446 limit.rlim_cur = RLIM_INFINITY;
447 (void)setrlimit(RLIMIT_CPU, &limit);
[all...]
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/getty.tproj/
H A Dmain.c196 struct rlimit limit; local
215 limit.rlim_max = RLIM_INFINITY;
216 limit.rlim_cur = GETTY_TIMEOUT;
217 (void)setrlimit(RLIMIT_CPU, &limit);
399 limit.rlim_max = RLIM_INFINITY;
400 limit.rlim_cur = RLIM_INFINITY;
401 (void)setrlimit(RLIMIT_CPU, &limit);
445 limit.rlim_max = RLIM_INFINITY;
446 limit.rlim_cur = RLIM_INFINITY;
447 (void)setrlimit(RLIMIT_CPU, &limit);
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dstringtriebuilder.h88 int32_t writeNode(int32_t start, int32_t limit, int32_t unitIndex);
90 int32_t writeBranchSubNode(int32_t start, int32_t limit, int32_t unitIndex, int32_t length);
97 Node *makeNode(int32_t start, int32_t limit, int32_t unitIndex, UErrorCode &errorCode);
99 Node *makeBranchSubNode(int32_t start, int32_t limit, int32_t unitIndex,
117 virtual int32_t countElementUnits(int32_t start, int32_t limit, int32_t unitIndex) const = 0;
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dfont-lock.el362 call to make the search (called with one argument, the limit of the search;
439 The above-mentioned exception is as follows. The limit of the MATCHER search
442 PRE-MATCH-FORM is evaluated, that position is used as the limit of the search.
1405 (defun font-lock-fontify-syntactic-anchored-keywords (keywords limit)
1414 (setq limit pre-match-value)
1415 (setq limit (line-end-position)))
1417 ;; Find an occurrence of `matcher' before `limit'.
1419 (re-search-forward matcher limit t)
1420 (funcall matcher limit))
1563 (defsubst font-lock-fontify-anchored-keywords (keywords limit)
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclCompExpr.c621 const int limit = 25; /* Portions of the error message are
624 * error message readable, we impose this limit
736 (scanned < limit) ? scanned : limit - 3, start,
737 (scanned < limit) ? "" : "...");
740 (scanned < limit) ? scanned : limit - 3,
741 start, (scanned < limit) ? "" : "...",
742 (scanned < limit) ? scanned : limit
620 const int limit = 25; /* Portions of the error message are local
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dvstream.c276 /* A timeout value <= 0 disables the time limit.
284 /* A timeout value <= 0 disables the time limit.
343 /* Change the VSTREAM_CTL_TIMEOUT behavior, to limit the total
348 /* a time limit for individual file descriptor read or write
1592 off_t limit; member in struct:vstream_limit
1603 /* read no more than the limit */
1604 if (lp->limit == 0)
1606 else if (len > lp->limit)
1607 len = lp->limit;
1610 lp->limit
1623 vstream_limit_init(VSTREAM *stream, off_t limit) argument
[all...]
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_read_support_format_mtree.c1113 int64_t l, limit, last_digit_limit; local
1117 limit = INT64_MAX / base;
1123 if (l>limit || (l == limit && digit > last_digit_limit)) {
1141 int64_t l, limit, last_digit_limit; local
1145 limit = INT64_MAX / base;
1157 if (l > limit || (l == limit && digit > last_digit_limit)) {
1175 int64_t l, limit, last_digit_limit; local
1179 limit
1233 readline(struct archive_read *a, struct mtree *mtree, char **start, ssize_t limit) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/
H A Dmarshal.c148 int limit; member in struct:dump_call_arg
436 c_arg.limit = 1;
455 w_object(key, arg->arg, arg->limit);
456 w_object(value, arg->arg, arg->limit);
523 w_object(value, arg->arg, arg->limit);
543 w_object(Qfalse, arg->arg, arg->limit + 1);
548 w_object(Qtrue, arg->arg, arg->limit + 1);
561 w_object(name, arg->arg, arg->limit + 1);
595 w_object(VALUE obj, struct dump_arg *arg, int limit) argument
604 if (limit
812 w_object(RHASH_IFNONE(obj), arg, limit); local
926 int limit = -1; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dplurrule.cpp259 int32_t limit = mSampleInfo[index] & ~LIMIT_MASK; local
260 int32_t len = limit - start;
298 int32_t limit; local
330 if ((limit=this->getRepeatLimit()) != other.getRepeatLimit()) {
334 for (int32_t i=0; i<limit; ++i) {
577 int32_t limit = getRepeatLimit() * MAX_SAMPLES * 2; local
578 if (limit < 10) {
579 limit = 10;
583 keywordsRemaining > 0 && i < limit;
605 if (newSampleInfo[found] == MAX_SAMPLES) { // limit fla
1088 int32_t limit=0; local
[all...]
H A Drbt.cpp206 * limit, with replacements happening under it.
221 * limit on the number of iterations that we take, one that is
223 * prevent a server from hanging. The limit is 16 times the
228 uint32_t loopLimit = index.limit - index.start;
262 while (index.start < index.limit &&
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DDatabaseEntry.java186 this.size = this.ulen = data.limit();
187 setUserBuffer(data.limit(), true);
/macosx-10.9.5/ICU-511.35/icuSources/io/
H A Dustdio.c186 pos.limit = textLength;
195 /* now: start/limit point to the transliterated text */
199 f->fTranslit->length = pos.limit;
489 const UChar *limit; local
524 limit = str->fLimit;
527 limit = alias + (n - count);
532 while (alias < limit && !IS_FIRST_STRING_DELIMITER(*alias)) {
537 if (alias < limit && IS_FIRST_STRING_DELIMITER(*alias)) {
552 if (alias < limit) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DCopiedBlock.h118 JSValue* limit = reinterpret_cast_ptr<JSValue*>(wildernessEnd());
119 for (JSValue* currentValue = reinterpret_cast_ptr<JSValue*>(wilderness()); currentValue < limit; currentValue++)
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A Dcodedirectory.cpp229 // Hash the next limit bytes of a file and return the digest.
235 size_t CodeDirectory::generateHash(DynamicHash *hasher, FileDesc fd, Hashing::Byte *digest, size_t limit) argument
237 size_t size = hashFileData(fd, hasher, limit);
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Ddyldcache.h82 mach_vm_address_t limit() const { return address() + size(); } function in struct:DYLDCache::Mapping
88 { return address >= this->address() && address < this->limit(); }
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A Dcodedirectory.cpp229 // Hash the next limit bytes of a file and return the digest.
235 size_t CodeDirectory::generateHash(DynamicHash *hasher, FileDesc fd, Hashing::Byte *digest, size_t limit) argument
237 size_t size = hashFileData(fd, hasher, limit);
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Ddyldcache.h82 mach_vm_address_t limit() const { return address() + size(); } function in struct:DYLDCache::Mapping
88 { return address >= this->address() && address < this->limit(); }
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebViewPrivate.h201 - (NSUInteger)countMatchesForText:(NSString *)string options:(WebFindOptions)options highlight:(BOOL)highlight limit:(NSUInteger)limit markMatches:(BOOL)markMatches;
202 - (NSUInteger)countMatchesForText:(NSString *)string inDOMRange:(DOMRange *)range options:(WebFindOptions)options highlight:(BOOL)highlight limit:(NSUInteger)limit markMatches:(BOOL)markMatches;
605 - (NSUInteger)markAllMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(BOOL)highlight limit:(NSUInteger)limit;
606 - (NSUInteger)countMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(BOOL)highlight limit:(NSUInteger)limit markMatches:(BOOL)markMatches;
/macosx-10.9.5/emacs-92/emacs/src/
H A Dcharset.h655 #define NEXT_CHAR_BOUNDARY(p, limit) \
657 if ((p) < (limit)) \
664 #define PREV_CHAR_BOUNDARY(p, limit) \
666 if ((p) > (limit)) \
669 const unsigned char *p_limit = max (limit, p0 - MAX_MULTIBYTE_LENGTH);\
678 #define AT_CHAR_BOUNDARY_P(result, p, limit) \
680 if (CHAR_HEAD_P (*(p)) || (p) <= limit) \
686 PREV_CHAR_BOUNDARY (p_aux, limit); \
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVChatRoom.h70 - (void) setLimit:(unsigned int) limit;
71 - (unsigned int) limit;

Completed in 511 milliseconds

<<11121314151617181920>>