Searched refs:iter (Results 76 - 100 of 350) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp189 auto iter = g_channel_map->try_emplace(name, channel); local
190 assert(iter.second == true);
191 (void)iter;
195 auto iter = g_channel_map->find(name); local
196 assert(iter != g_channel_map->end());
197 iter->second.Disable(UINT32_MAX);
198 g_channel_map->erase(iter);
205 auto iter = g_channel_map->find(channel); local
206 if (iter == g_channel_map->end()) {
211 ? iter
220 auto iter = g_channel_map->find(channel); local
[all...]
/freebsd-12-stable/contrib/libucl/tests/
H A Dtest_schema.c98 ucl_object_iter_t iter = NULL; local
117 while ((test = ucl_object_iterate (tests, &iter, true)) != NULL) {
135 ucl_object_iter_t iter = NULL; local
154 while ((elt = ucl_object_iterate (obj, &iter, true)) != NULL) {
/freebsd-12-stable/contrib/atf/atf-c++/
H A Dtests_test.cpp53 for (std::vector< std::string >::const_iterator iter = ws.begin();
54 iter != ws.end(); iter++)
55 std::cout << ">>" << *iter << "<<\n"; local
H A Dbuild_test.cpp49 for (typename C::const_iterator iter = c.begin(); iter != c.end();
50 iter++)
51 std::cout << " '" << *iter << "'"; local
/freebsd-12-stable/crypto/openssl/crypto/pkcs12/
H A Dp12_crt.c32 STACK_OF(X509) *ca, int nid_key, int nid_cert, int iter,
52 if (!iter)
53 iter = PKCS12_DEFAULT_ITER;
83 if (bags && !PKCS12_add_safe(&safes, bags, nid_cert, iter, pass))
90 bag = PKCS12_add_key(&bags, pkey, keytype, iter, nid_key, pass);
173 EVP_PKEY *key, int key_usage, int iter,
187 iter, p8);
207 int nid_safe, int iter, const char *pass)
230 p7 = PKCS12_pack_p7encdata(nid_safe, pass, -1, NULL, 0, iter, bags);
31 PKCS12_create(const char *pass, const char *name, EVP_PKEY *pkey, X509 *cert, STACK_OF(X509) *ca, int nid_key, int nid_cert, int iter, int mac_iter, int keytype) argument
H A Dp12_local.h13 ASN1_INTEGER *iter; /* defaults to 1 */ member in struct:PKCS12_MAC_DATA_st
H A Dp12_key.c31 int saltlen, int id, int iter, int n,
46 id, iter, n, out, md_type);
54 int saltlen, int id, int iter, int n,
69 id, iter, n, out, md_type);
77 int saltlen, int id, int iter, int n,
96 fprintf(stderr, "ID %d, ITER %d\n", id, iter);
131 for (j = 1; j < iter; j++) {
30 PKCS12_key_gen_asc(const char *pass, int passlen, unsigned char *salt, int saltlen, int id, int iter, int n, unsigned char *out, const EVP_MD *md_type) argument
53 PKCS12_key_gen_utf8(const char *pass, int passlen, unsigned char *salt, int saltlen, int id, int iter, int n, unsigned char *out, const EVP_MD *md_type) argument
76 PKCS12_key_gen_uni(unsigned char *pass, int passlen, unsigned char *salt, int saltlen, int id, int iter, int n, unsigned char *out, const EVP_MD *md_type) argument
/freebsd-12-stable/crypto/openssl/crypto/evp/
H A Dp5_crpt2.c32 const unsigned char *salt, int saltlen, int iter,
91 for (j = 1; j < iter; j++) {
117 fprintf(stderr, "Iteration count %d\n", iter);
125 const unsigned char *salt, int saltlen, int iter,
128 return PKCS5_PBKDF2_HMAC(pass, passlen, salt, saltlen, iter, EVP_sha1(),
191 int saltlen, iter; local
247 iter = ASN1_INTEGER_get(kdf->iter);
248 if (!PKCS5_PBKDF2_HMAC(pass, passlen, salt, saltlen, iter, prfmd,
31 PKCS5_PBKDF2_HMAC(const char *pass, int passlen, const unsigned char *salt, int saltlen, int iter, const EVP_MD *digest, int keylen, unsigned char *out) argument
124 PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen, const unsigned char *salt, int saltlen, int iter, int keylen, unsigned char *out) argument
/freebsd-12-stable/sys/dev/vmware/vmci/
H A Dvmci_doorbell.c253 struct vmci_doorbell_entry *iter; local
258 vmci_list_scan(iter, &vmci_doorbell_it.entries[bucket], idx_list_item) {
259 if (idx == iter->idx)
260 return (iter);
851 struct vmci_doorbell_entry *iter; local
856 vmci_list_scan(iter, &vmci_doorbell_it.entries[bucket], idx_list_item) {
857 if (iter->idx == notify_idx &&
858 atomic_load_int(&iter->active) == 1) {
859 ASSERT(iter->notify_cb);
860 if (iter
[all...]
/freebsd-12-stable/contrib/apr/tables/
H A Dapr_skiplist.c337 apr_skiplistnode **iter,
344 if (iter) {
345 *iter = NULL;
355 if (iter) {
356 *iter = NULL;
363 if (iter) {
364 *iter = m;
370 apr_skiplistnode **iter,
373 return find_compare(sl, data, iter, comp, 0);
376 APR_DECLARE(void *) apr_skiplist_find(apr_skiplist *sl, void *data, apr_skiplistnode **iter) argument
336 find_compare(apr_skiplist *sli, void *data, apr_skiplistnode **iter, apr_skiplist_compare comp, int last) argument
369 apr_skiplist_find_compare(apr_skiplist *sl, void *data, apr_skiplistnode **iter, apr_skiplist_compare comp) argument
381 apr_skiplist_last_compare(apr_skiplist *sl, void *data, apr_skiplistnode **iter, apr_skiplist_compare comp) argument
388 apr_skiplist_last(apr_skiplist *sl, void *data, apr_skiplistnode **iter) argument
403 apr_skiplist_next(apr_skiplist *sl, apr_skiplistnode **iter) argument
412 apr_skiplist_previous(apr_skiplist *sl, apr_skiplistnode **iter) argument
421 apr_skiplist_element(apr_skiplistnode *iter) argument
688 apr_skiplist_remove_node(apr_skiplist *sl, apr_skiplistnode *iter, apr_skiplist_freefunc myfree) argument
[all...]
/freebsd-12-stable/contrib/atf/atf-c++/detail/
H A Dprocess.cpp55 for (typename C::const_iterator iter = c.begin(); iter != c.end();
56 iter++) {
57 argv[pos] = (*iter).c_str();
72 for (const char* const* iter = argv; *iter != NULL; iter++)
73 c.push_back(std::string(*iter));
H A Dapplication.cpp162 for (options_set::const_iterator iter = opts.begin();
163 iter != opts.end(); iter++) {
164 const option& opt = (*iter);
H A Dprocess.hpp87 for (typename C::const_iterator iter = c.begin(); iter != c.end();
88 iter++)
89 m_args.push_back(*iter);
H A Dtext.cpp83 for (std::string::const_iterator iter = str.begin(); iter != str.end();
84 iter++)
85 lc += std::tolower(*iter);
/freebsd-12-stable/sys/contrib/vchiq/interface/vchi/connections/
H A Dconnection.h118 VCHI_MSG_ITER_T *iter,
135 const VCHI_MSG_ITER_T *iter );
139 VCHI_MSG_ITER_T *iter,
145 VCHI_MSG_ITER_T *iter );
149 VCHI_MSG_ITER_T *iter,
/freebsd-12-stable/contrib/ofed/libibnetdisc/
H A Dchassis.c614 char *iter; local
650 for (iter = system_name ; (*iter != ':') && (*iter != '\0') ; iter++);
651 if(*iter == '\0'){
655 *iter = '\0';
656 iter++;
658 system_type = iter;
659 for ( ; (*iter !
[all...]
/freebsd-12-stable/contrib/libucl/src/
H A Ducl_schema.c87 ucl_object_iter_t iter = NULL; local
91 while ((elt = ucl_object_iterate (obj, &iter, true)) != NULL) {
117 ucl_object_iter_t iter = NULL, piter; local
120 while (ret && (cur = ucl_object_iterate (deps, &iter, true)) != NULL) {
156 ucl_object_iter_t iter = NULL, piter = NULL; local
160 while (ret && (elt = ucl_object_iterate (schema, &iter, true)) != NULL) {
247 iter = ucl_object_iterate_new (obj);
249 while ((elt = ucl_object_iterate_safe (iter, true)) != NULL) {
281 ucl_object_iterate_free (iter);
282 iter
308 ucl_object_iter_t iter = NULL; local
374 ucl_object_iter_t iter = NULL; local
450 ucl_object_iter_t iter = NULL; local
491 ucl_object_iter_t iter = NULL, piter = NULL; local
608 ucl_object_iter_t iter = NULL; local
664 ucl_object_iter_t iter = NULL; local
936 ucl_object_iter_t iter = NULL; local
[all...]
/freebsd-12-stable/contrib/ntp/include/
H A Dntp_lists.h419 #define ITER_DLIST_BEGIN(listhead, iter, link, entrytype) \
423 for ((iter) = (listhead).link.f; \
424 (iter) != &(listhead) \
425 && ((i_dl_nextiter = (iter)->link.f), TRUE); \
426 (iter) = i_dl_nextiter) {
431 #define REV_ITER_DLIST_BEGIN(listhead, iter, link, entrytype) \
435 for ((iter) = (listhead).link.b; \
436 (iter) != &(listhead) \
437 && ((i_dl_nextiter = (iter)->link.b), TRUE); \
438 (iter)
[all...]
/freebsd-12-stable/contrib/ipfilter/tools/
H A Dippool.c971 ipflookupiter_t iter; local
977 obj.ipfo_size = sizeof(iter);
978 obj.ipfo_ptr = &iter;
980 iter.ili_type = IPLT_POOL;
981 iter.ili_otype = IPFLOOKUPITER_LIST;
982 iter.ili_ival = IPFGENITER_LOOKUP;
983 iter.ili_nitems = 1;
984 iter.ili_data = &pool;
985 iter.ili_unit = role;
986 *iter
1010 ipflookupiter_t iter; local
1046 ipflookupiter_t iter; local
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DRegisterNumber.cpp89 Collection::iterator iter = m_kind_regnum_map.find(kind);
90 if (iter != m_kind_regnum_map.end()) {
91 return iter->second;
/freebsd-12-stable/contrib/wpa/src/drivers/
H A Ddriver_nl80211_monitor.c103 struct ieee80211_radiotap_iterator iter; local
115 if (ieee80211_radiotap_iterator_init(&iter, (void *) buf, len, NULL)) {
121 ret = ieee80211_radiotap_iterator_next(&iter);
129 switch (iter.this_arg_index) {
131 if (*iter.this_arg & IEEE80211_RADIOTAP_F_FCS)
139 failed = le_to_host16((*(le16 *) iter.this_arg)) &
148 datarate = *iter.this_arg * 5;
151 ssi_signal = (s8) *iter.this_arg;
160 handle_frame(drv, buf + iter._max_length,
161 len - iter
[all...]
/freebsd-12-stable/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.h18 dbus_bool_t wpa_dbus_dict_open_write(DBusMessageIter *iter,
21 dbus_bool_t wpa_dbus_dict_close_write(DBusMessageIter *iter,
141 dbus_bool_t wpa_dbus_dict_open_read(DBusMessageIter *iter,
/freebsd-12-stable/sys/kern/
H A Dsubr_kdb.c134 struct kdb_dbbe **iter; local
139 SET_FOREACH(iter, kdb_dbbe_set) {
140 if ((*iter)->dbbe_active == 0)
141 sbuf_printf(&sbuf, "%s ", (*iter)->dbbe_name);
450 struct kdb_dbbe *be, **iter; local
452 SET_FOREACH(iter, kdb_dbbe_set) {
453 be = *iter;
489 struct kdb_dbbe *be, **iter; local
495 SET_FOREACH(iter, kdb_dbbe_set) {
496 be = *iter;
[all...]
/freebsd-12-stable/contrib/xz/src/liblzma/api/lzma/
H A Dindex.h471 * \param iter Pointer to a lzma_index_iter structure
488 lzma_index_iter *iter, const lzma_index *i) lzma_nothrow;
497 extern LZMA_API(void) lzma_index_iter_rewind(lzma_index_iter *iter)
504 * \param iter Iterator initialized with lzma_index_iter_init()
508 * \return If next Block or Stream matching the mode was found, *iter
510 * Stream matching the mode is found, *iter is not modified
512 * value, *iter is not modified and this function returns true.
515 lzma_index_iter *iter, lzma_index_iter_mode mode)
526 * \param iter Iterator that was earlier initialized with
534 * uncompressed offset is stored into *iter
[all...]
/freebsd-12-stable/crypto/heimdal/lib/hx509/
H A Dks_null.c63 hx509_certs certs, void *data, void *iter, hx509_cert *cert)
62 null_iter(hx509_context context, hx509_certs certs, void *data, void *iter, hx509_cert *cert) argument

Completed in 311 milliseconds

1234567891011>>