Searched refs:rd (Results 26 - 50 of 189) sorted by relevance

12345678

/freebsd-11-stable/tools/tools/nanobsd/
H A Dfill_pkg.sh60 rd=`make -V RUN_DEPENDS ${PORTS_OPTS}`
63 for x in $rd $ld
/freebsd-11-stable/contrib/apr-util/dbm/
H A Dapr_dbm_gdbm.c131 datum kd, rd; local
136 rd = gdbm_fetch(dbm->file, kd);
138 pvalue->dptr = rd.dptr;
139 pvalue->dsize = rd.dsize;
194 datum rd; local
196 rd = gdbm_firstkey(dbm->file);
198 pkey->dptr = rd.dptr;
199 pkey->dsize = rd.dsize;
211 datum kd, rd; local
216 rd
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_diff/
H A Dbinary_diff.c49 apr_size_t rd; local
63 rd = sizeof(buffer);
68 SVN_ERR(svn_stream_read_full(original_stream, buffer, &rd));
70 bytes_read += rd;
71 SVN_ERR(svn_stream_write(compressed, buffer, &rd));
73 while(rd == SVN__STREAM_CHUNK_SIZE);
173 apr_size_t rd; local
186 rd = sizeof(chunk);
191 SVN_ERR(svn_stream_read_full(compressed_data, chunk, &rd));
195 SVN_ERR(svn_stream_write(output_stream, &b85lenstr[rd
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/
H A Dah_regdomain.c161 uint16_t rd = getEepromRD(ah); local
164 if (rd & COUNTRY_ERD_FLAG) {
165 uint16_t cc = rd &~ COUNTRY_ERD_FLAG;
171 if (regDomainPairs[i].regDmnEnum == rd)
175 if (rd == FCC_UBNT) {
180 "%s: invalid regulatory domain/country code 0x%x\n", __func__, rd);
233 uint16_t rd; local
235 rd = getEepromRD(ah);
236 if (rd & COUNTRY_ERD_FLAG) {
238 uint16_t cc = rd
364 getchannelBM(u_int mode, REG_DOMAIN *rd) argument
399 setchannelflags(struct ieee80211_channel *c, REG_DMN_FREQ_BAND *fband, REG_DOMAIN *rd) argument
420 addchan(struct ath_hal *ah, struct ieee80211_channel chans[], u_int maxchans, int *nchans, uint16_t freq, uint32_t flags, REG_DMN_FREQ_BAND *fband, REG_DOMAIN *rd) argument
462 add_chanlist_band(struct ath_hal *ah, struct ieee80211_channel chans[], int maxchans, int *nchans, uint16_t freq_lo, uint16_t freq_hi, int step, uint32_t flags, REG_DMN_FREQ_BAND *fband, REG_DOMAIN *rd) argument
501 add_chanlist_mode(struct ath_hal *ah, struct ieee80211_channel chans[], u_int maxchans, int *nchans, const struct cmode *cm, REG_DOMAIN *rd, HAL_BOOL enableExtendedChannels) argument
622 REG_DOMAIN *rd; local
786 ath_hal_set_channels(struct ath_hal *ah, struct ieee80211_channel chans[], int nchans, HAL_CTRY_CODE cc, HAL_REG_DOMAIN rd) argument
[all...]
/freebsd-11-stable/sys/mips/nlm/
H A Dboard_eeprom.c97 int rd, i; local
147 if ((rd = oc_rd_cmd(OC_COMMAND_READ)) < 0) {
151 buf[i] = rd;
155 if ((rd = oc_rd_cmd(OC_COMMAND_RDNACK)) < 0) {
159 buf[sz - 1] = rd;
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dprof_machdep.c58 count = rd(tick);
/freebsd-11-stable/tools/tools/net80211/w00t/redir/
H A Dbuddy.c104 int rd; local
107 rd = recv(raw, buf, sizeof(buf), 0);
108 if (rd == -1)
111 if (handle_data(dude, buf, rd) == -1)
/freebsd-11-stable/crypto/openssl/crypto/ocsp/
H A Docsp_prn.c192 OCSP_RESPDATA *rd = NULL; local
217 rd = br->tbsResponseData;
218 l = ASN1_INTEGER_get(rd->version);
224 rid = rd->responderId;
236 if (!ASN1_GENERALIZEDTIME_print(bp, rd->producedAt))
240 for (i = 0; i < sk_OCSP_SINGLERESP_num(rd->responses); i++) {
241 if (!sk_OCSP_SINGLERESP_value(rd->responses, i))
243 single = sk_OCSP_SINGLERESP_value(rd->responses, i);
285 rd->responseExtensions, flags, 4))
/freebsd-11-stable/sys/sparc64/include/
H A Dcpu.h67 return (rd(tick));
H A Dcpufunc.h63 #define casa(rs1, rs2, rd, asi) ({ \
64 u_int __rd = (uint32_t)(rd); \
71 #define casxa(rs1, rs2, rd, asi) ({ \
72 u_long __rd = (uint64_t)(rd); \
154 #define rd(name) ({ \ macro
156 __asm __volatile("rd %%" #name ", %0" : "=r" (__sr) :); \
180 #define rdtickcmpr() rd(asr23)
181 #define rdstick() rd(asr24)
182 #define rdstickcmpr() rd(asr25)
202 " rd
[all...]
/freebsd-11-stable/contrib/bmake/mk/
H A Dsrctop.mk32 .for rd in share/mk build/mk mk
33 .if ${_this_mk_dir:M*${rd}} != ""
34 .if ${.CURDIR:S,${_this_mk_dir:${rd:C,[^/]+,H,g:S,/, ,g:ts:}},,} != ${.CURDIR}
35 SRCTOP:= ${_this_mk_dir:${rd:C,[^/]+,H,g:S,/, ,g:ts:}}
/freebsd-11-stable/tools/tools/ath/athrd/
H A Dathrd.c52 HAL_REG_DOMAIN rd = 169; /* FCC */ variable
390 HAL_REG_DOMAIN rd; member in struct:__anon13689
538 rdlookup(const char *name, HAL_REG_DOMAIN *rd) argument
544 *rd = domains[i].rd;
551 getrdname(HAL_REG_DOMAIN rd) argument
556 if (domains[i].rd == rd)
725 cclookup(const char *name, HAL_REG_DOMAIN *rd, HAL_CTRY_CODE *cc) argument
732 *rd
[all...]
/freebsd-11-stable/tools/tools/net80211/wesside/wesside/
H A Dwesside.c264 int rd; local
273 rd = read(fd, buf, sizeof(buf) -1);
274 if (rd == -1) {
279 buf[rd] = 0;
890 int i, rd; local
939 rd = read(fd, file_clear, sizeof(file_clear));
941 if (rd == -1) {
947 for (i = 0; i < rd; i++) {
983 rd = write(fd, file_clear, len);
984 if (rd
1154 decrypt_arpreq(struct ieee80211_frame* wh, int rd) argument
1207 int rd; local
1247 int fd, rd; local
1415 add_keystream(struct ieee80211_frame* wh, int rd) argument
1433 got_wep(struct ieee80211_frame* wh, int rd) argument
1552 stuff_for_net(struct ieee80211_frame* wh, int rd) argument
1587 anal(unsigned char* buf, int rd, int tx) argument
2083 int rd; local
2221 int rd; local
2386 int rd; local
[all...]
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dextent.h44 arena_runs_dirty_link_t rd; member in struct:extent_node_s
214 qr_new(&node->rd, rd_link);
223 qr_meld(runs_dirty, &node->rd, rd_link);
231 qr_remove(&node->rd, rd_link);
/freebsd-11-stable/lib/libc/sparc64/fpu/
H A Dfpu_add.c69 int rd; local
99 rd = FSR_GET_RD(fe->fe_fsr);
101 if (rd != FSR_RD_NINF) /* only -0 + -0 gives -0 */
186 r->fp_sign = rd == FSR_RD_NINF;
/freebsd-11-stable/sys/dev/qlxgb/
H A Dqla_ioctl.h40 uint16_t rd; member in struct:qla_reg_val
/freebsd-11-stable/sys/powerpc/fpu/
H A Dfpu_add.c67 int rd; local
107 rd = ((fe->fe_fpscr) & FPSCR_RN);
109 if (rd != FP_RM) /* only -0 + -0 gives -0 */
197 r->fp_sign = rd == FP_RM;
/freebsd-11-stable/lib/lib80211/
H A Dlib80211_regdomain.c54 struct regdomain *rd; /* current domain */ member in struct:mystate
96 if (iseq(name, "rd") && mt->rd == NULL) {
98 mt->rd = calloc(1, sizeof(struct regdomain));
99 mt->rd->name = strdup(id);
101 LIST_INSERT_HEAD(&mt->rdp->domains, mt->rd, next);
103 mt->country->rd = (void *)strdup(ref);
106 if (iseq(name, "defcc") && mt->rd != NULL) {
107 mt->rd->cc = (void *)strdup(ref);
110 if (iseq(name, "netband") && mt->curband == NULL && mt->rd !
[all...]
/freebsd-11-stable/contrib/ldns/
H A Ddname.c65 * rd, by reducing the size with 1
102 * rd, by reducing the size with 1
252 ldns_rdf *rd; local
254 rd = LDNS_MALLOC(ldns_rdf);
255 if (!rd) {
258 ldns_rdf_set_size(rd, s);
259 ldns_rdf_set_type(rd, LDNS_RDF_TYPE_DNAME);
260 ldns_rdf_set_data(rd, d);
261 return rd;
277 ldns_dname2canonical(const ldns_rdf *rd) argument
[all...]
/freebsd-11-stable/sys/net/
H A Diso88025.h125 u_int16_t rd[RIF_MAX_RD]; /* routing designators */ member in struct:iso88025_header
130 u_int16_t rd[RIF_MAX_RD]; /* routing designators */ member in struct:iso88025_rif
/freebsd-11-stable/tools/tools/net80211/stumbler/
H A Dstumbler.c540 void get_beacon_info(unsigned char* data, int rd, argument
549 assert(rd >= blen);
555 rd -= blen;
557 while (rd > 2) {
564 rd -= 2;
567 if (rd < elen) {
678 rd -= elen;
742 void radiotap(unsigned char* data, int rd) { argument
753 rd -= 4; // 802.11 CRC
761 rd
847 int rd; local
964 int rd; local
[all...]
/freebsd-11-stable/tools/tools/crypto/
H A Dcryptokeytest.c96 * If 'rd' is NULL, allocate space for it, otherwise
97 * 'rd' is assumed to have room for BN_num_bytes(n)
101 bignum_to_le(BIGNUM *n, u_int8_t *rd) argument
108 if (rd == NULL)
109 rd = (u_int8_t *)malloc(blen);
110 if (rd == NULL)
117 rd[j + k] = n->d[i] >> (k * 8);
122 return (rd);
/freebsd-11-stable/tools/tools/net80211/w00t/prga/
H A Dprga.c96 int rd; local
104 rd = read(fd, p->iv, 3);
105 if (rd == -1)
107 if (rd != 3) {
112 rd = read(fd, p->prga, sizeof(p->prga));
113 if (rd == -1)
115 p->prga_len = rd;
124 int rd; local
130 rd = write(fd, p->iv, 3);
131 if (rd
[all...]
/freebsd-11-stable/contrib/ipfilter/samples/
H A Dproxy.c236 fd_set rd, wr; local
254 FD_ZERO(&rd);
258 FD_SET(in, &rd);
260 FD_SET(net, &rd);
267 n = select(maxfd + 1, &rd, &wr, NULL, NULL);
269 if ((n > 0) && FD_ISSET(in, &rd)) {
278 if ((n > 0) && FD_ISSET(net, &rd)) {
/freebsd-11-stable/usr.bin/calendar/
H A Dparsedata.c442 int d, m, dow, rm, rd, offset; local
585 if (remember_yd(year, d, &rm, &rd))
588 year, rm, rd, NULL);
677 &rm, &rd))
679 year, rm, rd, NULL);
690 &rm, &rd))
692 year, rm, rd, NULL);
703 &rm, &rd))
705 year, rm, rd, NULL);
720 &rm, &rd)) {
[all...]

Completed in 187 milliseconds

12345678