Searched refs:vn (Results 1 - 17 of 17) sorted by relevance

/barrelfish-master/usr/drivers/iommu/modules/generic/
H A Diommu_service.c57 struct vnodest *vn; local
60 vn = vnodes_pml4;
63 vn = vnodes_pdpt;
66 vn = vnodes_pdir;
72 while(vn) {
73 if (vn->id.type == id.type && vn->id.base == id.base) {
74 *out = vn->cap;
77 vn = vn
86 struct vnodest *vn = calloc(1, sizeof(*vn)); local
[all...]
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dhandlers.c246 p_get_event_handler(value vn, type tn, value vh, type th, value vm, type tm),
248 p_get_interrupt_handler(value vn, type tn, value vh, type th, value vm, type tm),
251 p_set_error_handler(value vn, type tn, value vp, type tp, value vm, type tm),
252 p_reset_error_handler(value vn, type tn),
253 p_set_default_error_handler(value vn, type tn, value vp, type tp, value vm, type tm),
254 p_set_interrupt_handler(value vn, type tn, value vp, type tp, value vm, type tm),
255 p_valid_error(value vn, type tn);
883 * p_set_error_handler(vn,tn,vp,tp) FUNCTION
884 * (vn,tn) defines the error code
890 p_set_error_handler(value vn, typ argument
986 p_set_default_error_handler(value vn, type tn, value vp, type tp, value vm, type tm) argument
1026 p_reset_error_handler(value vn, type tn) argument
1052 p_set_interrupt_handler(value vn, type tn, value vp, type tp, value vm, type tm) argument
1121 p_get_interrupt_handler(value vn, type tn, value vh, type th, value vm, type tm) argument
1200 p_get_event_handler(value vn, type tn, value vh, type th, value vm, type tm) argument
1249 p_valid_error(value vn, type tn) argument
[all...]
H A Dbip_tconv.c70 p_integer_atom(value vn, type tn, value vs, type ts),
71 p_number_string(value vn, type tn, value vs, type ts, value vm, type tm),
74 p_setarg(value vn, type tn, value vt, type tt, value va, type ta),
471 * FUNCTION NAME: p_integer_atom(vn, tn, vs, ts)
473 * PARAMETERS: vn, tn variable or integer
483 p_integer_atom(value vn, type tn, value vs, type ts) argument
499 int len = tag_desc[TagType(tn)].string_size(vn, tn, 1);
501 len = tag_desc[TagType(tn)].to_string(vn, tn, s, 1);
518 Return_Unify_Pw(vn, tn, result.val, result.tag);
528 * FUNCTION NAME: p_number_string(vn, t
538 p_number_string(value vn, type tn, value vs, type ts, value vm, type tm) argument
838 ec_chase_arg(value vn, type tn, value vt, type tt, int *perr) argument
944 p_setarg(value vn, type tn, value vt, type tt, value va, type ta) argument
[all...]
H A Dbip_delay.c60 p_nonground3(value vn, type tn, value vterm, type tterm, value vlist, type tlst),
75 p_insert_suspension(value vvars, type tvars, value vsusp, type tsusp, value vn, type tn, value vsl, type tsl),
76 p_enter_suspension_list(value vn, type tn, value vatt, type tatt, value vsusp, type tsusp),
101 p_get_suspension_number(value vs, type ts, value vn, type tn),
102 p_set_suspension_number(value vs, type ts, value vn, type tn);
725 p_insert_suspension(value vvars, type tvars, value vsusp, type tsusp, value vn, type tn, value vsl, type tsl) argument
733 if (vn.nint < 1) {
750 res = deep_suspend(vvars, tvars, (int) vn.nint, susp, slot);
871 p_nonground3(value vn, type tn, value vterm, type tterm, value vlist, type tlst) argument
878 if (vn
1292 p_set_suspension_number(value vs, type ts, value vn, type tn) argument
1311 p_get_suspension_number(value vs, type ts, value vn, type tn) argument
1408 p_set_suspension_arg(value vs, type ts, value vn, type tn, value va, type ta) argument
1743 p_enter_suspension_list(value vn, type tn, value vatt, type tatt, value vsusp, type tsusp) argument
[all...]
H A Dbip_arith.c1283 p_setbit(value vi, type ti, value vn, type tn, value v, type t) /* argument order because of overflow handler */ argument
1289 if (vn.nint < 0)
1295 if (vn.nint < BITS_PER_WORD-1)
1297 Make_Integer(&result, vi.nint | ((word)1 << vn.nint));
1310 err = tag_desc[TagType(ti)].arith_op[ARITH_SETBIT](vi, vn, &result);
1314 return binary_arith_op(vi, ti, vn, tn, v, t, ARITH_SETBIT);
1321 p_clrbit(value vi, type ti, value vn, type tn, value v, type t) argument
1327 if (vn.nint < 0)
1333 if (vn.nint < BITS_PER_WORD-1)
1335 Make_Integer(&result, vi.nint & ~((word)1 << vn
1359 p_getbit(value vi, type ti, value vn, type tn, value v, type t) argument
[all...]
H A Dbip_array.c169 value vv, vm, vn, vt; local
188 vn.did = in_dict("depth", 0);
189 (void) p_make_array_(vn, tdict, vt, tdict, vv, tdict, vm, tdict);
191 vn.did = in_dict("max_depth", 0);
192 (void) p_make_array_(vn, tdict, vt, tdict, vv, tdict, vm, tdict);
194 vn.did = in_dict("depth_limit", 0);
195 (void) p_make_array_(vn, tdict, vt, tdict, vv, tdict, vm, tdict);
197 vn.did = in_dict("depth_ov", 0);
198 (void) p_make_array_(vn, tdict, vt, tdict, vv, tdict, vm, tdict);
H A Dbip_store.c517 p_store_count(value vhandle, type thandle, value vn, type tn, value vmod, type tmod) argument
521 Return_Unify_Integer(vn, tn, obj->nentries);
H A Dbip_db.c123 p_proc_flags(value vn, type tn, value vc, type tc, value vf, type tf, value vm, type tm, value vp, type tp),
132 p_create_call_n(value vn, type tn, value va, type ta),
873 p_create_call_n(value vn, type tn, value va, type ta) argument
877 return ec_create_call_n(add_dict(vn.did, va.nint));
989 p_proc_flags(value vn, type tn, value vc, type tc, value vf, type tf, value vm, type tm, value vp, type tp) argument
1008 Get_Proc_Did(vn, tn, wd);
H A Dbip_io.c307 p_listen(value v, type t, value vn, type tn),
3175 socket_listen(stream_id nst, value vn, type tn) argument
3178 if (listen((socket_t) StreamUnit(nst), (int) vn.nint) != 0) {
3186 p_listen(value v, type t, value vn, type tn) argument
3195 socket_listen(nst, vn, tn);
3530 static int p_listen(value v, type t, value vn, type tn) argument
H A Dbip_domain.c120 p_dvar_replace(value vvar, type tvar, value vn, type tn),
2830 p_dvar_replace(value vvar, type tvar, value vn, type tn) argument
2837 Check_Domain(vn, tn);
2840 s = vn.ptr + 2;
2856 return ec_assign(dom, vn, tn);
H A Dbip_comp.c1046 pword *ec_chase_arg(value vn, type tn, value vt, type tt, int *perr);
/barrelfish-master/usr/eclipseclp/icparc_solvers/rxspencer/
H A Dregexec.c77 #define STATEVARS int vn; char *space
80 (m)->vn = 0; }
82 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
/barrelfish-master/lib/libc/regex/
H A Dregexec.c158 #define STATEVARS long vn; char *space
161 (m)->vn = 0; }
163 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
/barrelfish-master/lib/lua/src/
H A Dldebug.c413 const char *vn = (op == OP_GETTABLE) /* name of indexed variable */ local
417 return (vn && strcmp(vn, LUA_ENV) == 0) ? "global" : "field";
/barrelfish-master/usr/eclipseclp/Eplex/
H A Deplex.c5012 p_cpx_loadorder(value vlp, type tlp, value vn, type tn, value vl, type tl) argument
5019 p_cpx_loadorder(value vlp, type tlp, value vn, type tn, value vl, type tl) argument
5033 if (vn.nint <= 0) Succeed; /* no need to load anything */
5036 Push_Buffer(vn.nint*3*sizeof(int));
5038 prio = (int*) (BufferStart(buf) + vn.nint*sizeof(int));
5040 bdir = (int*) (BufferStart(buf) + vn.nint*2*sizeof(int));
5043 bdir = (char*) (BufferStart(buf) + vn.nint*2*sizeof(int));
5078 if (i != vn.nint)
5142 value vn, type tn, /* member count */
5153 if (vn
5140 p_cpx_add_new_sos(value vlp, type tlp, value vsostype, type tsostype, value vn, type tn, value vl, type tl) argument
[all...]
/barrelfish-master/usr/arrakismon/
H A Dguest.c753 struct vnode *vn; local
755 err = get_pdpt(pmap, 0, &vn);
760 err+= cap_copy(ept_copy, vn->v.cap);
/barrelfish-master/lib/pcre/
H A Dpcre_compile.c6580 const char *vn = verbnames; local
6615 STRNCMP_UC_C8(name, vn, namelen) == 0)
6708 vn += verbs[i].len + 1;

Completed in 194 milliseconds