Searched refs:env (Results 1 - 25 of 586) sorted by relevance

1234567891011>>

/openbsd-current/regress/lib/libc/setjmp-fpu/
H A D_setjmp.c11 #define SETJMP(env, savemask) _setjmp(env)
12 #define LONGJMP(env, val) _longjmp(env, val)
H A Dsetjmp.c11 #define SETJMP(env, savemask) setjmp(env)
12 #define LONGJMP(env, val) longjmp(env, val)
H A Dsigsetjmp.c11 #define SETJMP(env, savemask) sigsetjmp(env, savemask)
12 #define LONGJMP(env, val) siglongjmp(env, val)
/openbsd-current/gnu/gcc/libgomp/
H A Denv.c51 char *env, *end; local
54 env = getenv ("OMP_SCHEDULE");
55 if (env == NULL)
58 while (isspace ((unsigned char) *env))
59 ++env;
60 if (strncasecmp (env, "static", 6) == 0)
63 env += 6;
65 else if (strncasecmp (env, "dynamic", 7) == 0)
68 env += 7;
70 else if (strncasecmp (env, "guide
118 char *env, *end; local
154 const char *env; local
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/17_intro/
H A Dheader_csetjmp.cc29 std::jmp_buf env; local
30 int i = setjmp(env);
/openbsd-current/usr.bin/env/
H A DMakefile3 PROG= env
/openbsd-current/usr.sbin/unbound/dynlibmod/examples/
H A Dhelloworld.c40 EXPORT int init(struct module_env* env, int id) { argument
42 struct dynlibmod_env* de = (struct dynlibmod_env*) env->modinfo[id];
45 NULL, env, id);
46 struct dynlibmod_env* local_env = env->modinfo[id];
53 EXPORT void deinit(struct module_env* env, int id) { argument
55 struct dynlibmod_env* de = (struct dynlibmod_env*) env->modinfo[id];
56 de->inplace_cb_delete_wrapped(env, inplace_cb_reply, id);
73 struct dynlibmod_env* env = qstate->env->modinfo[id]; local
74 if (env
102 struct dynlibmod_env* env = qstate->env->modinfo[id]; local
111 get_mem(struct module_env* env, int id) argument
124 struct dynlibmod_env* env = qstate->env->modinfo[id]; local
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_interceptors.cpp64 extern "C" int __sigjmp_save(__hw_sigjmp_buf env, int savemask) { argument
65 env[0].__magic = kHwJmpBufMagic;
66 env[0].__mask_was_saved =
68 &env[0].__saved_mask) == 0);
73 InternalLongjmp(__hw_register_buf env, int retval) { argument
83 unsigned long long stack_pointer = env[kSpIndex];
96 register void *env_address asm("x0") = &env[0];
119 register void *env_address asm("%rdi") = &env[0];
138 register void *env_address asm("x10") = &env[0];
182 INTERCEPTOR(void, siglongjmp, __hw_sigjmp_buf env, in argument
200 INTERCEPTOR(void, __libc_longjmp, __hw_jmp_buf env, int val) argument
206 INTERCEPTOR(void, longjmp, __hw_jmp_buf env, int val) argument
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/c/
H A Dstd_csetjmp.h46 #define setjmp(env) std::setjmp (env)
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c/
H A Dstd_csetjmp.h46 #define setjmp(env) std::setjmp (env)
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_csetjmp.h56 #define setjmp(env) setjmp (env)
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dreadline.exp156 global env
157 if [info exists env(INPUTRC)] {
158 set old_inputrc $env(INPUTRC)
160 set env(INPUTRC) "/dev/null"
185 if [info exists env(GDBHISTFILE)] {
186 set old_gdbhistfile $env(GDBHISTFILE)
188 if [info exists env(HISTSIZE)] {
189 set old_histsize $env(HISTSIZE)
191 set env(GDBHISTFILE) "${srcdir}/${subdir}/gdb_history"
192 set env(HISTSIZ
[all...]
/openbsd-current/gnu/llvm/libcxx/include/
H A Dsetjmp.h24 void longjmp(jmp_buf env, int val);
41 #define setjmp(env) setjmp(env)
/openbsd-current/gnu/gcc/gcc/
H A Dipa-utils.c79 has been customized for cgraph_nodes. The env parameter is because
82 cgraph_reduced_inorder. ENV is a stack env and would be
87 searchc (struct searchc_env* env, struct cgraph_node *v)
94 splay_tree_remove (env->nodes_marked_new, v->uid);
96 v_info->dfn_number = env->count;
97 v_info->low_link = env->count;
98 env->count++;
99 env->stack[(env->stack_size)++] = v;
114 searchc (env,
86 searchc(struct searchc_env* env, struct cgraph_node *v) argument
162 struct searchc_env env; local
[all...]
/openbsd-current/lib/libm/src/
H A Ds_lrintl.c49 fenv_t env; local
52 feholdexcept(&env);
56 feupdateenv(&env);
H A Ds_lrint.c49 fenv_t env; local
52 feholdexcept(&env);
56 feupdateenv(&env);
/openbsd-current/usr.sbin/ypldap/
H A Dypldap.c47 void main_configure_client(struct env *);
49 void main_start_update(struct env *);
50 void main_trash_update(struct env *);
51 void main_end_update(struct env *);
52 int main_create_user_groups(struct env *);
53 void purge_config(struct env *);
126 main_start_update(struct env *env) argument
128 env->update_trashed = 0;
131 env
148 main_trash_update(struct env *env) argument
176 main_create_user_groups(struct env *env) argument
274 main_end_update(struct env *env) argument
354 struct env *env = p; local
465 main_configure_client(struct env *env) argument
481 struct env *env = p; local
487 purge_config(struct env *env) argument
503 struct env env; local
[all...]
/openbsd-current/sys/arch/loongson/loongson/
H A Dpmon.c67 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
89 if (env->efi.bios.version < 0x2000 &&
90 env->efi.bios.vga_bios >= CKSEG0_BASE &&
91 env->efi.bios.vga_bios < CKSEG0_BASE + CKSEG_SIZE) {
180 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
185 return &env->reset;
191 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
196 return &env->efi.bios;
202 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
203 uint64_t va = (uint64_t)&env
215 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
228 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
241 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
254 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
267 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
280 struct pmon_env *env = (struct pmon_env *)pmon_envp; local
[all...]
/openbsd-current/sbin/iked/
H A Diked.c80 struct iked *env = NULL; local
164 if ((env = calloc(1, sizeof(*env))) == NULL)
165 fatal("calloc: env");
167 iked_env = env;
168 env->sc_opts = opts;
169 env->sc_nattmode = natt_mode;
170 env->sc_nattport = port;
172 ps = &env->sc_ps;
173 ps->ps_env = env;
238 struct iked *env = ps->ps_env; local
245 parent_configure(struct iked *env) argument
317 parent_reload(struct iked *env, int reset, const char *filename) argument
428 struct iked *env = iked_env; local
448 struct iked *env = iked_env; local
487 struct iked *env = iked_env; local
509 parent_shutdown(struct iked *env) argument
[all...]
/openbsd-current/usr.bin/doas/
H A Denv.c1 /* $OpenBSD: env.c,v 1.10 2019/07/07 19:21:28 tedu Exp $ */
39 struct env { struct
44 static void fillenv(struct env *env, const char **envlist);
77 addnode(struct env *env, const char *key, const char *value) argument
82 RB_INSERT(envtree, &env->root, node);
83 env->count++;
86 static struct env *
94 struct env *en local
146 flattenenv(struct env *env) argument
166 fillenv(struct env *env, const char **envlist) argument
228 struct env *env; local
[all...]
/openbsd-current/usr.bin/tmux/
H A Denviron.c46 struct environ *env; local
48 env = xcalloc(1, sizeof *env);
49 RB_INIT(env);
51 return (env);
56 environ_free(struct environ *env) argument
60 RB_FOREACH_SAFE(envent, environ, env, envent1) {
61 RB_REMOVE(environ, env, envent);
66 free(env);
70 environ_first(struct environ *env) argument
99 environ_find(struct environ *env, const char *name) argument
109 environ_set(struct environ *env, const char *name, int flags, const char *fmt, ...) argument
132 environ_clear(struct environ *env, const char *name) argument
150 environ_put(struct environ *env, const char *var, int flags) argument
168 environ_unset(struct environ *env, const char *name) argument
212 environ_push(struct environ *env) argument
227 environ_log(struct environ *env, const char *fmt, ...) argument
251 struct environ *env; local
[all...]
/openbsd-current/usr.sbin/unbound/dns64/
H A Ddns64.h53 int dns64_init(struct module_env* env, int id);
56 void dns64_deinit(struct module_env* env, int id);
69 size_t dns64_get_mem(struct module_env* env, int id);
/openbsd-current/usr.sbin/unbound/services/
H A Dmodstack.h90 * @param env: module environment which is inited by the modules.
92 * env.need_to_validate is set by the modules.
96 struct module_env* env);
101 * @param env: module env for module deinit() calls.
103 void modstack_desetup(struct module_stack* stack, struct module_env* env);
114 size_t mod_get_mem(struct module_env* env, const char* name);
/openbsd-current/sbin/unwind/libunbound/dns64/
H A Ddns64.h53 int dns64_init(struct module_env* env, int id);
56 void dns64_deinit(struct module_env* env, int id);
69 size_t dns64_get_mem(struct module_env* env, int id);
/openbsd-current/sbin/unwind/libunbound/services/
H A Dmodstack.h90 * @param env: module environment which is inited by the modules.
92 * env.need_to_validate is set by the modules.
96 struct module_env* env);
101 * @param env: module env for module deinit() calls.
103 void modstack_desetup(struct module_stack* stack, struct module_env* env);
114 size_t mod_get_mem(struct module_env* env, const char* name);

Completed in 164 milliseconds

1234567891011>>