Searched refs:rem (Results 1 - 25 of 487) sorted by last modified time

1234567891011>>

/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dd_c99_init.c373 int quot, rem; member in struct:__anon30
374 } c99_6_7_8_p34_example10 = { .quot = 2, .rem = -1 };
/netbsd-current/lib/libc/time/
H A Dlocaltime.c1840 int_fast32_t idays, rem, dayoff, dayrem; local
1863 rem = (int)(*timep % SECSPERDAY);
1864 rem += offset % SECSPERDAY - corr % SECSPERDAY + 3 * SECSPERDAY;
1865 dayoff = offset / SECSPERDAY - corr / SECSPERDAY + rem / SECSPERDAY - 3;
1866 rem %= SECSPERDAY;
1926 tmp->tm_hour = (int) (rem / SECSPERHOUR);
1927 rem %= SECSPERHOUR;
1928 tmp->tm_min = (int)(rem / SECSPERMIN);
1929 tmp->tm_sec = (int)(rem % SECSPERMIN);
/netbsd-current/lib/libc/softfloat/bits64/
H A Dsoftfloat.c2133 bits64 rem, term; local
2163 rem = ( ( (bits64) aSig )<<32 ) - term;
2164 while ( (sbits64) rem < 0 ) {
2166 rem += ( ( (bits64) zSig )<<1 ) | 1;
2168 zSig |= ( rem != 0 );
/netbsd-current/external/bsd/unbound/dist/services/
H A Doutside_network.c1024 rbnode_type* rem; local
1028 rem =
1033 log_assert(rem); /* should have been there */
2974 rbnode_type* rem = local
2982 log_assert(rem); /* should have been present */
/netbsd-current/sys/dev/wscons/
H A Dwsdisplay_vcons.c1401 int rem; local
1402 rem = wsc->col % ri->ri_cols;
1404 DPRINTF("off %d -> %d, %d\n", wsc->col, rem, wsc->row);
1405 wsc->col = rem;
1441 int rem; local
1442 rem = wsc->col % ri->ri_cols;
1444 DPRINTF("off %d -> %d, %d\n", wsc->col, rem, wsc->row);
1445 wsc->col = rem;
/netbsd-current/sys/arch/sparc/sparc/
H A Dlocore.s4510 OVERWRITE(.rem, v8_srem, .Lv8_srem_len)
/netbsd-current/sys/fs/nfs/common/
H A Dnfs_commonsubs.c207 long uiosiz, rem; local
213 rem = NFSM_RNDUP(siz) - siz;
267 if (rem > 0) {
268 if (len < rem)
269 error = nfsm_advance(nd, rem, len);
271 nd->nd_dpos += rem;
402 int rem, bytesize; local
408 rem = NFSM_RNDUP(siz) - siz;
409 bytesize = NFSX_UNSIGNED + siz + rem;
438 if (siz == 0 && rem) {
488 int fullsiz, rem, bytesize = 0; local
1996 int rem, error = 0; local
[all...]
/netbsd-current/external/mit/isl/dist/imath/
H A Dimath.c1328 mp_small rem = 0; local
1330 if (mp_int_div_value(a, v, NULL, &rem) != MP_OK) {
1333 return rem == 0;
2507 mp_digit d, rem; local
2509 rem = s_ddiv(u, d);
2510 mp_int_set_value(v, rem);
/netbsd-current/external/mit/isl/dist/
H A Disl_int_sioimath.h1119 mpz_t rem; local
1133 mp_int_init(&rem);
1135 isl_sioimath_bigarg_src(rhs, &rhsscratch), NULL, &rem); local
1136 cmp = mp_int_compare_zero(&rem);
1137 mp_int_clear(&rem);
H A Disl_map.c2317 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem) argument
2319 isl_seq_cpy(c, c + n, rem);
2320 isl_seq_clr(c + rem, n);
H A Disl_map_simplify.c2707 isl_int rem; local
2726 isl_int_init(rem);
2735 isl_int_fdiv_r(rem, ineq->row[i][0], ctx->normalize_gcd);
2738 if (isl_int_is_zero(rem))
2743 isl_int_sub(bset->ineq[i][0], bset->ineq[i][0], rem);
2745 isl_int_clear(rem);
/netbsd-current/crypto/external/bsd/openssl/dist/test/helpers/
H A Dssltestlib.c120 int rem, i, content, reclen, msglen, fragoff, fraglen, epoch; local
125 rem = len;
128 while (rem > 0) {
129 if (rem != len)
132 if (rem < DTLS1_RT_HEADER_LENGTH) {
150 rem -= DTLS1_RT_HEADER_LENGTH;
155 } else if (rem < DTLS1_HM_HEADER_LENGTH
181 if (rem < reclen) {
183 rem = 0;
186 rem
350 int rem; local
422 int rem, len, prevlen = 0, pktnum; local
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_recp.c84 int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, argument
92 r = (rem != NULL) ? rem : BN_CTX_get(ctx);
164 bn_check_top(rem);
/netbsd-current/crypto/external/bsd/openssl/dist/apps/
H A Ds_client.c74 static int ldap_ExtendedResponse_parse(const char *buf, long rem);
3390 static int ldap_ExtendedResponse_parse(const char *buf, long rem) argument
3397 end = cur + rem;
3427 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3429 (rem = end - cur, len > rem)) {
3434 rem = len; /* ensure that we don't overstep the SEQUENCE */
3437 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3439 (rem = end - cur, len > rem)) {
[all...]
/netbsd-current/sys/kern/
H A Dkern_proc.c2530 size_t rem = entry_len * argvlen; local
2531 loaded = MIN(rem, PAGE_SIZE);
/netbsd-current/external/bsd/less/dist/
H A Dos.c411 uintmax rem = rnum % den; local
412 return quot + (den / 2 < rem + (quot & ~den & 1));
/netbsd-current/lib/libarch/sparc/v8/
H A Dsparc_v8.S2 * GCC generated output for sparc v8 mul/div/rem operations.
90 /*--- .rem ---*/
92 .global .rem
93 .type .rem,@function
94 .rem:
103 .size .rem,.LLfe6-.rem
/netbsd-current/usr.bin/mail/
H A Dsupport.c205 gethfield(FILE *f, char linebuf[], int rem, char **colon) argument
212 if (--rem < 0)
232 if (rem <= 0)
239 rem--;
249 return rem;
/netbsd-current/lib/libc/arch/sparc/
H A DMakefile.inc10 SRCS+= rem.S sdiv.S udiv.S urem.S
11 CLEANFILES+=rem.S sdiv.S udiv.S urem.S
27 rem.S: ${LIBCDIR}/arch/sparc/gen/divrem.m4
30 @(echo "define(NAME,\`.rem')define(OP,\`rem')define(S,\`true')"; \
37 @(echo "define(NAME,\`.urem')define(OP,\`rem')define(S,\`false')"; \
/netbsd-current/external/gpl3/gdb/lib/libgnulib/arch/m68000/gnulib/import/
H A Dinttypes.h1431 typedef struct { intmax_t quot; intmax_t rem; } imaxdiv_t;
/netbsd-current/sys/fs/msdosfs/
H A Dmsdosfs_vnops.c556 size_t rem; local
626 rem = round_page(dep->de_FileSize) - dep->de_FileSize;
627 if (rem > 0)
629 rem, UBC_VNODE_FLAGS(vp));
/netbsd-current/external/gpl3/gdb/lib/libgnulib/arch/vax/gnulib/import/
H A Dinttypes.h1431 typedef struct { intmax_t quot; intmax_t rem; } imaxdiv_t;
/netbsd-current/external/gpl3/gdb/lib/libgnulib/arch/sparc64/gnulib/import/
H A Dinttypes.h1431 typedef struct { intmax_t quot; intmax_t rem; } imaxdiv_t;
/netbsd-current/external/gpl3/gdb/lib/libgnulib/arch/sparc/gnulib/import/
H A Dinttypes.h1431 typedef struct { intmax_t quot; intmax_t rem; } imaxdiv_t;
/netbsd-current/external/gpl3/gdb/lib/libgnulib/arch/sh3eb/gnulib/import/
H A Dinttypes.h1431 typedef struct { intmax_t quot; intmax_t rem; } imaxdiv_t;

Completed in 576 milliseconds

1234567891011>>