HomeSort by: relevance | last modified time | path
    Searched refs:rec (Results 1 - 25 of 135) sorted by relevancy

1 2 3 4 5 6

  /src/sys/dev/raidframe/
rf_acctrace.c 76 rf_LogTraceRec(RF_Raid_t *raid, RF_AccTraceEntry_t *rec)
87 if (rec->reconacc) {
88 acc->recon_start_to_fetch_us += rec->specific.recon.recon_start_to_fetch_us;
89 acc->recon_fetch_to_return_us += rec->specific.recon.recon_fetch_to_return_us;
90 acc->recon_return_to_submit_us += rec->specific.recon.recon_return_to_submit_us;
91 acc->recon_num_phys_ios += rec->num_phys_ios;
92 acc->recon_phys_io_us += rec->phys_io_us;
93 acc->recon_diskwait_us += rec->diskwait_us;
96 RF_HIST_ADD(acc->tot_hist, rec->total_us);
97 RF_HIST_ADD(acc->dw_hist, rec->diskwait_us)
    [all...]
  /src/usr.sbin/kvm_mkdb/
testdb.c 63 DBT rec; local in function:testdb
76 rec.data = VRS_KEY;
77 rec.size = sizeof(VRS_KEY) - 1;
78 if ((db->get)(db, &rec, &rec, 0))
80 if (rec.data == 0 || rec.size == 0 || rec.size > sizeof(dbversion))
82 memmove(dbversion, rec.data, rec.size)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_i2c.c 51 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_pre_xfer
57 if (rec->hw_capable) {
58 temp = RREG32(rec->mask_clk_reg);
60 WREG32(rec->mask_clk_reg, temp);
64 temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
65 WREG32(rec->a_clk_reg, temp);
67 temp = RREG32(rec->a_data_reg) & ~rec->a_data_mask
93 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_post_xfer
112 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_get_clock
127 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_get_data
141 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_set_clock
154 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_set_data
    [all...]
amdgpu_i2c.h 30 const struct amdgpu_i2c_bus_rec *rec,
36 const struct amdgpu_i2c_bus_rec *rec,
  /src/usr.sbin/makemandb/
makemandb.c 305 struct roff_mandb_rec rec; local in function:main
335 memset(&rec, 0, sizeof(rec));
337 init_secbuffs(&rec);
426 cleanup(&rec);
427 free_secbuffs(&rec);
433 update_db(db, mp, &rec);
436 free_secbuffs(&rec);
641 mandb_rec *rec, int *new_count, int *link_count, int *err_count)
660 sqlite3_bind_int64(inner_stmt, idx, rec->device)
    [all...]
  /src/usr.bin/sort/
files.c 228 putrec(const RECHEADER *rec, FILE *fp)
230 EWRITE(rec, 1, REC_ROUNDUP(offsetof(RECHEADER, data) + rec->length), fp,
238 putline(const RECHEADER *rec, FILE *fp)
240 EWRITE(rec->data+rec->offset, 1, rec->length - rec->offset, fp,
248 putkeydump(const RECHEADER *rec, FILE *fp)
250 EWRITE(rec, 1, REC_ROUNDUP(offsetof(RECHEADER, data) + rec->offset), fp
    [all...]
msort.c 80 RECHEADER *rec; member in struct:mfile
208 if (cfile->rec == NULL) {
209 cfile->rec = allocrec(NULL, DEFLLEN);
210 cfile->end = (u_char *)cfile->rec + DEFLLEN;
215 c = cfile->get(cfile->fp, cfile->rec, cfile->end, ftbl);
221 sz = (cfile->end - (u_char *)cfile->rec) * 2;
222 cfile->rec = allocrec(cfile->rec, sz);
223 cfile->end = (u_char *)cfile->rec + sz;
255 put(cfile->rec, outfp)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/mga/
mga_warp.c 59 const struct ihex_binrec *rec; local in function:mga_warp_install_microcode
93 for (rec = (const struct ihex_binrec *)fw->data;
94 rec;
95 rec = ihex_next_binrec(rec)) {
96 size += WARP_UCODE_SIZE(be16_to_cpu(rec->len));
117 for (rec = (const struct ihex_binrec *)fw->data;
118 rec;
119 rec = ihex_next_binrec(rec)) {
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_i2c.c 104 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:pre_xfer
113 if (rec->hw_capable) {
126 if (rec->a_clk_reg == reg) {
138 if (ASIC_IS_DCE3(rdev) && rec->hw_capable) {
139 temp = RREG32(rec->mask_clk_reg);
141 WREG32(rec->mask_clk_reg, temp);
145 temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
146 WREG32(rec->a_clk_reg, temp)
174 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:post_xfer
193 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:get_clock
208 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:get_data
222 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:set_clock
235 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:set_data
341 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:r100_hw_i2c_xfer
594 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:r500_hw_i2c_xfer
827 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:radeon_hw_i2c_xfer
    [all...]
radeon_dp_auxch.c 68 int instance = chan->rec.i2c_id & 0xf;
104 tmp = RREG32(chan->rec.mask_clk_reg);
106 WREG32(chan->rec.mask_clk_reg, tmp);
112 tmp |= AUX_HPD_SEL(chan->rec.hpd);
  /src/usr.sbin/sdpd/
record.c 106 record_t *rec; local in function:record_update_request
130 rec = NULL;
131 db_next(srv, fd, &rec);
132 if (rec == NULL || rec->fd != fd)
146 if (!db_create(srv, fd, &rec->bdaddr, rec->handle, &seq))
165 record_t *rec; local in function:record_remove_request
184 rec = NULL;
185 db_next(srv, fd, &rec);
    [all...]
db.c 149 * Iterate through records selected by fd. rec should point to a NULL
154 db_next(server_t *srv, int fd, record_t **rec)
158 if (*rec == NULL)
161 r = LIST_NEXT(*rec, next);
166 *rec = r;
177 db_match_uuid(record_t *rec, uuid_t *uuid)
179 uint8_t *p = rec->data.next;
182 while (p < rec->data.end) {
343 record_t *n, *r, *rec; local in function:db_create
357 rec = malloc(sizeof(record_t) + len)
    [all...]
  /src/usr.bin/rfcomm_sppd/
rfcomm_sppd.c 417 sdp_data_t rec; local in function:open_server
456 rec.next = buffer;
457 rec.end = buffer + sizeof(buffer);
459 sdp_put_uint16(&rec, SDP_ATTR_SERVICE_RECORD_HANDLE);
460 sdp_put_uint32(&rec, 0x00000000);
462 sdp_put_uint16(&rec, SDP_ATTR_SERVICE_CLASS_ID_LIST);
463 sdp_put_seq(&rec, 3);
464 sdp_put_uuid16(&rec, s->class);
468 sdp_put_uint16(&rec, SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST);
469 sdp_put_seq(&rec, 12 + len)
572 sdp_data_t ail, ssp, rsp, rec, value, pdl, seq; local in function:service_search
    [all...]
  /src/sys/dev/pci/
pciide_acard_reg.h 30 #define ATP850_SETTIME(drive, act, rec) \
31 (((((act) & 0xf) << 8) | ((rec) & 0xf)) << ((drive) * 16))
32 #define ATP860_SETTIME(channel, drive, act, rec) \
33 (((((act) & 0xf) << 4) | ((rec) & 0xf)) << \
esa.c 216 const audio_params_t *play, const audio_params_t *rec,
225 vc->rec.mode = *rec;
244 r = &vc->rec.mode;
272 vc->rec.data_offset = ESA_DAC_DATA + (data_bytes * vc->index) +
279 vc->rec.data_offset + ESA_SRC3_MODE_OFFSET,
286 vc->rec.data_offset + ESA_SRC3_WORD_LENGTH_OFFSET,
292 vc->rec.data_offset + ESA_CDATA_FREQUENCY, freq);
361 if (vc->rec.active == 0)
364 vc->rec.active = 0
    [all...]
esavar.h 92 struct esa_channel rec; member in struct:esa_voice
  /src/lib/libbluetooth/
sdp_record.c 50 uint32_t *handle, const sdp_data_t *rec)
69 len = rec->end - rec->next;
81 req[3].iov_base = rec->next;
120 const sdp_data_t *rec)
138 len = rec->end - rec->next;
150 req[3].iov_base = rec->next;
  /src/sys/netinet/
sctp_indata.c 254 outinfo->sinfo_stream = chk->rec.data.stream_number;
255 outinfo->sinfo_ssn = chk->rec.data.stream_seq;
256 if (chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
261 outinfo->sinfo_ppid = chk->rec.data.payloadtype;
262 outinfo->sinfo_context = chk->rec.data.context;
264 outinfo->sinfo_tsn = chk->rec.data.TSN_seq;
399 if (chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) {
413 if (chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) {
579 if (chk->rec.data.TSN_seq != (asoc->tsn_last_delivered + 1)) {
590 stream_no = chk->rec.data.stream_number
    [all...]
sctp_timer.c 435 chk->rec.data.TSN_seq,
437 (stcb->asoc.last_acked_seq == chk->rec.data.TSN_seq)) {
468 sctp_log_fr(chk->rec.data.TSN_seq,
504 if ((now.tv_sec > chk->rec.data.timetodrop.tv_sec) ||
505 ((chk->rec.data.timetodrop.tv_sec == now.tv_sec) &&
506 (now.tv_usec > chk->rec.data.timetodrop.tv_usec))) {
525 chk->rec.data.TSN_seq);
529 tsnfirst = chk->rec.data.TSN_seq;
533 tsnlast = chk->rec.data.TSN_seq;
534 sctp_log_fr(chk->rec.data.TSN_seq, chk->snd_count
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_overlay.c 935 struct drm_intel_overlay_put_image *rec)
940 if (rec->dst_x < pipe_config->pipe_src_w &&
941 rec->dst_x + rec->dst_width <= pipe_config->pipe_src_w &&
942 rec->dst_y < pipe_config->pipe_src_h &&
943 rec->dst_y + rec->dst_height <= pipe_config->pipe_src_h)
949 static int check_overlay_scaling(struct drm_intel_overlay_put_image *rec)
954 tmp = ((rec->src_scan_height << 16) / rec->dst_height) >> 16
    [all...]
  /src/usr.sbin/btdevctl/
sdp.c 154 sdp_data_t rsp, rec; local in function:cfg_search
160 while (sdp_get_seq(&rsp, &rec)) {
161 if (config_pnp(dict, &rec) == 0)
169 while (sdp_get_seq(&rsp, &rec)) {
170 errno = (*cfgtype[i].handler)(dict, &rec);
214 config_pnp(prop_dictionary_t dict, sdp_data_t *rec)
225 while (sdp_get_attr(rec, &attr, &value)) {
272 config_hid(prop_dictionary_t dict, sdp_data_t *rec)
288 while (sdp_get_attr(rec, &attr, &value)) {
351 config_hset(prop_dictionary_t dict, sdp_data_t *rec)
    [all...]
  /src/sys/dev/acpi/
acpi_pci.c 187 goto rec;
190 goto rec;
221 goto rec;
249 goto rec;
276 goto rec;
302 goto rec;
305 rec:
  /src/usr.sbin/wsmuxctl/
wsmuxctl.c 80 listdevs(int fd, int rec, int ind)
98 if (rec && devs.devices[i].type == WSMUX_MUX) {
104 listdevs(rfd, rec, ind+2);
  /src/usr.bin/sdpquery/
command.c 150 sdp_data_t ssp, rec, rsp; local in function:do_sdp_search
167 while (sdp_get_seq(&rsp, &rec)) {
173 print_record(&rec);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_interface_java.h 76 // The 'rec' value must be obtained from the previous
78 void __tsan_java_mutex_lock_rec(jptr addr, int rec) INTERFACE_ATTRIBUTE;

Completed in 22 milliseconds

1 2 3 4 5 6