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

1 2 3 4 5 6 7 8 91011

  /src/lib/libm/softfloat/
fegetenv.c 45 fegetenv(fenv_t *envp)
48 __FENV_SET_FLAGS(envp, fpgetsticky());
49 __FENV_SET_MASK(envp, fpgetmask());
50 __FENV_SET_ROUND(envp, fpgetround());
feholdexcept.c 45 feholdexcept(fenv_t *envp)
48 __FENV_SET_FLAGS(envp, fpgetsticky());
49 __FENV_SET_MASK(envp, fpgetmask());
50 __FENV_SET_ROUND(envp, fpgetround());
fesetenv.c 45 fesetenv(const fenv_t *envp)
48 fpsetsticky(__FENV_GET_FLAGS(envp));
49 fpsetmask(__FENV_GET_MASK(envp));
50 fpsetround(__FENV_GET_ROUND(envp));
feupdateenv.c 45 feupdateenv(const fenv_t *envp)
51 fpsetround(__FENV_GET_ROUND(envp));
52 fpsetmask(__FENV_GET_MASK(envp));
53 fpsetsticky(__FENV_GET_MASK(envp));
fegetenv.c 45 fegetenv(fenv_t *envp)
48 __FENV_SET_FLAGS(envp, fpgetsticky());
49 __FENV_SET_MASK(envp, fpgetmask());
50 __FENV_SET_ROUND(envp, fpgetround());
feholdexcept.c 45 feholdexcept(fenv_t *envp)
48 __FENV_SET_FLAGS(envp, fpgetsticky());
49 __FENV_SET_MASK(envp, fpgetmask());
50 __FENV_SET_ROUND(envp, fpgetround());
fesetenv.c 45 fesetenv(const fenv_t *envp)
48 fpsetsticky(__FENV_GET_FLAGS(envp));
49 fpsetmask(__FENV_GET_MASK(envp));
50 fpsetround(__FENV_GET_ROUND(envp));
feupdateenv.c 45 feupdateenv(const fenv_t *envp)
51 fpsetround(__FENV_GET_ROUND(envp));
52 fpsetmask(__FENV_GET_MASK(envp));
53 fpsetsticky(__FENV_GET_MASK(envp));
fegetenv.c 45 fegetenv(fenv_t *envp)
48 __FENV_SET_FLAGS(envp, fpgetsticky());
49 __FENV_SET_MASK(envp, fpgetmask());
50 __FENV_SET_ROUND(envp, fpgetround());
feholdexcept.c 45 feholdexcept(fenv_t *envp)
48 __FENV_SET_FLAGS(envp, fpgetsticky());
49 __FENV_SET_MASK(envp, fpgetmask());
50 __FENV_SET_ROUND(envp, fpgetround());
fesetenv.c 45 fesetenv(const fenv_t *envp)
48 fpsetsticky(__FENV_GET_FLAGS(envp));
49 fpsetmask(__FENV_GET_MASK(envp));
50 fpsetround(__FENV_GET_ROUND(envp));
feupdateenv.c 45 feupdateenv(const fenv_t *envp)
51 fpsetround(__FENV_GET_ROUND(envp));
52 fpsetmask(__FENV_GET_MASK(envp));
53 fpsetsticky(__FENV_GET_MASK(envp));
  /src/sys/arch/algor/algor/
pmon.c 52 pmon_init(char *envp[])
55 int32_t *envp32 = (void *) envp;
57 envp = environ;
60 KASSERT(envp - environ < __arraycount(environ));
61 *envp++ = (char *)(intptr_t)*envp32++;
64 KASSERT(envp - environ < __arraycount(environ));
65 *envp = NULL;
68 environ = envp;
pmon.c 52 pmon_init(char *envp[])
55 int32_t *envp32 = (void *) envp;
57 envp = environ;
60 KASSERT(envp - environ < __arraycount(environ));
61 *envp++ = (char *)(intptr_t)*envp32++;
64 KASSERT(envp - environ < __arraycount(environ));
65 *envp = NULL;
68 environ = envp;
pmon.c 52 pmon_init(char *envp[])
55 int32_t *envp32 = (void *) envp;
57 envp = environ;
60 KASSERT(envp - environ < __arraycount(environ));
61 *envp++ = (char *)(intptr_t)*envp32++;
64 KASSERT(envp - environ < __arraycount(environ));
65 *envp = NULL;
68 environ = envp;
  /src/lib/libc/gen/
exect.c 40 exect(const char *path, char *const argv[], char *const envp[])
42 return execve(path, argv, envp);
exect.c 40 exect(const char *path, char *const argv[], char *const envp[])
42 return execve(path, argv, envp);
exect.c 40 exect(const char *path, char *const argv[], char *const envp[])
42 return execve(path, argv, envp);
  /src/games/hunt/hunt/
hunt.c 657 char *envp, *envname, *s; local in function:env_init
663 if ((envp = getenv("HUNT")) != NULL) {
664 while ((s = strpbrk(envp, "=,")) != NULL) {
665 if (strncmp(envp, "cloak,", s - envp + 1) == 0) {
667 envp = s + 1;
669 else if (strncmp(envp, "scan,", s - envp + 1) == 0) {
671 envp = s + 1;
673 else if (strncmp(envp, "fly,", s - envp + 1) == 0)
    [all...]
hunt.c 657 char *envp, *envname, *s; local in function:env_init
663 if ((envp = getenv("HUNT")) != NULL) {
664 while ((s = strpbrk(envp, "=,")) != NULL) {
665 if (strncmp(envp, "cloak,", s - envp + 1) == 0) {
667 envp = s + 1;
669 else if (strncmp(envp, "scan,", s - envp + 1) == 0) {
671 envp = s + 1;
673 else if (strncmp(envp, "fly,", s - envp + 1) == 0)
    [all...]
hunt.c 657 char *envp, *envname, *s; local in function:env_init
663 if ((envp = getenv("HUNT")) != NULL) {
664 while ((s = strpbrk(envp, "=,")) != NULL) {
665 if (strncmp(envp, "cloak,", s - envp + 1) == 0) {
667 envp = s + 1;
669 else if (strncmp(envp, "scan,", s - envp + 1) == 0) {
671 envp = s + 1;
673 else if (strncmp(envp, "fly,", s - envp + 1) == 0)
    [all...]
  /src/lib/libm/arch/riscv/
fenv.c 194 * environment in the object pointed to by envp.
197 fegetenv(fenv_t *envp)
199 _DIAGASSERT(envp != NULL);
201 *envp = fcsr_read();
209 * the object pointed to by envp, clears the floating-point status flags, and
214 feholdexcept(fenv_t *envp)
216 _DIAGASSERT(envp != NULL);
218 *envp = fcsr_read();
228 * represented by the object pointed to by envp. The argument `envp' point
    [all...]
fenv.c 194 * environment in the object pointed to by envp.
197 fegetenv(fenv_t *envp)
199 _DIAGASSERT(envp != NULL);
201 *envp = fcsr_read();
209 * the object pointed to by envp, clears the floating-point status flags, and
214 feholdexcept(fenv_t *envp)
216 _DIAGASSERT(envp != NULL);
218 *envp = fcsr_read();
228 * represented by the object pointed to by envp. The argument `envp' point
    [all...]
fenv.c 194 * environment in the object pointed to by envp.
197 fegetenv(fenv_t *envp)
199 _DIAGASSERT(envp != NULL);
201 *envp = fcsr_read();
209 * the object pointed to by envp, clears the floating-point status flags, and
214 feholdexcept(fenv_t *envp)
216 _DIAGASSERT(envp != NULL);
218 *envp = fcsr_read();
228 * represented by the object pointed to by envp. The argument `envp' point
    [all...]
  /src/lib/libm/arch/alpha/
fenv.c 56 fegetenv(fenv_t *envp)
68 *envp = r.__bits | p.mask;
74 feholdexcept(fenv_t *envp)
81 *envp = r.__bits | p.mask;
93 fesetenv(const fenv_t *envp)
98 p.mask = *envp & FE_ALL_EXCEPT;
100 r.__bits = *envp & ~FE_ALL_EXCEPT;
107 feupdateenv(const fenv_t *envp)
112 p.mask = *envp & FE_ALL_EXCEPT;
115 newr.__bits = *envp & ~FE_ALL_EXCEPT
    [all...]

Completed in 53 milliseconds

1 2 3 4 5 6 7 8 91011