HomeSort by: relevance | last modified time | path
    Searched refs:read_count (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/
amdgpu_dm_trace.h 37 TP_PROTO(unsigned long *read_count, uint32_t reg, uint32_t value),
38 TP_ARGS(read_count, reg, value),
46 *read_count = *read_count + 1;
72 TP_PROTO(unsigned long read_count, unsigned long write_count,
75 TP_ARGS(read_count, write_count, last_read, last_write, func, line),
85 __entry->reads = read_count;
87 __entry->read_delta = read_count - *last_read;
91 *last_read = read_count;
  /src/external/ibm-public/postfix/dist/src/util/
stream_recv_fd.c 90 ssize_t read_count; local
112 while ((read_count = read(client_fd, buf, sizeof(buf))) > 0)
113 write(1, buf, read_count);
114 if (read_count < 0)
unix_recv_fd.c 147 ssize_t read_count; local
171 while ((read_count = read(client_fd, buf, sizeof(buf))) > 0)
172 write(1, buf, read_count);
173 if (read_count < 0)
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_vf_error.c 75 /* The errors are overlay of array, correct read_count as full. */
76 if (adev->virt.vf_errors.write_count - adev->virt.vf_errors.read_count > AMDGPU_VF_ERROR_ENTRY_SIZE) {
77 adev->virt.vf_errors.read_count = adev->virt.vf_errors.write_count - AMDGPU_VF_ERROR_ENTRY_SIZE;
80 while (adev->virt.vf_errors.read_count < adev->virt.vf_errors.write_count) {
81 index =adev->virt.vf_errors.read_count % AMDGPU_VF_ERROR_ENTRY_SIZE;
88 adev->virt.vf_errors.read_count ++;
amdgpu_virt.h 46 int read_count; member in struct:amdgpu_vf_error_buffer
  /src/external/mit/libuv/dist/test/
test-osx-select.c 30 static int read_count; variable
41 fprintf(stdout, "got data %d\n", ++read_count);
44 if (read_count == 3)
80 ASSERT_EQ(3, read_count);
134 ASSERT_EQ(3, read_count);
  /src/external/ibm-public/postfix/dist/src/postscreen/
postscreen_early.c 111 int read_count; local
233 if ((read_count = recv(vstream_fileno(state->smtp_client_stream),
246 read_buf[read_count] = 0;
247 escape(psc_escape_buf, read_buf, read_count);
248 msg_info("PREGREET %d after %s from [%s]:%s: %.100s", read_count,
  /src/external/gpl3/gdb/dist/sim/ppc/
mon.c 50 count_type read_count; member in struct:_cpu_mon
116 monitor->read_count += 1;
325 if (monitor->cpu_monitor[cpu_nr].read_count)
330 monitor->cpu_monitor[cpu_nr].read_count),
331 (monitor->cpu_monitor[cpu_nr].read_count == 1) ? "" : "s",
  /src/external/gpl3/gdb.old/dist/sim/ppc/
mon.c 50 count_type read_count; member in struct:_cpu_mon
116 monitor->read_count += 1;
325 if (monitor->cpu_monitor[cpu_nr].read_count)
330 monitor->cpu_monitor[cpu_nr].read_count),
331 (monitor->cpu_monitor[cpu_nr].read_count == 1) ? "" : "s",
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/
dm_services.h 361 #define PERF_TRACE() trace_amdgpu_dc_performance(CTX->perf_trace->read_count,\
364 #define PERF_TRACE_CTX(__CTX) trace_amdgpu_dc_performance(__CTX->perf_trace->read_count,\
dc_types.h 93 unsigned long read_count; member in struct:dc_perf_trace
amdgpu_dc_helper.c 326 trace_amdgpu_dc_rreg(&ctx->perf_trace->read_count, address, value);
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-profile.h 156 unsigned int read_count[MAX_TARGET_MODES];
157 #define PROFILE_READ_COUNT(p) ((p)->read_count)
153 unsigned int read_count[MAX_TARGET_MODES]; member in struct:__anon21964
  /src/external/gpl3/gdb/dist/sim/common/
sim-profile.h 156 unsigned int read_count[MAX_TARGET_MODES];
157 #define PROFILE_READ_COUNT(p) ((p)->read_count)
153 unsigned int read_count[MAX_TARGET_MODES]; member in struct:__anon1449
  /src/external/mpl/dhcp/bind/dist/lib/isc/unix/
socket.c 1385 size_t read_count; local
1399 read_count = dev->region.length - dev->n;
1401 iov[0].iov_len = read_count;
1429 *read_countp = read_count;
1503 size_t read_count; local
1509 build_msghdr_recv(sock, cmsgbuf, dev, &msghdr, iov, &read_count);
1630 if ((sock->type == isc_sockettype_udp) && ((size_t)cc > read_count)) {
1651 if (((size_t)cc != read_count) && (dev->n < dev->minimum)) {
  /src/external/bsd/ntp/dist/ntpd/
ntp_io.c 3331 u_int read_count; local
3359 read_count = sizeof(rb->recv_space);
3361 read_count = (u_int)rp->datalen;
3363 buflen = read(fd, (char *)&rb->recv_space, read_count);

Completed in 34 milliseconds