Searched refs:iter (Results 226 - 250 of 612) sorted by relevance

1234567891011>>

/macosx-10.10.1/postfix-255/postfix/src/smtp/
H A Dsmtp_sasl_auth_cache.c233 SMTP_ITERATOR *iter = session->iterator; local
238 key = smtp_sasl_auth_cache_make_key(STR(iter->host), session->sasl_username);
259 SMTP_ITERATOR *iter = session->iterator; local
263 key = smtp_sasl_auth_cache_make_key(STR(iter->host), session->sasl_username);
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DStoredCollections.java247 * @param iter an iterator to clone.
255 public static Iterator iterator(Iterator iter) { argument
257 return ((BaseIterator) iter).dup();
/macosx-10.10.1/BerkeleyDB-21/db/mod_db4/
H A Dskiplist.h66 void *skiplist_find_compare(Skiplist *sl, void *data, struct skiplistnode **iter,
68 void *skiplist_find(Skiplist *sl, void *data, struct skiplistnode **iter);
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Dlock003.tcl11 proc lock003 { {iter 500} {max 1000} {procs 5} } {
46 # $testdir $iter $objs $wait $ldegree $reads &"
49 $testdir $iter $objs $wait $ldegree $reads &]
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITPropertyAccess32_64.cpp225 void JIT::emitSlow_op_get_by_val(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) argument
232 linkSlowCase(iter); // property int32 check
233 linkSlowCaseIfNotJSCell(iter, base); // base cell check
236 linkSlowCase(iter); // base array check
248 linkSlowCase(iter); // vector length check
249 linkSlowCase(iter); // empty value
407 void JIT::emitSlow_op_put_by_val(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) argument
414 linkSlowCase(iter); // property int32 check
415 linkSlowCaseIfNotJSCell(iter, base); // base cell check
416 linkSlowCase(iter); // bas
490 emitSlow_op_get_by_id(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) argument
538 emitSlow_op_put_by_id(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) argument
622 int iter = currentInstruction[5].u.operand; local
647 emitSlow_op_get_by_pname(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) argument
713 emitSlow_op_resolve_scope(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) argument
786 emitSlow_op_get_from_scope(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) argument
876 emitSlow_op_put_to_scope(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/authd/
H A Dauthtoken.h73 bool auth_token_credentials_iterate(auth_token_t, credential_iterator_t iter);
79 bool auth_token_rights_iterate(auth_token_t, credential_iterator_t iter);
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dlist_test.c274 atf_list_iter_t iter; local
281 atf_list_for_each(iter, &list) {
296 atf_list_for_each(iter, &list) {
297 printf("Retrieved item: %d\n", *(int *)atf_list_iter_data(iter));
313 atf_list_citer_t iter; local
320 atf_list_for_each_c(iter, &list) {
335 atf_list_for_each_c(iter, &list) {
337 *(const int *)atf_list_citer_data(iter));
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Dfs.cpp444 for (const_iterator iter = begin(); iter != end(); iter++)
445 ns.insert((*iter).first);
480 for (std::vector< std::string >::const_iterator iter = dirs.begin();
481 !found && iter != dirs.end(); iter++) {
482 const path& dir = path(*iter);
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dhash.h98 struct curl_hash_iterator *iter);
100 Curl_hash_next_element(struct curl_hash_iterator *iter);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Delf-eh-frame.c57 read_byte (bfd_byte **iter, bfd_byte *end, unsigned char *result) argument
59 if (*iter >= end)
61 *result = *((*iter)++);
69 skip_bytes (bfd_byte **iter, bfd_byte *end, bfd_size_type length) argument
71 if ((bfd_size_type) (end - *iter) < length)
73 *iter = end;
76 *iter += length;
84 skip_leb128 (bfd_byte **iter, bfd_byte *end) argument
88 if (!read_byte (iter, end, &byte))
98 read_uleb128 (bfd_byte **iter, bfd_byt argument
117 read_sleb128(bfd_byte **iter, bfd_byte *end, bfd_signed_vma *value) argument
326 skip_cfa_op(bfd_byte **iter, bfd_byte *end, unsigned int encoded_ptr_width) argument
[all...]
/macosx-10.10.1/dtrace-147/tools/ctfconvert/
H A Dfifo.c140 fifo_iter(fifo_t *f, int (*iter)(void *data, void *arg), void *arg)
147 if ((rc = iter(fn->fn_data, arg)) < 0)
/macosx-10.10.1/groff-38/groff/src/utils/lkbib/
H A Dlkbib.cpp124 search_list_iterator iter(&list, buffer);
128 for (count = 0; iter.next(&start, &len); count++) {
/macosx-10.10.1/groff-38/groff/src/utils/lookbib/
H A Dlookbib.cpp121 search_list_iterator iter(&list, line);
125 for (count = 0; iter.next(&start, &len); count++) {
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/Streams/
H A DIrDiscovery.cpp260 CListIterator *iter = CListIterator::cListIterator(fPendingDiscoverList); local
261 require(iter, Fail);
262 for( pendingRequest = ( TIrDiscoverReply * )iter->FirstItem(); iter->More();
263 pendingRequest = ( TIrDiscoverReply * )iter->NextItem() ) {
281 iter->release();
/macosx-10.10.1/ruby-106/ruby/
H A Drange.c284 VALUE *iter = arg; local
286 if (FIXNUM_P(iter[0])) {
287 iter[0] -= INT2FIX(1) & ~FIXNUM_FLAG;
290 iter[0] = rb_funcall(iter[0], '-', 1, INT2FIX(1));
292 if (iter[0] == INT2FIX(0)) {
294 iter[0] = iter[1];
302 VALUE *iter = arg; local
304 if (FIXNUM_P(iter[
422 VALUE args[2], iter[2]; local
450 VALUE args[2], iter[2]; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Dfilter.c288 GC* iter; local
290 for (i = 0, iter = gx->first;
291 iter != NULL;
292 iter = iter->next, i++) {
294 l->v [i] = iter->name;
943 GC* iter; local
945 for (i = 0, iter = gx->first;
946 iter != NULL;
947 iter
1019 GC* iter; local
1136 GC* iter; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dtstnorm.cpp506 void BasicNormalizerTest::backAndForth(Normalizer* iter, const UnicodeString& input) argument
509 iter->setText(input, status);
513 for (ch = iter->first(); ch != iter->DONE; ch = iter->next()) {
519 for (ch = iter->last(); ch != iter->DONE; ch = iter->previous()) {
551 void BasicNormalizerTest::iterateTest(Normalizer* iter, argument
562 iter
567 assertEqual(const UnicodeString& input, const UnicodeString& expected, Normalizer* iter, const UnicodeString& errPrefix) argument
[all...]
H A Dstrcase.cpp347 void *iter, const char *localeID, uint32_t options) {
366 result.toTitle((BreakIterator *)iter, locale, options);
383 result.toTitle((BreakIterator *)iter, locale);
398 if(iter!=NULL) {
400 UBreakIterator *clone=ubrk_safeClone((UBreakIterator *)iter, NULL, NULL, errorCode);
455 LocalUBreakIteratorPointer iter; local
488 iter.adoptInstead(ubrk_open((UBreakIteratorType)type, cLocaleID, NULL, 0, &status));
494 iter.adoptInstead(ubrk_openRules(rules, LENGTHOF(rules), NULL, 0, &parseError, &status));
517 LocalPointer<UMemory> iter; local
519 TestCasingImpl(input, output, whichCase, iter
344 TestCasingImpl(const UnicodeString &input, const UnicodeString &output, int32_t whichCase, void *iter, const char *localeID, uint32_t options) argument
544 FullCaseFoldingIterator iter; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/collperf/
H A Dcollperf.cpp138 UCollationElements *iter; member in class:CmdIter
145 iter = ucol_openElements(col, NULL, 0, &status);
146 ucol_setText(iter, dummytext, 1, &status);
149 ucol_closeElements(iter);
162 ucol_setText(iter, data->dataOf(i), -1, status);
163 while (ucol_next(iter, status) != UCOL_NULLORDER) exec_count++;
167 ucol_setText(iter, data->dataOf(i), data->lengthOf(i) , status);
168 while (ucol_next(iter, status) != UCOL_NULLORDER) exec_count++;
172 ucol_setText(iter, data->dataOf(i), -1, status);
173 while (ucol_previous(iter, statu
187 UCollationElements *iter; member in class:CmdIterAll
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/xdr_rpc/
H A Dxdr_test.cpp1772 int ret, iter; local
1804 for (iter = 0; iter < N_ITERS; ++iter)
1809 fprintf(stderr, "%s, round %d (encode error)\n", func, iter+1);
1815 fprintf(stderr, "%s, round %d (allocation error)\n", func, iter+1);
1821 fprintf(stderr, "%s, round %d (decode error)\n", func, iter+1);
1829 func, iter+1);
1837 func, iter+1);
1841 printf("CSSM_CONTEXT compared OK, round %d\n", iter
2015 int ret, iter; local
2156 int ret, iter; local
2297 int ret, iter; local
2435 int ret, iter; local
[all...]
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-sh/
H A Datf-check.cpp200 struct name_number* iter = signal_names_to_numbers; local
202 while (signo == INT_MIN && iter->name != NULL) {
203 if (str == iter->name || str == std::string("sig") + iter->name)
204 signo = iter->signo;
206 iter++;
580 for (std::vector< status_check >::const_iterator iter = checks.begin();
581 !ok && iter != checks.end(); iter++) {
582 ok |= run_status_check(*iter, resul
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp351 FreeRangeHeader* iter = head->Next; local
356 while (iter != head) {
357 if (iter->BlockSize > largest) {
358 largest = iter->BlockSize;
359 candidateBlock = iter;
361 iter = iter->Next;
470 FreeRangeHeader* iter = head->Next; local
475 while (iter != head) {
476 if (iter
[all...]
/macosx-10.10.1/swig-12/Lib/guile/
H A Dguile_gh_run.swg99 swig_module_info *iter;
101 iter = module;
103 if ((normal && (unsigned long) SCM_TYP16(s) == *((int *)iter->clientdata))) {
105 return iter->types[(long) SCM_CAR(s) >> 16];
107 iter = iter->next;
108 } while (iter != module);
/macosx-10.10.1/Security-57031.1.35/Security/Breadcrumb/
H A DSecBreadcrumb.c295 uint32_t iter; local
297 memcpy(&iter, CFDataGetMutableBytePtr(newEncryptedKey) + kKeySize + kSaltSize, sizeof(iter));
298 iter = ntohl(iter);
302 iter,
321 iter,
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/bench/
H A Dlibbench.tcl215 set opts(-iter) $BENCH(ITERS)
230 if {$opts(-iter) > $val} { set opts(-iter) $val }
281 for {set i 0} {$i < $opts(-iter)} {incr i} {
296 set res [list [expr {int ($total/$opts(-iter))}] microseconds per iteration]
300 [list time $opts(-body) $opts(-iter)]} res]
391 -iter* { set BENCH(ITERS) [lindex $argv 1] }

Completed in 200 milliseconds

1234567891011>>