HomeSort by: relevance | last modified time | path
    Searched defs:flags (Results 1 - 25 of 3098) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libm/softfloat/
feclearexcept.c 47 fp_except flags = __FPE(excepts); local in function:__weak_alias
49 fpsetsticky(fpgetsticky() & ~flags);
feclearexcept.c 47 fp_except flags = __FPE(excepts); local in function:__weak_alias
49 fpsetsticky(fpgetsticky() & ~flags);
  /src/sys/compat/freebsd/
freebsd_fork.c 56 syscallargs(int) flags;
58 int flags; local in function:freebsd_sys_rfork
60 flags = 0;
62 if ((SCARG(uap, flags)
67 if ((SCARG(uap, flags) & FREEBSD_RFPROC) == 0)
70 if (SCARG(uap, flags) & FREEBSD_RFNOWAIT)
71 flags |= FORK_NOWAIT;
72 if (SCARG(uap, flags) & FREEBSD_RFMEM)
73 flags |= FORK_SHAREVM;
74 if (SCARG(uap, flags) & FREEBSD_RFSIGSHARE
    [all...]
freebsd_fork.c 56 syscallargs(int) flags;
58 int flags; local in function:freebsd_sys_rfork
60 flags = 0;
62 if ((SCARG(uap, flags)
67 if ((SCARG(uap, flags) & FREEBSD_RFPROC) == 0)
70 if (SCARG(uap, flags) & FREEBSD_RFNOWAIT)
71 flags |= FORK_NOWAIT;
72 if (SCARG(uap, flags) & FREEBSD_RFMEM)
73 flags |= FORK_SHAREVM;
74 if (SCARG(uap, flags) & FREEBSD_RFSIGSHARE
    [all...]
  /src/sys/arch/evbarm/fdt/
fdt_dma_machdep.c 47 const int flags = of_hasprop(phandle, "dma-coherent") ? local in function:fdtbus_dma_tag_create
58 tagp->_ranges[0].dr_flags = flags;
67 tagp->_ranges[n].dr_flags = flags;
fdt_dma_machdep.c 47 const int flags = of_hasprop(phandle, "dma-coherent") ? local in function:fdtbus_dma_tag_create
58 tagp->_ranges[0].dr_flags = flags;
67 tagp->_ranges[n].dr_flags = flags;
  /src/sys/arch/riscv/fdt/
fdt_dma_machdep.c 51 const int flags = of_hasprop(phandle, "dma-coherent") ? local in function:fdtbus_dma_tag_create
62 tagp->_ranges[0].dr_flags = flags;
71 tagp->_ranges[n].dr_flags = flags;
fdt_dma_machdep.c 51 const int flags = of_hasprop(phandle, "dma-coherent") ? local in function:fdtbus_dma_tag_create
62 tagp->_ranges[0].dr_flags = flags;
71 tagp->_ranges[n].dr_flags = flags;
  /src/tests/kernel/
h_cloexec.c 41 int flags; local in function:main
43 if (fcntl(fd, F_GETFL, &flags) == 0)
h_cloexec.c 41 int flags; local in function:main
43 if (fcntl(fd, F_GETFL, &flags) == 0)
  /src/lib/libc/stdio/
fopen.c 60 int flags, oflags; local in function:fopen
63 if ((flags = __sflags(mode, &oflags)) == 0)
83 fp->_flags = flags;
setvbuf.c 59 int ret, flags; local in function:setvbuf
88 flags = fp->_flags;
89 if (flags & __SMBF)
91 flags &= ~(__SLBF | __SNBF | __SMBF | __SOPT | __SNPT | __SEOF);
102 flags |= __swhatbuf(fp, &iosize, &ttyflag);
124 fp->_flags = flags | __SNBF;
131 flags |= __SMBF;
141 flags |= __SNPT;
148 flags |= __SLBF;
149 fp->_flags = flags;
    [all...]
fopen.c 60 int flags, oflags; local in function:fopen
63 if ((flags = __sflags(mode, &oflags)) == 0)
83 fp->_flags = flags;
setvbuf.c 59 int ret, flags; local in function:setvbuf
88 flags = fp->_flags;
89 if (flags & __SMBF)
91 flags &= ~(__SLBF | __SNBF | __SMBF | __SOPT | __SNPT | __SEOF);
102 flags |= __swhatbuf(fp, &iosize, &ttyflag);
124 fp->_flags = flags | __SNBF;
131 flags |= __SMBF;
141 flags |= __SNPT;
148 flags |= __SLBF;
149 fp->_flags = flags;
    [all...]
fdopen.c 67 int flags, oflags, fdflags, tmp; local in function:__weak_alias
83 if ((flags = __sflags(mode, &oflags)) == 0)
108 fp->_flags = flags;
  /src/sys/compat/linux/arch/alpha/
linux_pipe.c 81 syscallarg(int) flags;
83 int fd[2], error, flags; local in function:linux_sys_pipe2
85 flags = linux_to_bsd_ioflags(SCARG(uap, flags));
86 if ((flags & ~(O_CLOEXEC|O_NONBLOCK)) != 0)
89 if ((error = pipe1(l, fd, flags)))
linux_pipe.c 81 syscallarg(int) flags;
83 int fd[2], error, flags; local in function:linux_sys_pipe2
85 flags = linux_to_bsd_ioflags(SCARG(uap, flags));
86 if ((flags & ~(O_CLOEXEC|O_NONBLOCK)) != 0)
89 if ((error = pipe1(l, fd, flags)))
  /src/sys/compat/linux/common/
linux_pipe.c 86 syscallarg(int) flags;
88 int fd[2], error, flags; local in function:linux_sys_pipe2
90 flags = linux_to_bsd_ioflags(SCARG(uap, flags));
91 if ((flags & ~(O_CLOEXEC|O_NONBLOCK)) != 0)
94 if ((error = pipe1(l, fd, flags)))
linux_pipe.c 86 syscallarg(int) flags;
88 int fd[2], error, flags; local in function:linux_sys_pipe2
90 flags = linux_to_bsd_ioflags(SCARG(uap, flags));
91 if ((flags & ~(O_CLOEXEC|O_NONBLOCK)) != 0)
94 if ((error = pipe1(l, fd, flags)))
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_flags.h 12 // ASan runtime flags.
32 struct Flags {
40 extern Flags asan_flags_dont_use_directly;
41 inline Flags *flags() { function in namespace:__asan
asan_flags.h 12 // ASan runtime flags.
32 struct Flags {
40 extern Flags asan_flags_dont_use_directly;
41 inline Flags *flags() { function in namespace:__asan
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_flags.h 12 // XRay runtime flags.
23 struct Flags {
31 extern Flags xray_flags_dont_use_directly;
32 extern void registerXRayFlags(FlagParser *P, Flags *F);
34 inline Flags *flags() { return &xray_flags_dont_use_directly; } function in namespace:__xray
xray_flags.h 12 // XRay runtime flags.
23 struct Flags {
31 extern Flags xray_flags_dont_use_directly;
32 extern void registerXRayFlags(FlagParser *P, Flags *F);
34 inline Flags *flags() { return &xray_flags_dont_use_directly; } function in namespace:__xray
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bar/
nouveau_nvkm_subdev_bar_g84.c 37 unsigned long flags; local in function:g84_bar_flush
38 spin_lock_irqsave(&bar->lock, flags);
44 spin_unlock_irqrestore(&bar->lock, flags);
nouveau_nvkm_subdev_bar_g84.c 37 unsigned long flags; local in function:g84_bar_flush
38 spin_lock_irqsave(&bar->lock, flags);
44 spin_unlock_irqrestore(&bar->lock, flags);

Completed in 173 milliseconds

1 2 3 4 5 6 7 8 91011>>