Searched refs:it (Results 1 - 25 of 865) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssl/crypto/asn1/
H A Dtasn_fre.c18 void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it) argument
20 ossl_asn1_item_embed_free(&val, it, 0);
23 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
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) argument
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
146 ossl_asn1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed) argument
[all...]
H A Dtasn_new.c18 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) argument
32 if (ASN1_item_ex_new(&ret, it) > 0)
37 ASN1_VALUE *ASN1_item_new_ex(const ASN1_ITEM *it, OSSL_LIB_CTX *libctx, argument
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, argument
52 return asn1_item_embed_new(pval, it,
55 ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
60 asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed, OSSL_LIB_CTX *libctx, const char *propq) argument
174 asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
210 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); local
261 asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed) argument
329 asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
H A Da_dup.c52 void *ASN1_item_dup(const ASN1_ITEM *it, const void *x) argument
65 if (it->itype == ASN1_ITYPE_SEQUENCE || it->itype == ASN1_ITYPE_CHOICE
66 || it->itype == ASN1_ITYPE_NDEF_SEQUENCE) {
67 const ASN1_AUX *aux = it->funcs;
73 if (!asn1_cb(ASN1_OP_DUP_PRE, (ASN1_VALUE **)&x, it, NULL)
74 || !asn1_cb(ASN1_OP_GET0_LIBCTX, (ASN1_VALUE **)&x, it, &libctx)
75 || !asn1_cb(ASN1_OP_GET0_PROPQ, (ASN1_VALUE **)&x, it, &propq))
79 i = ASN1_item_i2d(x, &b, it);
85 ret = ASN1_item_d2i_ex(NULL, &p, i, it, libct
[all...]
H A Dx_bignum.c17 * as a BIGNUM directly. Currently it ignores the sign which isn't a problem
24 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
25 static int bn_secure_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
26 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
29 const ASN1_ITEM *it);
31 int utype, char *free_cont, const ASN1_ITEM *it);
33 int utype, char *free_cont, const ASN1_ITEM *it);
34 static int bn_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
65 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
74 static int bn_secure_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
83 bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
94 bn_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
115 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
130 bn_secure_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
149 bn_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx) argument
[all...]
H A Dasn1_local.h22 const ASN1_ITEM *it; member in struct:asn1_sctx_st
50 int ossl_asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it);
52 const ASN1_ITEM *it);
54 const ASN1_ITEM *it);
64 int ossl_asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it);
66 void ossl_asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it);
67 void ossl_asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
69 const ASN1_ITEM *it);
71 const ASN1_ITEM *it);
73 void ossl_asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, in
[all...]
H A Dx_int64.c29 static int uint64_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
38 static void uint64_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
44 static void uint64_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
50 const ASN1_ITEM *it)
60 if ((it->size & INTxx_FLAG_ZERO_DEFAULT) == INTxx_FLAG_ZERO_DEFAULT
63 if ((it->size & INTxx_FLAG_SIGNED) == INTxx_FLAG_SIGNED
74 int utype, char *free_cont, const ASN1_ITEM *it)
80 if (*pval == NULL && !uint64_new(pval, it))
96 if ((it->size & INTxx_FLAG_SIGNED) == 0 && neg) {
100 if ((it
49 uint64_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
73 uint64_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
114 uint64_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx) argument
124 uint32_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
133 uint32_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
139 uint32_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
144 uint32_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
175 uint32_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
223 uint32_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx) argument
[all...]
H A Dx_long.c21 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
22 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
25 const ASN1_ITEM *it);
27 int utype, char *free_cont, const ASN1_ITEM *it);
28 static int long_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
49 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
51 memcpy(pval, &it->size, COPY_SIZE(*pval, it->size));
55 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
57 memcpy(pval, &it
85 long_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
128 long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
189 long_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx) argument
[all...]
/freebsd-current/contrib/one-true-awk/testdir/
H A Dt.8.y4 # since it has only referred to $2, not created it,
5 # and thus only $1 exists (and it's null).
H A Dt.8.x4 # since it has created fields 1 and 2.
/freebsd-current/cddl/usr.sbin/zfsd/
H A Dcallout.cc77 for (std::list<Callout *>::iterator it(s_activeCallouts.begin());
78 it != s_activeCallouts.end(); it++) {
79 if (*it != this)
82 it = s_activeCallouts.erase(it);
83 if (it != s_activeCallouts.end()) {
90 timeradd(&(*it)->m_interval, &m_interval,
91 &(*it)->m_interval);
114 std::list<Callout *>::iterator it(s_activeCallout
197 std::list<Callout *>::iterator it; local
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libc/sys/
H A Dt_getitimer.c62 struct itimerval it; local
69 (void)memset(&it, 0, sizeof(struct itimerval));
71 ATF_REQUIRE(getitimer(ITIMER_REAL, &it) == 0);
73 if (it.it_value.tv_sec != 0 || it.it_value.tv_usec != 0)
76 ATF_REQUIRE(getitimer(ITIMER_VIRTUAL, &it) == 0);
78 if (it.it_value.tv_sec != 0 || it.it_value.tv_usec != 0)
81 ATF_REQUIRE(getitimer(ITIMER_PROF, &it) == 0);
83 if (it
100 struct itimerval it; local
120 struct itimerval it; local
155 struct itimerval it, ot; local
175 struct itimerval it, ot; local
[all...]
/freebsd-current/contrib/dma/
H A Daliases_parse.y85 struct stritem *it;
89 it = calloc(1, sizeof(*it));
90 if (it == NULL)
92 it->str = $1;
93 $$ = it;
97 struct stritem *it;
101 it = calloc(1, sizeof(*it));
102 if (it
[all...]
H A Dspool.c68 * One data file might be shared by linking it several times.
125 writequeuef(struct qitem *it) argument
130 queuefd = open_locked(it->queuefn, O_CREAT|O_EXCL|O_RDWR, 0660);
135 it->queuef = fdopen(queuefd, "w+");
136 if (it->queuef == NULL)
139 error = fprintf(it->queuef,
143 it->queueid,
144 it->sender,
145 it->addr);
150 if (fflush(it
164 struct qitem *it = NULL; local
238 struct qitem *it; local
285 struct qitem *it; local
347 delqueue(struct qitem *it) argument
359 acquirespool(struct qitem *it) argument
390 struct qitem *it; local
[all...]
H A Ddma.c179 struct qitem *it, *tit; local
184 it = calloc(1, sizeof(*it));
185 if (it == NULL)
187 it->addr = strdup(str);
188 if (it->addr == NULL)
191 it->sender = queue->sender;
192 host = strrchr(it->addr, '@');
200 if (strcmp(tit->addr, it->addr) == 0) {
201 free(it
247 struct qitem *it; local
315 deliver(struct qitem *it) argument
378 struct qitem *it; local
391 struct qitem *it; local
[all...]
/freebsd-current/contrib/kyua/utils/text/
H A Doperations.cpp52 for (std::string::const_iterator it = in.begin();
53 it != in.end(); ++it) {
54 unsigned char c = (unsigned char)*it;
74 quoted << "&amp;#" << static_cast< std::string::size_type >(*it)
77 quoted << *it; local
/freebsd-current/contrib/openbsm/bin/auditdistd/
H A Dsigtimedwait.h49 struct itimerval it; local
59 timerclear(&it.it_interval);
60 it.it_value.tv_sec = timeout->tv_sec;
61 it.it_value.tv_usec = timeout->tv_nsec / 1000;
62 if (it.it_value.tv_sec == 0 && it.it_value.tv_usec == 0)
63 it.it_value.tv_usec = 1;
64 PJDLOG_VERIFY(setitimer(ITIMER_REAL, &it, NULL) == 0);
72 timerclear(&it.it_interval);
73 timerclear(&it
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DCocoaConventions.cpp104 StringRef::iterator it = functionName.begin(); local
105 StringRef::iterator start = it;
110 for ( ; it != endI ; ++it) {
112 char ch = *it;
115 if (ch == 'c' && it != start && isLetter(*(it - 1)))
118 ++it;
124 if (it == endI)
129 StringRef suffix = functionName.substr(it
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTaskTimer.cpp26 auto it = m_thread_timers.find(tid); local
27 if (it == m_thread_timers.end())
28 it = m_thread_timers.try_emplace(tid, ScopedTaskTimer{}).first;
29 return it->second;
/freebsd-current/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DStringEntryToDwarfStringPoolEntryMap.h30 DwarfStringPoolEntriesTy::iterator it = DwarfStringPoolEntries.find(String); local
32 if (it == DwarfStringPoolEntries.end()) {
40 it = DwarfStringPoolEntries.insert(std::make_pair(String, DataPtr)).first;
43 assert(it->second != nullptr);
44 return it->second;
51 DwarfStringPoolEntriesTy::const_iterator it = local
54 assert(it != DwarfStringPoolEntries.end());
55 assert(it->second != nullptr);
56 return it->second;
/freebsd-current/contrib/opencsd/decoder/source/pkt_printers/
H A Dtrc_print_fact.cpp95 std::vector<ItemPrinter *>::iterator it; local
96 it = printer_list.begin();
97 while (it != printer_list.end())
99 delete *it;
100 it++;
107 std::vector<ItemPrinter *>::iterator it; local
108 it = printer_list.begin();
109 while (it != printer_list.end())
111 if (*it == pPrinter)
113 printer_list.erase(it);
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DDeltaAlgorithm.cpp33 for (changeset_ty::const_iterator it = S.begin(),
34 ie = S.end(); it != ie; ++it, ++idx)
35 ((idx < N) ? LHS : RHS).insert(*it);
71 for (changesetlist_ty::const_iterator it = Sets.begin(),
72 ie = Sets.end(); it != ie; ++it) {
74 if (GetTestResult(*it)) {
76 Split(*it, Sets);
77 Res = Delta(*it, Set
[all...]
/freebsd-current/contrib/opencsd/decoder/source/mem_acc/
H A Dtrc_mem_acc_file.cpp57 std::list<FileRegionMemAccessor *>::iterator it; local
58 it = m_access_regions.begin();
59 while(it != m_access_regions.end())
61 delete (*it);
62 it++;
103 std::list<FileRegionMemAccessor *>::const_iterator it; local
104 it = m_access_regions.begin();
105 while((it != m_access_regions.end()) && (p_region == 0))
107 if((*it)->addrInRange(startAddr))
108 p_region = *it;
127 std::map<std::string, TrcMemAccessorFile *>::iterator it = s_FileAccessorMap.find(pathToFile); local
169 std::map<std::string, TrcMemAccessorFile *>::iterator it = s_FileAccessorMap.find(p_accessor->getFilePath()); local
182 std::map<std::string, TrcMemAccessorFile *>::const_iterator it = s_FileAccessorMap.find(pathToFile); local
191 std::map<std::string, TrcMemAccessorFile *>::iterator it = s_FileAccessorMap.find(pathToFile); local
267 std::list<FileRegionMemAccessor *>::iterator it; local
319 std::list<FileRegionMemAccessor *>::const_iterator it; local
353 std::list<FileRegionMemAccessor *>::const_iterator it; local
377 std::list<FileRegionMemAccessor *>::const_iterator it; local
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_lzw.h36 for (auto it = begin; it != end; ++it)
37 if (prefix_to_code.try_emplace({kNoPrefix, *it}, 0).second)
38 dict_len1.push_back(*it);
63 for (auto it = begin; it != end; ++it) {
65 auto ins = prefix_to_code.try_emplace({match, *it}, prefix_to_code.size());
72 match = prefix_to_code.find({kNoPrefix, *it})
[all...]
/freebsd-current/sys/kern/
H A Dkern_time.c106 static void realtimer_expire_l(struct itimer *it, bool proc_locked);
111 static void itimer_fire(struct itimer *it);
720 * as a delta, so that it is easy to keep periodic real-time signals from
726 * real time due to interrupt processing in the system, it is possible for
728 * in real time past when it is supposed to occur. It does not suffice,
896 struct itimer *it; local
912 it = p->p_itimers->its_timers[id];
913 if (it == NULL)
915 if ((it->it_flags & ITF_PSTOPPED) != 0) {
916 ITIMER_LOCK(it);
1165 struct itimer *it; local
1175 struct itimer *it; local
1182 itimer_enter(struct itimer *it) argument
1190 itimer_leave(struct itimer *it) argument
1236 struct itimer *it; local
1352 struct itimer *it; local
1372 struct itimer *it; local
1429 struct itimer *it; local
1470 struct itimer *it; local
1504 struct itimer *it; local
1522 realtimer_create(struct itimer *it) argument
1529 realtimer_delete(struct itimer *it) argument
1546 realtimer_gettime(struct itimer *it, struct itimerspec *ovalue) argument
1567 realtimer_settime(struct itimer *it, int flags, struct itimerspec *value, struct itimerspec *ovalue) argument
1627 struct itimer *it; local
1662 realtimer_expire_l(struct itimer *it, bool proc_locked) argument
1746 itimer_fire(struct itimer *it) argument
1797 struct itimer *it; local
[all...]
/freebsd-current/sys/sys/
H A Dtimers.h67 #define ITIMER_LOCK(it) mtx_lock(&(it)->it_mtx)
68 #define ITIMER_UNLOCK(it) mtx_unlock(&(it)->it_mtx)

Completed in 268 milliseconds

1234567891011>>