Home
last modified time | relevance | path

Searched refs:ad (Results 1 – 25 of 96) sorted by relevance

1234

/mirbsd/src/lib/libssl/src/crypto/
Dex_data.c165 CRYPTO_EX_DATA *ad);
171 CRYPTO_EX_DATA *ad);
188 CRYPTO_EX_DATA *ad);
192 CRYPTO_EX_DATA *ad);
403 CRYPTO_EX_DATA *ad) in int_new_ex_data() argument
412 ad->sk = NULL; in int_new_ex_data()
434 ptr = CRYPTO_get_ex_data(ad, i); in int_new_ex_data()
435 storage[i]->new_func(obj,ptr,ad,i, in int_new_ex_data()
492 CRYPTO_EX_DATA *ad) in int_free_ex_data() argument
521 ptr = CRYPTO_get_ex_data(ad,i); in int_free_ex_data()
[all …]
Dcrypto.h201 typedef int CRYPTO_EX_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
204 typedef void CRYPTO_EX_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
316 int CRYPTO_new_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad);
319 void CRYPTO_free_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad);
322 int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val);
323 void *CRYPTO_get_ex_data(const CRYPTO_EX_DATA *ad,int idx);
/mirbsd/src/sys/net/
Dpf_table.c88 #define ADDR_NETWORK(ad) ((ad)->pfra_net < AF_BITS((ad)->pfra_af)) argument
241 struct pfr_addr ad; in pfr_add_addrs() local
258 if (COPYIN(addr+i, &ad, sizeof(ad))) in pfr_add_addrs()
260 if (pfr_validate_addr(&ad)) in pfr_add_addrs()
262 p = pfr_lookup_addr(kt, &ad, 1); in pfr_add_addrs()
263 q = pfr_lookup_addr(tmpkt, &ad, 1); in pfr_add_addrs()
266 ad.pfra_fback = PFR_FB_DUPLICATE; in pfr_add_addrs()
268 ad.pfra_fback = PFR_FB_ADDED; in pfr_add_addrs()
269 else if (p->pfrke_not != ad.pfra_not) in pfr_add_addrs()
270 ad.pfra_fback = PFR_FB_CONFLICT; in pfr_add_addrs()
[all …]
Dif_atmsubr.c139 struct atm_pseudohdr atmdst, *ad; local
244 ad = mtod(m, struct atm_pseudohdr *);
245 *ad = atmdst;
247 atmllc = (struct atmllc *)(ad + 1);
/mirbsd/src/sbin/routed/
Drdisc.c65 struct icmp_ad ad; member
118 ntohs(p->ad.icmp_ad_life)); in trace_rdisc()
122 wp = &p->ad.icmp_ad_info[0].icmp_ad_addr; in trace_rdisc()
123 lim = &wp[(len - sizeof(p->ad)) / sizeof(*wp)]; in trace_rdisc()
124 for (i = 0; i < p->ad.icmp_ad_num && wp <= lim; i++) { in trace_rdisc()
127 wp += p->ad.icmp_ad_asize; in trace_rdisc()
772 bzero(&u,sizeof(u.ad)); in send_adv()
774 u.ad.icmp_type = ICMP_ROUTERADVERT; in send_adv()
775 u.ad.icmp_ad_num = 1; in send_adv()
776 u.ad.icmp_ad_asize = sizeof(u.ad.icmp_ad_info[0])/4; in send_adv()
[all …]
/mirbsd/src/lib/libssl/src/crypto/objects/
Dobj_dat.c274 ADDED_OBJ ad,*adp; in OBJ_nid2obj() local
290 ad.type=ADDED_NID; in OBJ_nid2obj()
291 ad.obj= &ob; in OBJ_nid2obj()
293 adp=(ADDED_OBJ *)lh_retrieve(added,&ad); in OBJ_nid2obj()
306 ADDED_OBJ ad,*adp; in OBJ_nid2sn() local
322 ad.type=ADDED_NID; in OBJ_nid2sn()
323 ad.obj= &ob; in OBJ_nid2sn()
325 adp=(ADDED_OBJ *)lh_retrieve(added,&ad); in OBJ_nid2sn()
338 ADDED_OBJ ad,*adp; in OBJ_nid2ln() local
354 ad.type=ADDED_NID; in OBJ_nid2ln()
[all …]
/mirbsd/src/gnu/usr.bin/binutils/opcodes/
Dmsp430-dis.c92 int ad = 0, as = 0; in msp430_singleoperand() local
100 ad = (insn & 0x0080) >> 7; in msp430_singleoperand()
109 if (opcode->bin_opcode == 0x4300 && (ad || as)) in msp430_singleoperand()
116 if (ad == 0) in msp430_singleoperand()
296 int ad = 0, as = 0; in msp430_doubleoperand() local
303 ad = (insn & 0x0080) >> 7; in msp430_doubleoperand()
317 if (regd != regs || as != ad) in msp430_doubleoperand()
320 if (ad == 0) in msp430_doubleoperand()
373 if (ad == 0 && regd == 3) in msp430_doubleoperand()
488 if (ad == 0) in msp430_doubleoperand()
[all …]
/mirbsd/src/sbin/pfctl/
Dpfctl_table.c390 print_addrx(struct pfr_addr *ad, struct pfr_addr *rad, int dns) in print_addrx() argument
396 fback = (rad != NULL) ? rad->pfra_fback : ad->pfra_fback; in print_addrx()
398 hostnet = (ad->pfra_af == AF_INET6) ? 128 : 32; in print_addrx()
399 inet_ntop(ad->pfra_af, &ad->pfra_u, buf, sizeof(buf)); in print_addrx()
400 printf("%c %c%s", ch, (ad->pfra_not?'!':' '), buf); in print_addrx()
401 if (ad->pfra_net < hostnet) in print_addrx()
402 printf("/%d", ad->pfra_net); in print_addrx()
413 if (dns && ad->pfra_net == hostnet) { in print_addrx()
419 sa.sa.sa_family = ad->pfra_af; in print_addrx()
422 sa.sin.sin_addr = ad->pfra_ip4addr; in print_addrx()
[all …]
/mirbsd/src/lib/libssl/src/crypto/x509v3/
Dv3_ocsp.c258 ACCESS_DESCRIPTION *ad; in i2r_ocsp_serviceloc() local
264 ad = sk_ACCESS_DESCRIPTION_value(a->locator,i); in i2r_ocsp_serviceloc()
267 if(i2a_ASN1_OBJECT(bp, ad->method) <= 0) goto err; in i2r_ocsp_serviceloc()
269 if(GENERAL_NAME_print(bp, ad->location) <= 0) goto err; in i2r_ocsp_serviceloc()
/mirbsd/src/lib/libssl/src/crypto/ocsp/
Docsp_ext.c509 ACCESS_DESCRIPTION *ad = NULL; in OCSP_url_svcloc_new() local
516 if (!(ad = ACCESS_DESCRIPTION_new())) goto err; in OCSP_url_svcloc_new()
517 if (!(ad->method=OBJ_nid2obj(NID_ad_OCSP))) goto err; in OCSP_url_svcloc_new()
518 if (!(ad->location = GENERAL_NAME_new())) goto err; in OCSP_url_svcloc_new()
521 ad->location->type = GEN_URI; in OCSP_url_svcloc_new()
522 ad->location->d.ia5 = ia5; in OCSP_url_svcloc_new()
523 if (!sk_ACCESS_DESCRIPTION_push(sloc->locator, ad)) goto err; in OCSP_url_svcloc_new()
/mirbsd/src/lib/libssl/src/crypto/pkcs7/t/
Dc.pem18 00:ad:e7:23:89:ee:0d:87:b7:9c:32:44:4b:95:81:
21 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
31 50:74:ad:92:cb:4e:90:e5:fa:7d
Dserver.pem18 00:ad:e7:23:89:ee:0d:87:b7:9c:32:44:4b:95:81:
21 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
31 50:74:ad:92:cb:4e:90:e5:fa:7d
Ds.pem27 00:ad:e7:23:89:ee:0d:87:b7:9c:32:44:4b:95:81:
30 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
40 50:74:ad:92:cb:4e:90:e5:fa:7d
/mirbsd/src/lib/libc/regex/test/
Dtests379 a(b*|c|e)d - ad ad @d
402 a(b|c)*d - ad ad -
406 a(b|c?)+d - ad ad @d
408 a(b|c){0,0}d - ad ad -
409 a(b|c){0,1}d - ad ad -
411 a(b|c){0,2}d - ad ad -
413 a(b|c){0,}d - ad ad -
/mirbsd/src/gnu/usr.bin/binutils/bfd/
Delf32-frv.c1429 bfd_vma ad = addend; in _frvfdpic_emit_got_relocs_plt_entries() local
1437 ad += entry->d.h->root.u.def.value; in _frvfdpic_emit_got_relocs_plt_entries()
1439 ad += sym->st_value; in _frvfdpic_emit_got_relocs_plt_entries()
1440 ad += sec->output_offset; in _frvfdpic_emit_got_relocs_plt_entries()
1455 ad += sec->output_section->vma; in _frvfdpic_emit_got_relocs_plt_entries()
1476 R_FRV_32, idx, ad, entry); in _frvfdpic_emit_got_relocs_plt_entries()
1478 bfd_put_32 (output_bfd, ad, in _frvfdpic_emit_got_relocs_plt_entries()
1489 bfd_vma ad = 0; in _frvfdpic_emit_got_relocs_plt_entries() local
1510 ad = entry->d.h->root.u.def.section->output_offset in _frvfdpic_emit_got_relocs_plt_entries()
1518 ad = addend; in _frvfdpic_emit_got_relocs_plt_entries()
[all …]
Di386lynx.c308 #define MOVE_ADDRESS(ad) \ argument
312 cache_ptr->addend = ad; \
320 cache_ptr->addend = ad - su->textsec->vma; \
325 cache_ptr->addend = ad - su->datasec->vma; \
330 cache_ptr->addend = ad - su->bsssec->vma; \
336 cache_ptr->addend = ad; \
/mirbsd/src/lib/libssl/src/crypto/pkcs7/
Dinfo.pem18 00:ad:e7:23:89:ee:0d:87:b7:9c:32:44:4b:95:81:
21 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
31 50:74:ad:92:cb:4e:90:e5:fa:7d
/mirbsd/src/sys/ntfs/
Dntfs_vfsops.c633 struct attrdef ad; local
644 num * sizeof(ad), sizeof(ad),
645 &ad, NULL);
648 if (ad.ad_name[0] == 0)
663 i * sizeof(ad), sizeof(ad),
664 &ad, NULL);
669 ntmp->ntm_ad[i].ad_name[j] = ad.ad_name[j];
670 } while(ad.ad_name[j++]);
672 ntmp->ntm_ad[i].ad_type = ad.ad_type;
/mirbsd/src/sys/dev/isa/
Dif_hp.c205 hpfetch(ns, up, ad, len)
228 outb(hpc + ds0_rsar0, ad);
229 outb(hpc + ds0_rsar1, ad >> 8);
233 len, hpc + hp_data, ad, inb(hpc + hp_option),
267 hpput(ns, up, ad, len)
290 len, hpc + hp_data, ad, inb(hpc + hp_option),
314 outb(hpc + ds0_rsar0, ad);
315 outb(hpc + ds0_rsar1, ad >> 8);
/mirbsd/src/gnu/usr.bin/perl/t/op/
Dutf8decode.t70 …94:95:96:97:98:99:9a:9b:9c:9d:9e:9f:a0:a1:a2:a3:a4:a5:a6:a7:a8:a9:aa:ab:ac:ad:ae:af:b0:b1:b2:b3:b4…
116 5.1.2 n "\xed\xad\xbf" - 3 ed:ad:bf - UTF-16 surrogate 0xdb7f
125 5.2.3 n "\xed\xad\xbf\xed\xb0\x80" - 6 ed:ad:bf:ed:b0:80 - UTF-16 surrogate 0xdb7f
126 5.2.4 n "\xed\xad\xbf\xed\xbf\xbf" - 6 ed:ad:bf:ed:bf:bf - UTF-16 surrogate 0xdb7f
/mirbsd/src/lib/libssl/src/doc/ssl/
DSSL_CTX_get_ex_new_index.pod20 typedef int new_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
22 typedef void free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
DSSL_get_ex_new_index.pod20 typedef int new_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
22 typedef void free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
DSSL_SESSION_get_ex_new_index.pod20 typedef int new_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
22 typedef void free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
/mirbsd/src/usr.bin/oldroff/nroff/
Dn5.c70 extern int ad;
155 ad = 1; in casead()
163 admod = ad = 0; /*same as casena*/ in casead()
172 ad = 0; in casead()
178 ad = 0; in casena()
/mirbsd/src/include/arpa/
Dnameser.h332 unsigned ad: 1; /* authentic data from named */ member
346 unsigned ad: 1; /* authentic data from named */ member

1234