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

1234567891011>>

/freebsd-current/crypto/heimdal/lib/krb5/
H A Dfcache.c890 struct fcache_iter *iter; local
892 iter = calloc(1, sizeof(*iter));
893 if (iter == NULL) {
897 iter->first = 1;
898 *cursor = iter;
905 struct fcache_iter *iter = cursor; local
910 if (iter == NULL)
913 if (!iter->first) {
917 iter
948 struct fcache_iter *iter = cursor; local
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dsyzkaller51.sh81 int iter __unused = 0;
82 for (;; iter++) {
H A Dsyzkaller50.sh74 int iter __unused = 0;
75 for (;; iter++) {
H A Dsyzkaller53.sh122 int iter __unused = 0;
123 for (;; iter++) {
H A Dsyzkaller26.sh85 int iter __unused = 0;
86 for (;; iter++) {
H A Dsyzkaller66.sh81 int iter __unused = 0;
82 for (;; iter++) {
H A Dsyzkaller21.sh293 int iter;
294 for (iter = 0;; iter++) {
296 sprintf(cwdbuf, "./%d", iter);
H A Dsyzkaller57.sh167 int iter = 0;
168 for (;; iter++) {
170 sprintf(cwdbuf, "./%d", iter);
H A Dsyzkaller11.sh221 int iter __unused;
222 for (iter = 0;; iter++) {
H A Dsyzkaller14.sh232 int iter __unused;
233 for (iter = 0;; iter++) {
/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dip_lookup.c659 ipflookupiter_t iter; local
664 err = ipf_inobj(softc, data, NULL, &iter, IPFOBJ_LOOKUPITER);
668 if (iter.ili_unit < IPL_LOGALL && iter.ili_unit > IPL_LOGMAX) {
673 if (iter.ili_ival != IPFGENITER_LOOKUP) {
679 token = ipf_token_find(softc, iter.ili_key, uid, ctx);
687 if (iter.ili_type == backends[i]->ipfl_type) {
690 token, &iter);
/freebsd-current/contrib/unbound/validator/
H A Dval_nsec3.h352 * @param iter: iteration count.
358 int* algo, size_t* iter, uint8_t** salt, size_t* saltlen);
366 * @param iter: iterations
374 int algo, size_t iter, uint8_t* salt, size_t saltlen, uint8_t* res,
/freebsd-current/contrib/cortex-strings/scripts/
H A Dlibplot.py10 return iter('m b g r c y k pink orange brown grey'.split())
/freebsd-current/contrib/atf/atf-c++/detail/
H A Dprocess_test.cpp300 for (argv_array::const_iterator iter = argv.begin(); iter != argv.end();
301 iter++) {
302 ATF_REQUIRE_EQ(*iter, vector[pos]);
/freebsd-current/contrib/kyua/utils/signals/
H A Dtimer_test.cpp103 iter = timers.begin(); iter != timers.end(); ++iter) {
104 const signals::timer* timer = *iter;
/freebsd-current/contrib/processor-trace/libipt/test/src/
H A Dptunit-block_cache.c258 uint64_t iter, index; local
272 for (iter = 0; iter < bfix_iterations; ++iter) {
/freebsd-current/contrib/mandoc/
H A Ddbm.c57 enum iter { enum
70 static enum iter iteration;
72 static struct dbm_res page_bytitle(enum iter, const struct dbm_match *);
233 page_bytitle(enum iter arg_iter, const struct dbm_match *arg_match)
/freebsd-current/crypto/openssl/test/helpers/
H A Dpkcs12.h39 int iter; member in struct:pkcs12_enc
/freebsd-current/contrib/atf/atf-c/
H A Dtc.c669 atf_map_citer_t iter; local
672 iter = atf_map_find_c(&tc->pimpl->m_config, name);
673 val = atf_map_citer_data(iter);
761 atf_map_citer_t iter; local
764 iter = atf_map_find_c(&tc->pimpl->m_vars, name);
765 val = atf_map_citer_data(iter);
780 atf_map_citer_t end, iter; local
782 iter = atf_map_find_c(&tc->pimpl->m_config, name);
784 return !atf_equal_map_citer_map_citer(iter, end);
790 atf_map_citer_t end, iter; local
[all...]
/freebsd-current/contrib/wpa/wpa_supplicant/
H A Deapol_test.py119 parser.add_argument('--iter', help='number of iterations')
127 iter = int(args.iter)
145 t[i] = threading.Thread(target=run, args=(str(i), iter,
/freebsd-current/sys/net/route/
H A Droute_ctl.h169 struct nhop_object *nhops_iter_start(struct nhop_iter *iter);
170 struct nhop_object *nhops_iter_next(struct nhop_iter *iter);
171 void nhops_iter_stop(struct nhop_iter *iter);
/freebsd-current/sys/gdb/
H A Dnetgdb.c250 struct kdb_dbbe *be, **iter; local
256 SET_FOREACH(iter, kdb_dbbe_set) {
257 be = *iter;
/freebsd-current/sys/contrib/dev/mediatek/mt76/mt7996/
H A Ddebugfs.c729 struct mt7996_twt_flow *iter; local
735 list_for_each_entry_rcu(iter, &dev->twt_list, list)
738 iter->wcid, iter->id,
739 iter->sched ? 's' : 'u',
740 iter->protection ? 'p' : '-',
741 iter->trigger ? 't' : '-',
742 iter->flowtype ? '-' : 'a',
743 iter->exp, iter
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxVector.cpp190 auto iter = m_children.find(idx), end = m_children.end(); local
191 if (iter != end)
192 return iter->second;
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DSimplifyConstraints.cpp23 if (auto iter = Substitutions.find(F.getAtom());
24 iter != Substitutions.end())
25 return *iter->second;

Completed in 183 milliseconds

1234567891011>>