Searched refs:ms (Results 1 - 25 of 63) sorted by relevance

123

/barrelfish-2018-10-04/lib/libc/iconv/
H A Dcitrus_memstream.h52 _citrus_memory_stream_iseof(struct _citrus_memory_stream *ms) argument
55 return (ms->ms_pos >= _citrus_region_size(&ms->ms_region));
59 _citrus_memory_stream_bind(struct _citrus_memory_stream * __restrict ms, argument
63 ms->ms_region = *r;
64 ms->ms_pos = 0;
68 _citrus_memory_stream_bind_ptr(struct _citrus_memory_stream * __restrict ms, argument
74 _citrus_memory_stream_bind(ms, &r);
78 _citrus_memory_stream_rewind(struct _citrus_memory_stream *ms) argument
81 ms
85 _citrus_memory_stream_tell(struct _citrus_memory_stream *ms) argument
92 _citrus_memory_stream_remainder(struct _citrus_memory_stream *ms) argument
103 _citrus_memory_stream_seek(struct _citrus_memory_stream *ms, size_t pos, int w) argument
131 _citrus_memory_stream_getc(struct _citrus_memory_stream *ms) argument
140 _citrus_memory_stream_ungetc(struct _citrus_memory_stream *ms, int ch) argument
148 _citrus_memory_stream_peek(struct _citrus_memory_stream *ms) argument
157 _citrus_memory_stream_getregion(struct _citrus_memory_stream *ms, struct _citrus_region *r, size_t sz) argument
174 _citrus_memory_stream_get8(struct _citrus_memory_stream *ms, uint8_t *rval) argument
187 _citrus_memory_stream_get16(struct _citrus_memory_stream *ms, uint16_t *rval) argument
200 _citrus_memory_stream_get32(struct _citrus_memory_stream *ms, uint32_t *rval) argument
213 _citrus_memory_stream_getln_region(struct _citrus_memory_stream *ms, struct _citrus_region *r) argument
[all...]
H A Dcitrus_prop.c79 _citrus_prop_read_##_func_##_common(struct _memstream * __restrict ms, \
90 ch = _memstream_getc(ms); \
99 _memstream_ungetc(ms, ch); \
109 _citrus_prop_read_##_func_(struct _memstream * __restrict ms, \
114 _memstream_skip_ws(ms); \
115 ch = _memstream_getc(ms); \
121 ch = _memstream_getc(ms); \
126 ch = _memstream_getc(ms); \
128 ch = _memstream_getc(ms); \
130 _memstream_ungetc(ms, c
147 _citrus_prop_read_character_common(struct _memstream * __restrict ms, int * __restrict result) argument
197 _citrus_prop_read_character(struct _memstream * __restrict ms, _citrus_prop_object_t * __restrict obj) argument
219 _citrus_prop_read_bool(struct _memstream * __restrict ms, _citrus_prop_object_t * __restrict obj) argument
246 _citrus_prop_read_str(struct _memstream * __restrict ms, _citrus_prop_object_t * __restrict obj) argument
319 _citrus_prop_read_symbol(struct _memstream * __restrict ms, char * __restrict s, size_t n) argument
343 _citrus_prop_parse_element(struct _memstream * __restrict ms, const _citrus_prop_hint_t * __restrict hints, void * __restrict context) argument
430 struct _memstream ms; local
[all...]
H A Dcitrus_memstream.c43 _citrus_memory_stream_getln(struct _citrus_memory_stream * __restrict ms, argument
49 if (ms->ms_pos>=_region_size(&ms->ms_region))
52 h = p = (uint8_t *)_region_offset(&ms->ms_region, ms->ms_pos);
54 for (i = _region_size(&ms->ms_region) - ms->ms_pos; i > 0; i--) {
61 ms->ms_pos += ret;
69 _citrus_memory_stream_matchline(struct _citrus_memory_stream * __restrict ms, argument
77 p = _citrus_memory_stream_getln(ms,
113 _citrus_memory_stream_chr(struct _citrus_memory_stream *ms, struct _citrus_region *r, char ch) argument
138 _citrus_memory_stream_skip_ws(struct _citrus_memory_stream *ms) argument
[all...]
H A Dcitrus_db.c62 struct _memstream ms; local
64 _memstream_bind(&ms, r);
67 dhx = _memstream_getregion(&ms, NULL, sizeof(*dhx));
72 if (_memstream_seek(&ms, be32toh(dhx->dhx_entry_offset), SEEK_SET))
76 _memstream_remainder(&ms))
104 struct _memstream ms; local
108 _memstream_bind(&ms, &db->db_region);
110 dhx = _memstream_getregion(&ms, NULL, sizeof(*dhx));
129 if (_citrus_memory_stream_seek(&ms, offset, SEEK_SET))
132 dex = _memstream_getregion(&ms, NUL
284 struct _memstream ms; local
298 struct _memstream ms; local
[all...]
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dopen_memstream.c55 memstream_grow(struct memstream *ms, fpos_t newoff) argument
64 if (newsize > ms->len) {
65 buf = realloc(*ms->bufp, newsize + 1);
69 ms, ms->len, newsize);
71 memset(buf + ms->len + 1, 0, newsize - ms->len);
72 *ms->bufp = buf;
73 ms->len = newsize;
82 memstream_update(struct memstream *ms) argument
92 struct memstream *ms; local
113 struct memstream *ms; local
176 struct memstream *ms; local
[all...]
H A Dopen_wmemstream.c56 wmemstream_grow(struct wmemstream *ms, fpos_t newoff) argument
65 if (newsize > ms->len) {
66 buf = realloc(*ms->bufp, (newsize + 1) * sizeof(wchar_t));
70 ms, ms->len, newsize);
72 wmemset(buf + ms->len + 1, 0, newsize - ms->len);
73 *ms->bufp = buf;
74 ms->len = newsize;
83 wmemstream_update(struct wmemstream *ms) argument
122 struct wmemstream *ms; local
175 struct wmemstream *ms; local
237 struct wmemstream *ms; local
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dsys.c88 * Sleep for some ms. Timeouts are NOT processed while sleeping.
90 * @param ms number of milliseconds to sleep
93 sys_msleep(u32_t ms) argument
95 if (ms > 0) {
99 sys_arch_sem_wait(&delaysem, ms);
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Ddelay.h36 linux_msleep(int ms) argument
38 pause("lnxsleep", msecs_to_jiffies(ms));
/barrelfish-2018-10-04/usr/bench/net_latency/
H A Dsleep.h15 void milli_sleep(uint64_t ms);
H A Dsleep.c59 void milli_sleep(uint64_t ms) argument
62 uint64_t cycles = ms * tscperms;
/barrelfish-2018-10-04/kernel/include/arch/x86/
H A Dtiming.h19 void timing_apic_timer_set_ms(unsigned int ms);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/util/
H A Ddo_ms.sh8 # perl util/mk1mf.pl no-sock VC-MSDOS >ms/msdos.mak
9 # perl util/mk1mf.pl VC-W31-32 >ms/w31.mak
10 perl util/mk1mf.pl dll VC-WIN16 >ms/w31dll.mak
11 # perl util/mk1mf.pl VC-WIN32 >ms/nt.mak
12 perl util/mk1mf.pl dll VC-WIN32 >ms/ntdll.mak
13 perl util/mk1mf.pl Mingw32 >ms/mingw32.mak
14 perl util/mk1mf.pl Mingw32-files >ms/mingw32f.mak
16 perl util/mkdef.pl 16 libeay > ms/libeay16.def
17 perl util/mkdef.pl 32 libeay > ms/libeay32.def
18 perl util/mkdef.pl 16 ssleay > ms/ssleay1
[all...]
/barrelfish-2018-10-04/usr/drivers/e10k/
H A Dsleep.h19 void milli_sleep(uint64_t ms);
H A Dsleep.c58 void milli_sleep(uint64_t ms) argument
61 uint64_t cycles = ms * tscperms;
/barrelfish-2018-10-04/usr/drivers/xeon_phi/
H A Dsleep.h19 void milli_sleep(uint64_t ms);
H A Dsleep.c57 void milli_sleep(uint64_t ms) argument
64 uint64_t cycles = ms * tscperms;
/barrelfish-2018-10-04/lib/devif/backends/net/e10k/
H A Dsleep.h19 void milli_sleep(uint64_t ms);
H A Dsleep.c58 void milli_sleep(uint64_t ms) argument
61 uint64_t cycles = ms * tscperms;
/barrelfish-2018-10-04/usr/mem_serv_dist/
H A Dsleep.h19 void milli_sleep(uint64_t ms);
H A Dsleep.c58 void milli_sleep(uint64_t ms) argument
61 uint64_t cycles = ms * tscperms;
/barrelfish-2018-10-04/usr/tests/bulk_transfer/
H A Dsleep.h19 void milli_sleep(uint64_t ms);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ms/
H A Ddo_ms.bat3 perl util\mk1mf.pl no-asm VC-WIN32 >ms\nt.mak
4 perl util\mk1mf.pl dll no-asm VC-WIN32 >ms\ntdll.mak
6 perl util\mk1mf.pl no-asm VC-CE >ms\ce.mak
7 perl util\mk1mf.pl dll no-asm VC-CE >ms\cedll.mak
10 perl util\mkdef.pl 32 libeay > ms\libeay32.def
11 perl util\mkdef.pl 32 ssleay > ms\ssleay32.def
H A Dmw.bat6 perl util\mk1mf.pl Mingw32 >ms\mingw32.mak
8 perl util\mkdef.pl 32 libeay >ms\libeay32.def
10 perl util\mkdef.pl 32 ssleay >ms\ssleay32.def
14 make -f ms/mingw32.mak
18 dllwrap --dllname libeay32.dll --output-lib out/libeay32.a --def ms/libeay32.def out/libcrypto.a -lws2_32 -lgdi32
20 dllwrap --dllname libssl32.dll --output-lib out/libssl32.a --def ms/ssleay32.def out/libssl.a out/libeay32.a
/barrelfish-2018-10-04/lib/lua/src/
H A Dlstrlib.c213 static const char *match (MatchState *ms, const char *s, const char *p);
226 static int check_capture (MatchState *ms, int l) { argument
228 if (l < 0 || l >= ms->level || ms->capture[l].len == CAP_UNFINISHED)
229 return luaL_error(ms->L, "invalid capture index %%%d", l + 1);
234 static int capture_to_close (MatchState *ms) { argument
235 int level = ms->level;
237 if (ms->capture[level].len == CAP_UNFINISHED) return level;
238 return luaL_error(ms->L, "invalid pattern capture");
242 static const char *classend (MatchState *ms, cons argument
309 singlematch(MatchState *ms, const char *s, const char *p, const char *ep) argument
325 matchbalance(MatchState *ms, const char *s, const char *p) argument
346 max_expand(MatchState *ms, const char *s, const char *p, const char *ep) argument
361 min_expand(MatchState *ms, const char *s, const char *p, const char *ep) argument
374 start_capture(MatchState *ms, const char *s, const char *p, int what) argument
388 end_capture(MatchState *ms, const char *s, const char *p) argument
399 match_capture(MatchState *ms, const char *s, int l) argument
410 match(MatchState *ms, const char *s, const char *p) argument
536 push_onecapture(MatchState *ms, int i, const char *s, const char *e) argument
555 push_captures(MatchState *ms, const char *s, const char *e) argument
598 MatchState ms; local
640 MatchState ms; local
678 add_s(MatchState *ms, luaL_Buffer *b, const char *s, const char *e) argument
704 add_value(MatchState *ms, luaL_Buffer *b, const char *s, const char *e, int tr) argument
743 MatchState ms; local
[all...]
/barrelfish-2018-10-04/usr/monitor/
H A Dqueue.c21 * \param ms Pointer to element to enqueue
45 * \param ms Pointer to element to enqueue
99 struct waitset *ws, struct msg_queue_elem *ms)
101 ms->next = NULL;
104 if(enqueue_send(q, ms)) {
112 struct waitset *ws, struct msg_queue_elem *ms)
114 ms->next = NULL;
117 if(enqueue_send_at_front(q, ms)) {
146 struct waitset *ws, struct msg_queue_elem *ms)
148 ms
98 intermon_enqueue_send(struct intermon_binding *b, struct msg_queue *q, struct waitset *ws, struct msg_queue_elem *ms) argument
111 intermon_enqueue_send_at_front(struct intermon_binding *b, struct msg_queue *q, struct waitset *ws, struct msg_queue_elem *ms) argument
145 monitor_enqueue_send(struct monitor_binding *b, struct msg_queue *q, struct waitset *ws, struct msg_queue_elem *ms) argument
158 monitor_enqueue_send_at_front(struct monitor_binding *b, struct msg_queue *q, struct waitset *ws, struct msg_queue_elem *ms) argument
[all...]

Completed in 121 milliseconds

123