Searched refs:mt (Results 1 - 25 of 33) sorted by relevance

12

/barrelfish-master/lib/acpica/tests/aslts/src/runtime/collections/
H A DMakefile3 MDIRS= bdemo complex exceptions functional IMPL service mt Identity2MS
/barrelfish-master/lib/libc/resolv/
H A Dmtctxres.c69 mtctxres_t *mt; local
78 if ((mt = malloc(sizeof(mtctxres_t))) == NULL) {
83 memset(mt, 0, sizeof (mtctxres_t));
85 if ((ret = pthread_setspecific(key, mt)) != 0) {
86 free(mt);
104 mtctxres_t *mt; local
130 if (((mt = pthread_getspecific(key)) != NULL) ||
132 (mt = pthread_getspecific(key)) != NULL)) {
133 return (mt);
/barrelfish-master/lib/lua/src/
H A Dltm.c64 Table *mt; local
67 mt = hvalue(o)->metatable;
70 mt = uvalue(o)->metatable;
73 mt = G(L)->mt[ttypenv(o)];
75 return (mt ? luaH_getstr(mt, G(L)->tmname[event]) : luaO_nilobject);
H A Dlstate.c166 TValue mt; local
172 setthvalue(L, &mt, L);
173 luaH_setint(L, registry, LUA_RIDX_MAINTHREAD, &mt);
175 sethvalue(L, &mt, luaH_new(L));
176 luaH_setint(L, registry, LUA_RIDX_GLOBALS, &mt);
307 for (i=0; i < LUA_NUMTAGS; i++) g->mt[i] = NULL;
H A Dlapi.c688 Table *mt = NULL; local
694 mt = hvalue(obj)->metatable;
697 mt = uvalue(obj)->metatable;
700 mt = G(L)->mt[ttypenv(obj)];
703 if (mt == NULL)
706 sethvalue(L, L->top, mt);
814 Table *mt; local
819 mt = NULL;
822 mt
[all...]
H A Dlstate.h147 struct Table *mt[LUA_NUMTAGS]; /* metatables for basic types */ member in struct:global_State
H A Dlgc.c253 Table *mt = gco2u(o)->metatable; local
254 markobject(g, mt);
304 markobject(g, g->mt[i]);
873 void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt) { argument
877 gfasttm(g, mt, TM_GC) == NULL) /* or has no finalizer? */
1094 GCObject *mt = obj2gco(g->mainthread); local
1095 sweeplist(L, &mt, 1);
H A Dlgc.h153 LUAI_FUNC void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt);
/barrelfish-master/usr/drivers/e1000/
H A De1000n_helpers.c119 char * e1000_mac_type_to_str(e1000_mac_type_t mt){ argument
145 if(mt >= e1000_num_macs) return NULL;
146 return names[mt];
149 bool e1000_supports_msix(e1000_mac_type_t mt) argument
151 switch (mt) {
H A De1000n.h255 bool e1000_supports_msix(e1000_mac_type_t mt);
257 char * e1000_mac_type_to_str(e1000_mac_type_t mt);
/barrelfish-master/lib/acpica/tests/aslts/bin/
H A Dsettings45 # Tests of multi-threading functionality (mt-tests)
55 ALL_AVAILABLE_COLLS="functional complex exceptions bdemo service mt Identity2MS IMPL"
81 echo_list "mt" "$MT_COLL"
137 # Tests of multi-threading functionality (mt-tests)
139 mt="mt_mutex"
156 ENABLED_TCASES="$func $compl $excep $mt $Identity2MS $bdemo $serv"
H A Dcommon188 $MT_COLL_OP) dirname=mt;;
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Ds3_both.c389 /* Obtain handshake message of message type 'mt' (any if mt == -1),
394 long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok) argument
404 if ((mt >= 0) && (s->s3->tmp.message_type != mt))
457 if ((mt >= 0) && (*p != mt))
463 if ((mt < 0) && (*p == SSL3_MT_CLIENT_HELLO) &&
H A Dd1_both.c167 static void dtls1_set_message_header_int(SSL *s, unsigned char mt,
405 /* Obtain handshake message of message type 'mt' (any if mt == -1),
410 long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok) argument
422 if ((mt >= 0) && (s->s3->tmp.message_type != mt))
1322 dtls1_set_message_header(SSL *s, unsigned char *p, unsigned char mt, argument
1331 dtls1_set_message_header_int(s, mt, len, s->d1->handshake_write_seq,
1340 dtls1_set_message_header_int(SSL *s, unsigned char mt, argument
1346 msg_hdr->type = mt;
[all...]
H A Dssl_locl.h864 long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok);
925 unsigned char *p, unsigned char mt, unsigned long len,
1016 long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok);
/barrelfish-master/lib/openssl-1.0.0d/engines/
H A De_chil.c1153 static int hwcrhk_mutex_init(HWCryptoHook_Mutex* mt, argument
1156 mt->lockid = CRYPTO_get_new_dynlockid();
1157 if (mt->lockid == 0)
1162 static int hwcrhk_mutex_lock(HWCryptoHook_Mutex *mt) argument
1164 CRYPTO_w_lock(mt->lockid);
1168 static void hwcrhk_mutex_unlock(HWCryptoHook_Mutex * mt) argument
1170 CRYPTO_w_unlock(mt->lockid);
1173 static void hwcrhk_mutex_destroy(HWCryptoHook_Mutex *mt) argument
1175 CRYPTO_destroy_dynlockid(mt->lockid);
/barrelfish-master/include/vm/
H A Dvnode_pager.c1066 vm_page_t mt; local
1069 mt = bp->b_pages[i];
1075 mt->valid = VM_PAGE_BITS_ALL;
1076 KASSERT(mt->dirty == 0,
1077 ("%s: page %p is dirty", __func__, mt));
1078 KASSERT(!pmap_page_is_mapped(mt),
1079 ("%s: page %p is mapped", __func__, mt));
1088 vm_page_set_valid_range(mt, 0,
1090 KASSERT((mt->dirty & vm_page_bits(0,
1092 ("%s: page %p is dirty", __func__, mt));
[all...]
H A Dvm_pageout.c515 vm_page_t mt = mc[i]; local
518 !pmap_page_is_write_mapped(mt),
519 ("vm_pageout_flush: page %p is not write protected", mt));
531 vm_page_undirty(mt);
540 vm_page_lock(mt);
541 vm_page_activate(mt);
542 vm_page_unlock(mt);
560 vm_page_sunbusy(mt);
/barrelfish-master/include/sys/
H A Dbitset.h205 #define BITSET_ALLOC(_s, mt, mf) \
206 malloc(__bitset_words(_s) * sizeof(long), mt, (mf))
/barrelfish-master/lib/bomp/backends/
H A Dbomp_shared.c267 struct thread *mt = thread_create_varstack(mainfunc, mainarg, stacksize); local
268 errval_t err = thread_join(mt, &retval);
/barrelfish-master/lib/openssl-1.0.0d/crypto/bio/
H A Dbio_lib.c479 int mt,mask; local
486 mt=bio->method->type;
490 if (mt & type) return(bio);
492 else if (mt == type)
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dbip_delay.c1074 pword *mt; local
1116 mt = add_attribute(tv.kernel, nva, nta, slot);
1118 attr = MetaTerm(mt)->val.ptr;
1146 mt = add_attribute(TREF, nva, nta, slot);
1147 Return_Unify_Pw(vv, tv, mt->val, mt->tag);
1152 mt = add_attribute(tv.kernel, nva, nta, slot);
1153 Return_Unify_Pw(vv, tv, mt->val, tref);
1158 mt = add_attribute(TREF, nva, nta, slot);
1159 Return_Unify_Pw(vv, tv, mt
[all...]
H A Dwrite.c254 #define Write_Infix(ww, s, d, flags, mod, mt, sd, arg, narg) \
255 status = _write_infix(ww, s, d, flags, mod, mt, sd, narg, depth);\
259 #define Write_Postfix(ww, s, d, flags, mod, mt, sd) \
261 (status = _write_atom(ww, s, d, OPERATOR, flags, mod, mt, sd, depth)) < 0) \
264 #define Write_Prefix(ww, s, d, flags, mod, mt, sd) \
265 if((status = _write_atom(ww, s, d, OPERATOR, flags, mod, mt, sd, depth)) < 0 || \
268 #define Write_Atom(ww, s, d, what, flags, mod, mt, sd) \
269 if((status = _write_atom(ww, s, d, what, flags, mod, mt, sd, depth)) < 0) \
272 #define Pwrite(ww, s, v, t, mp, d, mod, mt, sd, flags) \
273 if((status = _pwrite1(ww, s, v, t, mp, d, mod, mt, s
[all...]
H A Dread.c1915 type mt, /* its tag */
1939 prop = get_modular_property(tr_did, propid, mv, mt, VISIBLE_PROP, &err);
1974 (pw+6)->tag.all = mt.all;
1978 (pw+8)->tag.all = mt.all;
1912 trafo_term(dident tr_did, int flags, dident mv, type mt, int *tr_flags) argument
/barrelfish-master/usr/eclipseclp/Kernel/lib/
H A Dhttp_grammar.pl139 media_type(mt(T, ST)) --> type_subtype(T, ST).
140 %media_type(mt(T, ST)) --> type_subtype(T, ST), [;], rest.

Completed in 220 milliseconds

12