Searched refs:rr (Results 1 - 25 of 168) sorted by relevance

1234567

/freebsd-11-stable/sys/arm/include/
H A Dsysreg.h47 #define CP14_DBGDIDR(rr) p14, 0, rr, c0, c0, 0 /* Debug ID Register */
48 #define CP14_DBGDSCRext_V6(rr) p14, 0, rr, c0, c1, 0 /* Debug Status and Ctrl Register v6 */
49 #define CP14_DBGDSCRext_V7(rr) p14, 0, rr, c0, c2, 2 /* Debug Status and Ctrl Register v7 */
50 #define CP14_DBGVCR(rr) p14, 0, rr, c0, c7, 0 /* Vector Catch Register */
51 #define CP14_DBGOSLAR(rr) p14, 0, rr, c
[all...]
/freebsd-11-stable/contrib/ldns/
H A Dlinktest.c8 ldns_rr *rr = ldns_rr_new(); local
10 ldns_rr_free(rr);
H A Dhost2wire.c69 /* convert a rr list to wireformat */
87 const ldns_rr *rr,
93 switch (ldns_rr_get_type(rr)) {
124 if (ldns_rr_owner(rr)) {
125 (void) ldns_rdf2buffer_wire_canonical(buffer, ldns_rr_owner(rr));
129 (void) ldns_buffer_write_u16(buffer, ldns_rr_get_type(rr));
130 (void) ldns_buffer_write_u16(buffer, ldns_rr_get_class(rr));
135 ldns_buffer_write_u32(buffer, ldns_rr_ttl(rr));
140 for (i = 0; i < ldns_rr_rd_count(rr); i++) {
143 buffer, ldns_rr_rdf(rr,
86 ldns_rr2buffer_wire_canonical(ldns_buffer *buffer, const ldns_rr *rr, int section) argument
159 ldns_rr2buffer_wire(ldns_buffer *buffer, const ldns_rr *rr, int section) argument
194 ldns_rrsig2buffer_wire(ldns_buffer *buffer, const ldns_rr *rr) argument
214 ldns_rr_rdata2buffer_wire(ldns_buffer *buffer, const ldns_rr *rr) argument
357 ldns_rr2wire(uint8_t **dest, const ldns_rr *rr, int section, size_t *result_size) argument
[all...]
H A Ddnssec_zone.c15 new_rrs->rr = NULL;
27 ldns_rr_free(rrs->rr);
47 ldns_dnssec_rrs_add_rr(ldns_dnssec_rrs *rrs, ldns_rr *rr) argument
51 if (!rrs || !rr) {
57 cmp = ldns_rr_compare(rrs->rr, rr);
60 return ldns_dnssec_rrs_add_rr(rrs->next, rr);
63 new_rrs->rr = rr;
67 /* put the current old rr i
167 ldns_dnssec_rrsets_new_frm_rr(ldns_rr *rr) argument
193 ldns_dnssec_rrsets_add_rr(ldns_dnssec_rrsets *rrsets, ldns_rr *rr) argument
342 ldns_dnssec_name_new_frm_rr(ldns_rr *rr) argument
448 ldns_dnssec_name_add_rr(ldns_dnssec_name *name, ldns_rr *rr) argument
582 rr_is_rrsig_covering(ldns_rr* rr, ldns_rr_type t) argument
861 ldns_dnssec_zone_find_nsec3_original(ldns_dnssec_zone *zone, ldns_rr *rr) argument
880 ldns_dnssec_zone_add_rr(ldns_dnssec_zone *zone, ldns_rr *rr) argument
[all...]
H A Dwire2host.c158 ldns_wire2rdf(ldns_rr *rr, const uint8_t *wire, size_t max, size_t *pos) argument
170 assert(rr != NULL);
172 descriptor = ldns_rr_descript(ldns_rr_get_type(rr));
274 * Read to end of rr rdata
297 ldns_rr_push_rdf(rr, cur_rdf);
320 ldns_rr *rr = ldns_rr_new(); local
326 ldns_rr_set_owner(rr, owner);
333 ldns_rr_set_type(rr, ldns_read_uint16(&wire[*pos]));
336 ldns_rr_set_class(rr, ldns_read_uint16(&wire[*pos]));
344 ldns_rr_set_ttl(rr, ldns_read_uint3
405 ldns_rr *rr; local
[all...]
/freebsd-11-stable/contrib/binutils/include/opcode/
H A Dconvex.h22 #define rr 2 macro
226 {28,5,rr,A,A,0}, /* cvtw.b */
227 {28,6,rr,A,A,0}, /* cvtw.h */
228 {29,7,rr,A,A,0}, /* cvtb.w */
229 {30,7,rr,A,A,0}, /* cvth.w */
230 {28,5,rr,S,S,0}, /* cvtw.b */
231 {28,6,rr,S,S,0}, /* cvtw.h */
232 {29,7,rr,S,S,0}, /* cvtb.w */
233 {30,7,rr,S,S,0}, /* cvth.w */
234 {28,3,rr,
[all...]
/freebsd-11-stable/tools/KSE/rr/
H A DMakefile3 PROG= rr
6 SRCS= kse_asm.S rr.c
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dresolve.c104 dns_free_rr(struct rk_resource_record *rr) argument
106 if(rr->domain)
107 free(rr->domain);
108 if(rr->u.data)
109 free(rr->u.data);
110 free(rr);
116 struct rk_resource_record *rr; local
119 for(rr = r->head; rr;){
120 struct rk_resource_record *tmp = rr;
133 struct rk_resource_record *rr; local
416 struct rk_resource_record **rr; local
630 struct rk_resource_record *rr; local
711 struct rk_resource_record * rr; local
[all...]
H A Dresolve-test.c74 struct rk_resource_record *rr; local
107 for(rr = r->head; rr;rr=rr->next){
108 printf("%-30s %-5s %-6d ", rr->domain, rk_dns_type_to_string(rr->type), rr->ttl);
109 switch(rr->type){
113 printf("%s\n", (char*)rr
[all...]
/freebsd-11-stable/crypto/openssl/crypto/cms/
H A Dcms_ess.c74 CMS_ReceiptRequest *rr = NULL; local
84 rr = ASN1_item_unpack(str, ASN1_ITEM_rptr(CMS_ReceiptRequest));
85 if (!rr)
88 *prr = rr;
90 CMS_ReceiptRequest_free(rr);
100 CMS_ReceiptRequest *rr = NULL; local
102 rr = CMS_ReceiptRequest_new();
103 if (!rr)
106 ASN1_STRING_set0(rr->signedContentIdentifier, id, idlen);
108 if (!ASN1_STRING_set(rr
138 CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr) argument
164 CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr, ASN1_STRING **pcid, int *pallorfirst, STACK_OF(GENERAL_NAMES) **plist, STACK_OF(GENERAL_NAMES) **prto) argument
225 CMS_ReceiptRequest *rr = NULL; local
358 CMS_ReceiptRequest *rr = NULL; local
[all...]
/freebsd-11-stable/contrib/ldns/ldns/
H A Drr.h2 * rr.h - resource record definitions
36 /** The bytes TTL, CLASS and length use up in an rr */
314 /** question rr [it would be nicer if thous is after _rd_count]
324 * Contains a list of rr's <br>
338 * This structure contains, for all rr types, the rdata fields that are defined.
350 /** Wireformat specification for the rr, i.e. the types of rdata fields in their respective order. */
363 * Create a rr type bitmap rdf providing enough space to set all
364 * known (to ldns) rr types.
371 * Create a rr type bitmap rdf with at least all known (to ldns) rr type
[all...]
H A Dhost2wire.h22 #include <ldns/rr.h>
62 * Copies the rr data to the buffer in wire format
64 * \param[in] *rr resource record to convert
65 * \param[in] section the section in the packet this rr is supposed to be in
70 const ldns_rr *rr,
74 * Copies the rr data to the buffer in wire format, in canonical format
78 * \param[in] *rr resource record to convert
79 * \param[in] section the section in the packet this rr is supposed to be in
84 const ldns_rr *rr,
92 * \param[in] sigrr signature rr t
[all...]
/freebsd-11-stable/lib/libc/locale/
H A Dnextwctype.c46 _RuneRange *rr = &runes->__runetype_ext; local
60 if (rr->__ranges != NULL && wc < rr->__ranges[0].__min) {
61 wc = rr->__ranges[0].__min;
66 base = rr->__ranges;
67 for (lim = rr->__nranges; lim != 0; lim >>= 1) {
88 while (++re < rr->__ranges + rr->__nranges) {
H A Drune.c65 _RuneEntry *rr; local
152 runetype_ext_len * sizeof(*rr->__types) +
192 rr = rl->__runetype_ext.__ranges;
196 rr[x].__min = frr[x].min;
197 rr[x].__max = frr[x].max;
198 rr[x].__map = frr[x].map;
199 if (rr[x].__map == 0) {
200 int len = rr[x].__max - rr[x].__min + 1;
203 rr[
[all...]
H A Dtolower.c52 _RuneRange *rr = &XLOCALE_CTYPE(l)->runes->__maplower_ext; local
59 base = rr->__ranges;
60 for (lim = rr->__nranges; lim != 0; lim >>= 1) {
H A Dtoupper.c52 _RuneRange *rr = &XLOCALE_CTYPE(l)->runes->__mapupper_ext; local
59 base = rr->__ranges;
60 for (lim = rr->__nranges; lim != 0; lim >>= 1) {
/freebsd-11-stable/contrib/unbound/iterator/
H A Diter_priv.c213 struct rr_parse* prev, struct rr_parse** rr, struct sockaddr_storage* addr, socklen_t addrlen)
221 prev->next = (*rr)->next;
222 else rrset->rr_first = (*rr)->next;
223 if(rrset->rr_last == *rr)
226 rrset->size -= (*rr)->size;
227 /* rr struct still exists, but is unlinked, so that in the for loop
228 * the rr->next works fine to continue. */
245 struct rr_parse* rr, *prev = NULL; local
254 for(rr = rrset->rr_first; rr; r
212 remove_rr(const char* str, sldns_buffer* pkt, struct rrset_parse* rrset, struct rr_parse* prev, struct rr_parse** rr, struct sockaddr_storage* addr, socklen_t addrlen) argument
[all...]
/freebsd-11-stable/crypto/openssl/ssl/
H A Dd1_pkt.c211 static DTLS1_BITMAP *dtls1_get_bitmap(SSL *s, SSL3_RECORD *rr,
214 static int dtls1_record_needs_buffering(SSL *s, SSL3_RECORD *rr,
344 SSL3_RECORD *rr; local
355 rr = &s->s3->rrec;
372 bitmap = dtls1_get_bitmap(s, rr, &is_next_epoch);
399 rr->length = 0;
469 SSL3_RECORD *rr; local
473 rr = &(s->s3->rrec);
477 * At this point, s->packet_length == SSL3_RT_HEADER_LNGTH + rr->length,
480 rr
650 SSL3_RECORD *rr; local
849 SSL3_RECORD *rr; local
1931 dtls1_get_bitmap(SSL *s, SSL3_RECORD *rr, unsigned int *is_next_epoch) argument
[all...]
H A Ds3_pkt.c313 SSL3_RECORD *rr; local
322 rr = &(s->s3->rrec);
353 rr->type = *(p++);
357 n2s(p, rr->length);
359 fprintf(stderr, "Record type=%d, Length=%d\n", rr->type, rr->length);
368 if (rr->type == SSL3_RT_ALERT) {
393 if (rr->length > s->s3->rbuf.len - SSL3_RT_HEADER_LENGTH) {
404 if (rr->length > s->packet_length - SSL3_RT_HEADER_LENGTH) {
406 i = rr
599 SSL3_RECORD *rr; local
1170 SSL3_RECORD *rr; local
[all...]
/freebsd-11-stable/lib/libc/nameser/
H A Dns_parse.c142 ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) { argument
172 handle->_msg_ptr, rr->name, NS_MAXDNAME);
178 NS_GET16(rr->type, handle->_msg_ptr);
179 NS_GET16(rr->rr_class, handle->_msg_ptr);
181 rr->ttl = 0;
182 rr->rdlength = 0;
183 rr->rdata = NULL;
187 NS_GET32(rr->ttl, handle->_msg_ptr);
188 NS_GET16(rr->rdlength, handle->_msg_ptr);
189 if (handle->_msg_ptr + rr
205 ns_parserr2(ns_msg *handle, ns_sect section, int rrnum, ns_rr2 *rr) argument
[all...]
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dget_host_realm.c55 struct rk_resource_record *rr; local
58 for(n = 0, rr = head; rr; rr = rr->next)
59 if (rr->type == rk_ns_t_txt)
72 for (i = 0, rr = head; rr; rr = rr
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_sqr.c81 BIGNUM *tmp, *rr; local
96 rr = (a != r) ? r : BN_CTX_get(ctx);
98 if (!rr || !tmp)
102 if (bn_wexpand(rr, max) == NULL)
108 bn_sqr_normal(rr->d, a->d, 4, t);
110 bn_sqr_comba4(rr->d, a->d);
115 bn_sqr_normal(rr->d, a->d, 8, t);
117 bn_sqr_comba8(rr->d, a->d);
123 bn_sqr_normal(rr->d, a->d, al, t);
133 bn_sqr_recursive(rr
[all...]
/freebsd-11-stable/contrib/sendmail/src/
H A Dsm_resolve.c156 RESOURCE_RECORD_T *rr; local
162 for (rr = dr->dns_r_head; rr != NULL; )
164 RESOURCE_RECORD_T *tmp = rr;
166 if (rr->rr_domain != NULL)
167 sm_free(rr->rr_domain);
168 if (rr->rr_u.rr_data != NULL)
169 sm_free(rr->rr_u.rr_data);
170 rr = rr
256 RESOURCE_RECORD_T **rr; local
1471 RESOURCE_RECORD_T *rr; local
[all...]
H A Dtlsh.c170 ** rr -- RR
180 dane_tlsa_chk(rr, len, host, log)
181 const char *rr;
196 SM_ASSERT(rr != NULL);
198 alg = (int)rr[2];
199 if ((int)rr[0] == 3 && (int)rr[1] == 1 && (alg >= 0 || alg <= 2))
204 host, (int)rr[0], (int)rr[1], (int)rr[
[all...]
/freebsd-11-stable/usr.sbin/rtadvd/
H A Drrenum.c255 do_pco(struct icmp6_router_renum *rr, int len, struct rr_pco_match *rpm) argument
290 if ((rr->rr_flags & ICMP6_RR_FLAGS_FORCEAPPLY) == 0 &&
312 do_rr(int len, struct icmp6_router_renum *rr) argument
317 lim = (char *)rr + len;
318 cp = (char *)(rr + 1);
337 if (do_pco(rr, rpmlen, rpm)) {
355 rr_command_check(int len, struct icmp6_router_renum *rr, struct in6_addr *from, argument
360 /* omit rr minimal length check. hope kernel have done it. */
379 if (rro.rro_seqnum > rr->rr_seqnum) {
382 __func__, (u_int32_t)ntohl(rr
411 rr_command_input(int len, struct icmp6_router_renum *rr, struct in6_addr *from, struct in6_addr *dst) argument
436 rr_input(int len, struct icmp6_router_renum *rr, struct in6_pktinfo *pi, struct sockaddr_in6 *from, struct in6_addr *dst) argument
[all...]

Completed in 154 milliseconds

1234567