Searched refs:ms (Results 251 - 275 of 425) sorted by relevance

<<11121314151617

/freebsd-13-stable/sys/contrib/zstd/lib/compress/
H A Dzstd_double_fast.c15 void ZSTD_fillDoubleHashTable(ZSTD_matchState_t* ms, argument
18 const ZSTD_compressionParameters* const cParams = &ms->cParams;
19 U32* const hashLarge = ms->hashTable;
22 U32* const hashSmall = ms->chainTable;
24 const BYTE* const base = ms->window.base;
25 const BYTE* ip = base + ms->nextToUpdate;
52 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
56 ZSTD_compressionParameters const* cParams = &ms->cParams;
57 U32* const hashLong = ms->hashTable;
59 U32* const hashSmall = ms
51 ZSTD_compressBlock_doubleFast_generic( ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], void const* src, size_t srcSize, U32 const mls , ZSTD_dictMode_e const dictMode) argument
319 ZSTD_compressBlock_doubleFast( ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], void const* src, size_t srcSize) argument
339 ZSTD_compressBlock_doubleFast_dictMatchState( ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], void const* src, size_t srcSize) argument
359 ZSTD_compressBlock_doubleFast_extDict_generic( ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], void const* src, size_t srcSize, U32 const mls ) argument
504 ZSTD_compressBlock_doubleFast_extDict( ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], void const* src, size_t srcSize) argument
[all...]
H A Dzstd_ldm.c185 static size_t ZSTD_ldm_fillFastTables(ZSTD_matchState_t* ms, argument
190 switch(ms->cParams.strategy)
193 ZSTD_fillHashTable(ms, iend, ZSTD_dtlm_fast);
197 ZSTD_fillDoubleHashTable(ms, iend, ZSTD_dtlm_fast);
261 static void ZSTD_ldm_limitTableUpdate(ZSTD_matchState_t* ms, const BYTE* anchor) argument
263 U32 const curr = (U32)(anchor - ms->window.base);
264 if (curr > ms->nextToUpdate + 1024) {
265 ms->nextToUpdate =
266 curr - MIN(512, curr - ms->nextToUpdate - 1024);
598 ZSTD_matchState_t* ms, seqStore_
597 ZSTD_ldm_blockCompress(rawSeqStore_t* rawSeqStore, ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], void const* src, size_t srcSize) argument
[all...]
/freebsd-13-stable/lib/libc/string/
H A Dmemmem.c82 size_t i, ip, jp, k, p, ms, p0, mem, mem0; local
110 ms = ip;
133 if (ip + 1 > ms + 1)
134 ms = ip;
139 if (memcmp(n, n + p, ms + 1)) {
141 p = MAX(ms, l - ms - 1) + 1;
169 for (k = MAX(ms + 1, mem); k < l && n[k] == h[k]; k++)
172 h += k - ms;
177 for (k = ms
[all...]
H A Dstrstr.c79 size_t l, ip, jp, k, p, ms, p0, mem, mem0; local
109 ms = ip;
132 if (ip + 1 > ms + 1)
133 ms = ip;
138 if (memcmp(n, n + p, ms + 1)) {
140 p = MAX(ms, l - ms - 1) + 1;
180 for (k = MAX(ms + 1, mem); n[k] && n[k] == h[k]; k++)
183 h += k - ms;
188 for (k = ms
[all...]
/freebsd-13-stable/contrib/netbsd-tests/modules/
H A Dt_builtin.c142 struct modstat ms[128]; local
152 iov.iov_base = ms;
153 iov.iov_len = sizeof(ms);
156 for (i = 0; i < __arraycount(ms); i++) {
157 if (strcmp(ms[i].ms_name, kernfs) == 0) {
158 ATF_REQUIRE_EQ(ms[i].ms_refcnt, (u_int)-1);
H A Dt_modctl.c88 modstat_t *ms; local
111 for (ms = (modstat_t *)iov.iov_base; len != 0 && !found;
112 ms++, len--) {
113 if (strcmp(ms->ms_name, name) == 0) {
115 *msdest = *ms;
438 modstat_t ms; local
439 ATF_CHECK(get_modstat_info("k_helper", &ms));
441 ATF_CHECK(ms.ms_class == MODULE_CLASS_MISC);
442 ATF_CHECK(ms.ms_source == MODULE_SOURCE_FILESYS);
443 ATF_CHECK(ms
[all...]
/freebsd-13-stable/share/doc/psd/15.yacc/
H A DMakefile8 MACROS= -ms
/freebsd-13-stable/usr.sbin/fifolog/lib/
H A Dfifolog_create.c51 off_t ms; local
91 i = ioctl(fd, DIOCGMEDIASIZE, &ms);
92 if (i == 0 && (size == 0 || size > ms))
93 size = ms;
/freebsd-13-stable/contrib/libevent/
H A Devent_iocp.c67 long ms = port->ms; local
70 if (ms <= 0)
71 ms = INFINITE;
78 &overlapped, ms);
196 port->ms = -1;
252 DWORD ms = INFINITE; local
261 ms = waitMsec;
263 WaitForSingleObject(port->shutdownSemaphore, ms);
H A Devthread_win32.c161 DWORD ms, err; local
165 ms = evutil_tv_to_msec_(tv);
167 ms = INFINITE;
168 result = SleepConditionVariableCS_fn(cond, lock, ms);
240 DWORD ms = INFINITE, ms_orig = INFINITE, startTime, endTime; local
242 ms_orig = ms = evutil_tv_to_msec_(tv);
254 res = WaitForSingleObject(cond->event, ms);
268 } else if (ms != INFINITE) {
276 ms = startTime + ms_orig - endTime;
/freebsd-13-stable/contrib/ntp/sntp/libevent/
H A Devent_iocp.c67 long ms = port->ms; local
70 if (ms <= 0)
71 ms = INFINITE;
78 &overlapped, ms);
196 port->ms = -1;
252 DWORD ms = INFINITE; local
261 ms = waitMsec;
263 WaitForSingleObject(port->shutdownSemaphore, ms);
H A Devthread_win32.c161 DWORD ms, err; local
165 ms = evutil_tv_to_msec_(tv);
167 ms = INFINITE;
168 result = SleepConditionVariableCS_fn(cond, lock, ms);
240 DWORD ms = INFINITE, ms_orig = INFINITE, startTime, endTime; local
242 ms_orig = ms = evutil_tv_to_msec_(tv);
254 res = WaitForSingleObject(cond->event, ms);
268 } else if (ms != INFINITE) {
276 ms = startTime + ms_orig - endTime;
/freebsd-13-stable/contrib/wpa/src/eap_server/
H A Deap_server_mschapv2.c101 struct eap_mschapv2_hdr *ms; local
112 ms_len = sizeof(*ms) + 1 + CHALLENGE_LEN + sm->server_id_len;
122 ms = wpabuf_put(req, sizeof(*ms));
123 ms->op_code = MSCHAPV2_OP_CHALLENGE;
124 ms->mschapv2_id = id;
125 WPA_PUT_BE16(ms->ms_length, ms_len);
144 struct eap_mschapv2_hdr *ms; local
149 ms_len = sizeof(*ms) + 2 + 2 * sizeof(data->auth_response) + 1 + 2 +
160 ms
188 struct eap_mschapv2_hdr *ms; local
[all...]
/freebsd-13-stable/lib/libifconfig/
H A Dlibifconfig_media.c444 struct _ifconfig_media_status *ms, *ms2; local
448 ms = calloc(1, sizeof(*ms));
449 if (ms == NULL) {
454 (void)strlcpy(ms->ifmr.ifm_name, name, sizeof(ms->ifmr.ifm_name));
459 if (ifconfig_ioctlwrap(h, AF_LOCAL, cmd, &ms->ifmr) < 0) {
461 if (ifconfig_ioctlwrap(h, AF_LOCAL, cmd, &ms->ifmr) < 0) {
464 free(ms);
468 if (ms
[all...]
/freebsd-13-stable/contrib/unbound/util/
H A Drtt.c89 rtt_update(struct rtt_info* rtt, int ms) argument
91 int delta = ms - rtt->srtt;
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.freopen.ksh36 tick-10ms
42 tick-10ms
H A Dtst.basename.d70 tick-1ms
88 tick-1ms
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.hton.d31 #pragma D option statusrate=10ms
H A Dtst.index.d31 #pragma D option statusrate=10ms
H A Dtst.rw.d31 #pragma D option statusrate=10ms
H A Dtst.strchr.d31 #pragma D option statusrate=10ms
/freebsd-13-stable/contrib/less/
H A Dos.c414 sleep_ms(ms)
415 int ms;
418 Sleep(ms);
421 int sec = ms / 1000;
422 struct timespec t = { sec, (ms - sec*1000) * 1000000 };
426 usleep(ms);
428 sleep((ms+999) / 1000);
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A Dm_md5_sha1.c50 static int ctrl(EVP_MD_CTX *ctx, int cmd, int mslen, void *ms) argument
73 if (update(ctx, ms, mslen) <= 0)
96 if (update(ctx, ms, mslen) <= 0)
/freebsd-13-stable/contrib/file/src/
H A Dcompress.c229 format_decompression_error(struct magic_set *ms, size_t i, unsigned char *buf) argument
232 int mime = ms->flags & MAGIC_MIME;
235 return file_printf(ms, "ERROR:[%s: %s]", methodname(i), buf);
241 return file_printf(ms, "application/x-decompression-error-%s-%s",
246 file_zmagic(struct magic_set *ms, const struct buffer *b, const char *name) argument
253 int mime = ms->flags & MAGIC_MIME;
260 if ((ms->flags & MAGIC_COMPRESS) == 0)
287 urv = uncompressbuf(fd, ms->bytes_max, i, buf, &newbuf, &nsz);
293 ms->flags &= ~MAGIC_COMPRESS;
295 prv = format_decompression_error(ms,
445 file_pipe2file(struct magic_set *ms, int fd, const void *startbuf, size_t nbytes) argument
[all...]
/freebsd-13-stable/contrib/apr-util/include/
H A Dapr_memcache.h190 * @param ms Server to Activate
193 apr_memcache_server_t *ms);
199 * @param ms Server to Disable
202 apr_memcache_server_t *ms);
369 * @param ms server to query
374 APU_DECLARE(apr_status_t) apr_memcache_version(apr_memcache_server_t *ms,
429 * @param ms server to query
433 APU_DECLARE(apr_status_t) apr_memcache_stats(apr_memcache_server_t *ms,

Completed in 130 milliseconds

<<11121314151617