HomeSort by: relevance | last modified time | path
    Searched refs:it (Results 1 - 25 of 3394) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/mpl/bind/dist/lib/dns/
rriterator.c 40 dns_rriterator_init(dns_rriterator_t *it, dns_db_t *db, dns_dbversion_t *ver,
43 it->magic = RRITERATOR_MAGIC;
44 it->db = db;
45 it->dbit = NULL;
46 it->ver = ver;
47 it->now = now;
48 it->node = NULL;
49 result = dns_db_createiterator(it->db, 0, &it->dbit);
53 it->rdatasetit = NULL
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
rriterator.c 40 dns_rriterator_init(dns_rriterator_t *it, dns_db_t *db, dns_dbversion_t *ver,
43 it->magic = RRITERATOR_MAGIC;
44 it->db = db;
45 it->dbit = NULL;
46 it->ver = ver;
47 it->now = now;
48 it->node = NULL;
49 result = dns_db_createiterator(it->db, 0, &it->dbit);
53 it->rdatasetit = NULL
    [all...]
  /src/distrib/syspkg/sets/base/base-locale-it/
Makefile 3 PKGBASE=base-locale-it
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/list_update_map_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
51 for (const_iterator it = begin(); it != end(); ++it)
53 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/list_update_map_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
51 for (const_iterator it = begin(); it != end(); ++it)
53 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
65 for (const_iterator it = begin(); it != end(); ++it)
68 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
69 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
65 for (const_iterator it = begin(); it != end(); ++it)
68 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
69 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /src/tests/lib/libc/sys/
t_getitimer.c 66 struct itimerval it; local
73 (void)memset(&it, 0, sizeof(struct itimerval));
75 ATF_REQUIRE(getitimer(ITIMER_REAL, &it) == 0);
77 if (it.it_value.tv_sec != 0 || it.it_value.tv_usec != 0)
80 ATF_REQUIRE(getitimer(ITIMER_VIRTUAL, &it) == 0);
82 if (it.it_value.tv_sec != 0 || it.it_value.tv_usec != 0)
85 ATF_REQUIRE(getitimer(ITIMER_PROF, &it) == 0);
87 if (it.it_value.tv_sec != 0 || it.it_value.tv_usec != 0
104 struct itimerval it; local
124 struct itimerval it; local
158 struct itimerval it, ot; local
178 struct itimerval it, ot; local
215 const struct itimerval it[] = { local
    [all...]
  /src/tests/usr.bin/indent/
lsym_for.c 53 #define foreach(list, it) for (it = list.first; it != NULL; it = it->next)
65 /* $ No space after 'foreach' since it looks like a function name. */
66 foreach(list, it)
67 println(it->data);
69 /* $ No space after 'foreach' since it looks like a function name. */
70 foreach(list, it) {
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
tasn_fre.c 18 void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it)
20 ossl_asn1_item_embed_free(&val, it, 0);
23 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
25 ossl_asn1_item_embed_free(pval, it, 0);
28 void ossl_asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed)
32 const ASN1_AUX *aux = it->funcs;
38 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && *pval == NULL)
45 switch (it->itype) {
48 if (it->templates)
49 ossl_asn1_template_free(pval, it->templates)
    [all...]
tasn_new.c 18 static int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
21 static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
23 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
27 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
29 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
32 if (ASN1_item_ex_new(&ret, it) > 0)
37 ASN1_VALUE *ASN1_item_new_ex(const ASN1_ITEM *it, OSSL_LIB_CTX *libctx,
41 if (asn1_item_embed_new(&ret, it, 0, libctx, propq) > 0)
48 int ossl_asn1_item_ex_new_intern(ASN1_VALUE **pval, const ASN1_ITEM *it,
51 return asn1_item_embed_new(pval, it, 0, libctx, propq)
208 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
tasn_fre.c 18 void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it)
20 ossl_asn1_item_embed_free(&val, it, 0);
23 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
25 ossl_asn1_item_embed_free(pval, it, 0);
28 void ossl_asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed)
32 const ASN1_AUX *aux = it->funcs;
38 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && *pval == NULL)
45 switch (it->itype) {
48 if (it->templates)
49 ossl_asn1_template_free(pval, it->templates)
    [all...]
tasn_new.c 18 static int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
21 static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
23 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
27 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
29 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
32 if (ASN1_item_ex_new(&ret, it) > 0)
37 ASN1_VALUE *ASN1_item_new_ex(const ASN1_ITEM *it, OSSL_LIB_CTX *libctx,
41 if (asn1_item_embed_new(&ret, it, 0, libctx, propq) > 0)
49 int ossl_asn1_item_ex_new_intern(ASN1_VALUE **pval, const ASN1_ITEM *it,
52 return asn1_item_embed_new(pval, it, 0, libctx, propq)
210 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
tasn_fre.c 18 void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it)
20 asn1_item_embed_free(&val, it, 0);
23 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
25 asn1_item_embed_free(pval, it, 0);
28 void asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed)
32 const ASN1_AUX *aux = it->funcs;
38 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
45 switch (it->itype) {
48 if (it->templates)
49 asn1_template_free(pval, it->templates)
    [all...]
tasn_new.c 18 static int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
20 static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
22 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
25 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
27 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
30 if (ASN1_item_ex_new(&ret, it) > 0)
37 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
39 return asn1_item_embed_new(pval, it, 0);
42 int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed)
46 const ASN1_AUX *aux = it->funcs
204 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); local
    [all...]
  /src/external/bsd/elftosb/dist/common/
EvalContext.cpp 25 variable_map_t::const_iterator it = m_variables.find(name); local
26 return it != m_variables.end();
31 variable_map_t::const_iterator it = m_variables.find(name); local
32 if (it == m_variables.end())
37 return it->second.m_value;
42 variable_map_t::const_iterator it = m_variables.find(name); local
43 if (it == m_variables.end())
48 return it->second.m_size;
54 variable_map_t::const_iterator it = m_variables.find(name); local
55 if (it != m_variables.end() && it->second.m_isLocked
70 variable_map_t::const_iterator it = m_variables.find(name); local
81 variable_map_t::iterator it = m_variables.find(name); local
92 variable_map_t::iterator it = m_variables.find(name); local
103 variable_map_t::iterator it = m_variables.begin(); local
    [all...]
OptionDictionary.cpp 16 option_map_t::iterator it = m_options.begin(); local
17 for (; it != m_options.end(); ++it)
19 if (it->second.m_value)
21 delete it->second.m_value;
27 //! this instance, then the parent is asked if it contains the option.
52 option_map_t::const_iterator it = m_options.find(name); local
53 if (it == m_options.end())
65 return it->second.m_value;
68 //! If the option was not already present in the table, it is added
84 option_map_t::iterator it = m_options.find(name); local
130 option_map_t::const_iterator it = m_options.find(name); local
    [all...]
  /src/external/historical/nawk/dist/testdir/
t.8.y 4 # since it has only referred to $2, not created it,
5 # and thus only $1 exists (and it's null).
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
73 for (const_iterator it = begin(); it != end(); ++it)
76 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
77 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
73 for (const_iterator it = begin(); it != end(); ++it)
76 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
77 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /src/external/bsd/tradcpp/dist/tests/
t31.c 1 this line 'has /* no' comment */ in it
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/tree_policy/
order_statistics_imp.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
48 node_iterator it = node_begin(); local
51 while (it != end_it)
53 node_iterator l_it = it.get_l_child();
57 return *it;
59 it = l_it;
63 it = it.get_r_child()
81 node_const_iterator it = node_begin(); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/tree_policy/
order_statistics_imp.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
48 node_iterator it = node_begin(); local
51 while (it != end_it)
53 node_iterator l_it = it.get_l_child();
57 return *it;
59 it = l_it;
63 it = it.get_r_child()
81 node_const_iterator it = node_begin(); local
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/cc_hash_table_map_/
cmp_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
60 for (typename Other_Map_Type::const_iterator it = other.begin();
61 it != other.end(); ++it)
63 key_const_reference r_key = key_const_reference(PB_DS_V2F(*it));
73 if (p_mapped_value->second != it->second)
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/cc_hash_table_map_/
cmp_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
60 for (typename Other_Map_Type::const_iterator it = other.begin();
61 it != other.end(); ++it)
63 key_const_reference r_key = key_const_reference(PB_DS_V2F(*it));
73 if (p_mapped_value->second != it->second)

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>