Searched refs:it (Results 51 - 75 of 858) sorted by relevance

1234567891011>>

/freebsd-current/secure/caroot/
H A DMAca-bundle.pl122 # from <> to a (binary) string and returns it
258 foreach my $it (keys %trusts) {
259 if (!$trusts{$it}) {
260 if (!exists($certs{$it})) {
261 warn "Found trust for nonexistent certificate $labels{$it}\n" if $debug;
263 delete $certs{$it};
264 warn "Skipping untrusted $labels{$it}\n" if $debug;
276 foreach my $it (sort {uc($a) cmp uc($b)} keys %certs) {
279 if (!exists($trusts{$it})) {
283 $filename = label_to_filename($labels{$it});
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libc/sys/
H A Dt_sigtimedwait.c80 struct itimerval it; local
84 memset(&it, 0, sizeof it);
85 it.it_value.tv_sec = 5;
86 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, NULL) == 0);
/freebsd-current/contrib/googletest/googletest/src/
H A Dgtest-typed-test.cc89 for (RegisteredTestIter it = registered_tests_.begin();
90 it != registered_tests_.end(); ++it) {
91 if (tests.count(it->first) == 0) {
92 errors << "You forgot to list test " << it->first << ".\n";
/freebsd-current/crypto/openssl/crypto/asn1/
H A Dtasn_dec.c29 long len, const ASN1_ITEM *it,
59 const ASN1_ITEM *it,
63 int utype, char *free_cont, const ASN1_ITEM *it);
108 long len, const ASN1_ITEM *it, int tag,
114 if (pval == NULL || it == NULL) {
118 rv = asn1_item_embed_d2i(pval, in, len, it, tag, aclass, opt, ctx, 0,
121 ASN1_item_ex_free(pval, it);
126 const ASN1_ITEM *it,
129 return asn1_item_ex_d2i_intern(pval, in, len, it, tag, aclass, opt, ctx,
135 const ASN1_ITEM *it, OSSL_LIB_CT
107 asn1_item_ex_d2i_intern(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx, OSSL_LIB_CTX *libctx, const char *propq) argument
125 ASN1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx) argument
133 ASN1_item_d2i_ex(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it, OSSL_LIB_CTX *libctx, const char *propq) argument
150 ASN1_item_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it) argument
162 asn1_item_embed_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx, int depth, OSSL_LIB_CTX *libctx, const char *propq) argument
698 asn1_d2i_ex_primitive(ASN1_VALUE **pval, const unsigned char **in, long inlen, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx) argument
831 asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
H A Da_digest.c56 int ossl_asn1_item_digest_ex(const ASN1_ITEM *it, const EVP_MD *md, void *asn, argument
64 i = ASN1_item_i2d(asn, &str, it);
89 int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *md, void *asn, argument
92 return ossl_asn1_item_digest_ex(it, md, asn, data, len, NULL, NULL);
H A Dbio_ndef.c20 * The usage is quite simple, initialize an ASN1 structure, get a BIO from it
34 const ASN1_ITEM *it; member in struct:ndef_aux_st
58 BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it) argument
62 const ASN1_AUX *aux = it->funcs;
96 * The asn1_cb(), must not have mutated asn_bio on error, leaving it in the
99 if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0) {
101 * ndef_aux is now owned by asn_bio so we must not free it in the err
114 ndef_aux->it = it;
140 derlen = ASN1_item_ndef_i2d(ndef_aux->val, NULL, ndef_aux->it);
[all...]
/freebsd-current/lib/libkvm/
H A Dkvm_minidump_i386.c270 _i386_iterator_init(struct i386_iter *it, kvm_t *kd) argument
274 it->kd = kd;
275 it->pteindex = 0;
277 it->nptes = vm->hdr.ptesize / sizeof(i386_pte_pae_t);
279 it->nptes = vm->hdr.ptesize / sizeof(i386_pte_t);
285 _i386_iterator_next(struct i386_iter *it, u_long *pa, u_long *va, u_long *dva, argument
288 struct vmstate *vm = it->kd->vmst;
298 for (; it->pteindex < it->nptes && found == 0; it
321 struct i386_iter it; local
[all...]
/freebsd-current/sys/dev/firewire/
H A Dfwdev.c88 struct fw_xferq *it; member in struct:fw_drv1
245 if (d->it != NULL) {
246 struct fw_xferq *it = d->it; local
248 if ((it->flag & FWXFERQ_OPEN) == 0)
250 if (it->flag & FWXFERQ_RUNNING) {
251 it->flag &= ~FWXFERQ_RUNNING;
252 fc->itx_disable(fc, it->dmach);
255 fwdev_freebuf(it);
256 it
454 struct fw_xferq *it; local
545 struct fw_xferq *ir, *it; local
[all...]
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DSymbols.cpp71 for (auto it = isec->symbols.rbegin(), rend = isec->symbols.rend();
72 it != rend; ++it) {
73 auto next = std::next(it);
76 if ((*it)->value < (*next)->value)
77 std::swap(*next, *it);
101 // knows that unfinalized functions will be out of range, so it is
/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_log_interface.cpp36 // when it should be a map because we're avoiding having to depend on C++
72 for (ModeImpl *it = ModeImpls; it != &SentinelModeImpl; it = it->Next) {
73 if (!internal_strcmp(Mode, it->Mode))
87 for (ModeImpl *it = ModeImpls; it != &SentinelModeImpl; it = it
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Ddirective-export-literal.mk4 # without expanding it.
H A Dexport.mk8 # believe it or not, we expect this one to come out with $UT_FU unexpanded.
25 # This is ignored because it is internal.
33 # shell filters it out. To reach consistent output for each shell, the
36 # This is ignored because it is undefined.
H A Dvarname-dot-suffixes.exp1 Global: ignoring delete '.SUFFIXES' as it is not found
4 Global: ignoring '.SUFFIXES = set' as it is read-only
5 Global: ignoring '.SUFFIXES = append' as it is read-only
10 Global: ignoring '.SUFFIXES = assign' as it is read-only
17 Global: ignoring '.SUFFIXES = preserve' as it is read-only
29 Command: ignoring '.SUFFIXES = 1' as it is read-only
32 Command: ignoring '.SUFFIXES = 2' as it is read-only
35 Command: ignoring delete '.SUFFIXES' as it is not found
H A Dcond-token-number.mk11 # Even though -0 is a number and would be accepted by strtod, it is not
22 # Even though +0 is a number and would be accepted by strtod, it is not
33 # Even though -1 is a number and would be accepted by strtod, it is not
44 # Even though +1 is a number and would be accepted by strtod, it is not
55 # When the number comes from an expression though, it may be signed.
61 # When the number comes from an expression though, it may be signed.
76 # This is not a hexadecimal number, even though it has an x. It is
78 # to true if it is non-empty. In other '.if' directives, such a token is
H A Dvardebug.mk13 # expect: Global: ignoring delete 'VAR' as it is not found
67 # The condition is syntactically fine, it just contains an undefined variable.
76 # By default, .SHELL is not defined and thus can be set. As soon as it is
77 # accessed, it is initialized in the command line scope (during VarFind),
78 # where it is set to read-only. Assigning to it is ignored.
79 # expect: Command: ignoring '.SHELL = overwritten' as it is read-only
/freebsd-current/lib/libc/arm/string/
H A Dstrcmp.S37 it cs
/freebsd-current/tests/sys/opencrypto/
H A Dpoly1305_test.c246 const char *sep, *it; local
254 it = hexstr;
257 sep = strpbrk(it, " :");
259 sym_len = strlen(it);
261 sym_len = sep - it;
264 "invalid hex byte '%.*s' in vector %s", (int)sym_len, it,
267 memcpy(hbyte, it, 2);
279 it = sep;
280 while (*it == ' ' || *it
[all...]
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A DextractExternal.cpp25 3. For each external symbol defined in some file in r, rename it in r U o
26 by prefixing it with "__kmp_external_"
159 set<string>::const_iterator it; local
163 for (length = sizeof(unsigned), it = strings.begin(); it != strings.end();
164 ++it) {
165 size_t l = (*it).size();
178 for (p = data + sizeof(unsigned), it = strings.begin(); it != strings.end();
179 ++it) {
204 map<string, unsigned>::const_iterator it = directory.find(str); local
436 set<int>::iterator it; local
[all...]
/freebsd-current/contrib/llvm-project/lld/Common/
H A DDWARF.cpp55 // Here we want to take the variable name to add it into variableLoc.
57 // to get linkage name as it can be different, for example when we have
59 // name otherwise, but handle the case when it also absent in case if the
75 auto it = variableLoc.find(name); local
76 if (it == variableLoc.end())
81 if (!it->second.lt->getFileNameByIndex(
82 it->second.file, {},
86 return std::make_pair(fileName, it->second.line);
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCSection.cpp133 for (auto it = begin(), ie = end(); it != ie; ++it) {
134 if (it != begin())
136 it->dump();
/freebsd-current/crypto/openssl/test/
H A Dx509_check_cert_pkey_test.c116 X509_INFO *it; local
126 it = sk_X509_INFO_value(sk, i);
127 if (it->x509 != NULL)
129 if (it->crl != NULL)
131 if (it->x_pkey != NULL)
/freebsd-current/contrib/opencsd/decoder/source/mem_acc/
H A Dtrc_mem_acc_mapper.cpp198 std::vector<TrcMemAccessorBase *>::const_iterator it = m_acc_global.begin();
199 while((it != m_acc_global.end()) && !bOverLap)
202 if( ((*it)->overLapRange(p_accessor)) &&
203 ((*it)->inMemSpace(p_accessor->getMemSpace()))
209 it++;
222 std::vector<TrcMemAccessorBase *>::const_iterator it = m_acc_global.begin(); local
223 while((it != m_acc_global.end()) && !bFound)
225 if( (*it)->addrInRange(address) &&
226 (*it)->inMemSpace(mem_space))
229 m_acc_curr = *it;
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libpthread/
H A Dt_once.c164 struct itimerval it; local
172 timerclear(&it.it_value);
173 it.it_value.tv_usec = 500000;
174 timerclear(&it.it_interval);
175 setitimer(ITIMER_REAL, &it, NULL);
186 timerclear(&it.it_value);
187 setitimer(ITIMER_REAL, &it, NULL);
/freebsd-current/contrib/dma/
H A Dlocal.c128 deliver_local(struct qitem *it) argument
142 error = snprintf(fn, sizeof(fn), "%s/%s", _PATH_MAILDIR, it->addr);
163 * The file does not exist or we can't access it.
164 * Call dma-mbox-create to create it and fix permissions.
166 if (tries > 0 || create_mbox(it->addr) != 0) {
191 /* If we're bouncing a message, claim it comes from MAILER-DAEMON */
192 sender = it->sender;
196 if (fseek(it->mailf, 0, SEEK_SET) != 0) {
209 while (!feof(it->mailf)) {
210 if (fgets(line, sizeof(line), it
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/
H A DABIAArch64.cpp88 for (auto it : llvm::enumerate(full_reg_indices)) {
89 std::optional<uint32_t> full_reg_index = it.value();
95 llvm::formatv(partial_reg_format, it.index()).str()),
121 for (auto it : llvm::enumerate(regs)) {
122 lldb_private::DynamicRegisterInfo::Register &info = it.value();
138 x_regs[reg_num] = it.index();
140 v_regs[reg_num] = it.index();

Completed in 377 milliseconds

1234567891011>>