Searched refs:rem (Results 126 - 150 of 171) sorted by relevance

1234567

/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dtcache.h138 szind_t binind, unsigned rem);
140 unsigned rem, tcache_t *tcache);
/freebsd-11-stable/contrib/libucl/
H A DMakefile.w3221 LN ?= rem ln
/freebsd-11-stable/stand/ficl/
H A Dvm.c699 *cp++ = digits[result.rem];
739 *cp++ = digits[result.rem];
H A Dwords.c361 PUSHINT(qr.rem);
448 PUSHINT(qr.rem);
2940 UNS16 rem; local
2947 rem = m64UMod(&u, (UNS16)(pVM->base));
2948 sp->text[sp->count++] = digit_to_char(rem);
2986 UNS16 rem; local
2996 rem = m64UMod(&u, (UNS16)(pVM->base));
2997 sp->text[sp->count++] = digit_to_char(rem);
3729 PUSHINT(qr.rem);
3737 ** s-m-slash-rem COR
[all...]
/freebsd-11-stable/lib/libedit/
H A Dmap.c1254 int ntype, rem; local
1269 key = rem = 0;
1290 rem = 1;
1328 if (rem) {
H A Drefresh.c245 size_t rem = (el->el_line.lastchar-el->el_line.buffer)%termsz; local
247 st = el->el_line.lastchar - rem
248 - (termsz - (((rem / el->el_terminal.t_size.v) - 1)
/freebsd-11-stable/sys/dev/usb/net/
H A Dif_cdce.c1218 uint32_t rem; local
1251 rem = sc->sc_ncm.tx_max - offset;
1261 if (m->m_pkthdr.len > (int)rem) {
1310 rem = (sizeof(sc->sc_ncm.dpt) + (4 * n) + 4);
1312 USETW(sc->sc_ncm.dpt.wLength, rem);
/freebsd-11-stable/contrib/bzip2/
H A Dbzip2.c279 UInt32 rem, tmp; local
281 rem = 0;
283 tmp = rem * 256 + n->b[i];
285 rem = tmp % 10;
287 return rem;
/freebsd-11-stable/contrib/wpa/src/drivers/
H A Ddriver_macsec_linux.c536 int rem; local
538 nla_for_each_nested(nla, tb_msg[MACSEC_ATTR_TXSA_LIST], rem) {
563 int rem; local
565 nla_for_each_nested(nla, tb_msg[MACSEC_ATTR_RXSC_LIST], rem) {
580 rem) {
H A Ddriver_nl80211_event.c1137 int rem; local
1158 nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_SSIDS], rem) {
1178 nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_FREQUENCIES], rem)
1956 int rem; local
1968 tb[QCA_WLAN_VENDOR_ATTR_SCAN_SSIDS], rem) {
1992 rem) {
H A Ddriver_nl80211_capa.c559 int rem = 0, i; local
565 nla_for_each_nested(attr, tb, rem) {
738 int rem; local
740 nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_DATA], rem) {
801 int rem; local
803 nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_EVENTS], rem) {
/freebsd-11-stable/contrib/gdb/gdb/
H A Dada-lex.l42 OPER ([-+*/=<>&]|"<="|">="|"**"|"/="|"and"|"or"|"xor"|"not"|"mod"|"rem"|"abs")
209 rem { return REM; }
H A Dwince.c1547 long rem; local
1550 rem = x % ((long long) NSPERSEC);
1551 rem += (NSPERSEC / 2);
1553 x += (long long) (rem / NSPERSEC);
/freebsd-11-stable/contrib/sendmail/src/
H A Dusersmtp.c1496 ** REMOVEMECH -- remove item [rem] from list [list]
1499 ** rem -- item to remove
1508 removemech(rem, list, rpool)
1509 char *rem;
1519 if (rem == NULL || *rem == '\0')
1526 if ((needle = iteminlist(rem, list, " ")) == NULL)
1532 /* length of string without rem */
1533 len = strlen(list) - strlen(rem);
1547 len = strlen(needle) - strlen(rem)
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-mudflap.c862 tree ofs, rem, bpu; local
871 rem = size_binop (TRUNC_MOD_EXPR, ofs, bpu);
875 size = size_binop (PLUS_EXPR, size, rem);
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_ringbuffer.c1373 int rem = ring->size - ring->tail; local
1375 if (ring->space < rem) {
1376 int ret = ring_wait_for_space(ring, rem);
1382 rem /= 4;
1383 while (rem--)
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_runtime.cpp4576 int S, rem, gap, s_count;
4579 rem = n_th - (S * n_places);
4580 gap = rem > 0 ? n_places / rem : n_places;
4596 if ((s_count == S) && rem && (gap_ct == gap)) {
4598 } else if ((s_count == S + 1) && rem && (gap_ct == gap)) {
4609 rem--;
4647 int s_count, rem, gap, gap_ct;
4650 rem = n_places - n_th * S;
4651 gap = rem
[all...]
H A Dkmp_dispatch.cpp1625 UT rem = span % chunk; local
1626 if (rem) // adjust so that span%chunk == 0
1627 span += chunk - rem;
/freebsd-11-stable/contrib/gcc/config/sparc/
H A Dlb1spc.asm93 * div div=div => %o0 / %o1; div=rem => %o0 % %o1
476 .global .rem
478 .rem:
/freebsd-11-stable/usr.bin/dc/
H A Dbcode.c383 u_long rem; local
390 rem = BN_div_word(i, factors[n->scale]);
392 bn_check(BN_set_word(f, rem));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_custom.cpp814 struct timespec *rem,
818 int ret = nanosleep(req, rem);
821 // Interrupted by a signal, rem is filled with the remaining time.
822 dfsan_set_label(0, rem, sizeof(struct timespec));
813 __dfsw_nanosleep(const struct timespec *req, struct timespec *rem, dfsan_label req_label, dfsan_label rem_label, dfsan_label *ret_label) argument
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Dnode.cpp4602 hunits rem = x - w*i; local
4603 if (rem > H0) {
4607 out->right(rem - w);
4609 out->right(rem);
4629 vunits rem = y - i*h; local
4632 out->down(-rem);
4641 out->down(-rem);
4649 out->down(-h - rem);
4655 vunits rem = y - i*h; local
4657 out->down(rem);
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c1726 unsigned rmode, flags, rem, j, count; local
1760 rem = 0;
1766 rem = (((unsigned)(unsigned char)*p) << 16) | (rem >> 8);
1781 nsec = tm->tm_sec + rem / NS_UNIT;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h693 SchedRemainder *rem);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_parse.c2484 size_t rem = len - (pos - buffer); local
2486 if (rem == 0)
2490 l = vsnprintf(pos, rem, fmt, va);
2494 rem--;
2495 if (rem >= (size_t)l)
2498 pos += rem;

Completed in 210 milliseconds

1234567