HomeSort by: relevance | last modified time | path
    Searched defs:atomic (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/dev/
kttcp.c 203 int error, dontroute, atomic; local in function:kttcp_sosend
206 atomic = sosendallatonce(so);
247 if ((atomic && resid > so->so_snd.sb_hiwat))
249 if (space < resid && (atomic || space < so->so_snd.sb_lowat)) {
283 if (atomic && top == 0) {
299 if (atomic && top == 0 && len < mlen)
314 } while (space > 0 && atomic);
611 * If the MSG_WAITALL flag is set (for non-atomic socket),
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_report.h 59 bool atomic; member in struct:__tsan::ReportMop
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_file.h 111 * Optional callback currently only used by the atomic modeset helpers
190 * in the plane list. Automatically set when @atomic is set.
194 /** @atomic: True if client understands atomic properties. */
195 bool atomic; member in struct:drm_file
  /src/sys/external/bsd/drm2/include/linux/
atomic.h 1 /* $NetBSD: atomic.h,v 1.42 2021/12/19 12:21:30 riastradh Exp $ */
35 #include <sys/atomic.h>
51 * atomic (u)int operations
58 struct atomic { struct
67 typedef struct atomic atomic_t;
70 atomic_read(const atomic_t *atomic)
73 return atomic->a_u.au_int;
77 atomic_set(atomic_t *atomic, int value)
80 atomic->a_u.au_int = value;
84 atomic_set_release(atomic_t *atomic, int value
    [all...]
  /src/sys/kern/
subr_csan.c 55 bool atomic:1; member in struct:__anon2fed984b0108
111 (new->atomic ? "Atomic " : ""), (new->write ? "Write" : "Read"),
114 (old->atomic ? "Atomic " : ""), (old->write ? "Write" : "Read"),
123 if (new->write && !new->atomic)
125 if (old->write && !old->atomic)
131 kcsan_access(uintptr_t addr, size_t size, bool write, bool atomic, uintptr_t pc)
146 new.atomic = atomic;
    [all...]
uipc_socket.c 909 int error, s, dontroute, atomic; local in function:sosend
921 atomic = sosendallatonce(so) || top;
971 if ((atomic && resid > so->so_snd.sb_hiwat) ||
977 (atomic || space < so->so_snd.sb_lowat || space < clen)) {
1032 if (atomic && top == 0) {
1048 if (atomic && top == 0 && len < mlen)
1067 } while (space > 0 && atomic);
1168 int atomic, flags, error, s, type; local in function:soreceive
1176 atomic = pr->pr_flags & PR_ATOMIC;
1242 m->m_nextpkt == NULL && !atomic)) {
    [all...]
  /src/usr.bin/xlint/lint1/
cgram.y 410 /* No type for atomic. */
1425 atomic T_LPAREN type_name T_RPAREN {
1430 atomic: /* helper */ label
1446 | atomic {

Completed in 15 milliseconds