Searched refs:rem (Results 51 - 75 of 241) sorted by relevance

12345678910

/macosx-10.10/ntp-92/util/
H A Dtimetrim.c49 char *rem; local
90 value = strtod(argv[0], &rem);
91 if (*rem != '\0') {
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/base32/
H A Dbase32_tcl.tcl28 set rem [expr {$len % 5}]
29 if {$rem} {append bits =/$rem}
H A Dbase32hex_tcl.tcl28 set rem [expr {$len % 5}]
29 if {$rem} {append bits =/$rem}
/macosx-10.10/OpenSSL098-52/src/crypto/des/
H A Ddes.c370 int num=0,j,k,l,rem,ll,len,last,ex=0; local
467 rem=0;
473 num=l=fread(&(buf[rem]),1,BUFSIZE,DES_IN);
474 l+=rem;
475 num+=rem;
483 rem=l%8;
484 len=l-rem;
487 for (i=7-rem; i>0; i--)
489 buf[l++]=rem;
491 len+=rem;
687 int i,j,left,rem,ret=num; local
[all...]
H A Dcfb_enc.c77 register int num=numbits/8,n=(numbits+7)/8,i,rem=numbits%8; local
127 if (rem==0)
131 ovec[i]=ovec[i+num]<<rem |
132 ovec[i+num+1]>>(8-rem);
170 if (rem==0)
174 ovec[i]=ovec[i+num]<<rem |
175 ovec[i+num+1]>>(8-rem);
/macosx-10.10/OpenSSL098-52/src/crypto/aes/
H A Daes_cfb.c165 int n,rem,num; local
182 rem = nbits%8;
184 if(rem==0)
188 ivec[n] = ovec[n+num]<<rem | ovec[n+num+1]>>(8-rem);
/macosx-10.10/OpenSSL098-52/src/crypto/camellia/
H A Dcmll_cfb.c175 int n,rem,num; local
192 rem = nbits%8;
194 if(rem==0)
198 ivec[n] = ovec[n+num]<<rem | ovec[n+num+1]>>(8-rem);
/macosx-10.10/remote_cmds-47/rlogin.tproj/
H A Drlogin.c113 int eight, rem; variable
364 rem = KSUCCESS;
371 rem = krcmd_mutual(&host, sp->s_port, user, term, 0,
375 rem = krcmd(&host, sp->s_port, user, term, 0,
377 if (rem < 0) {
393 rem = rcmd(&host, sp->s_port, pw->pw_name, user, term, 0);
396 rem = rcmd_af(&host, sp->s_port, localname, user, term, 0, family);
397 // rem = rcmd(&host, sp->s_port, pw->pw_name, user, term, 0);
400 if (rem < 0)
404 setsockopt(rem, SOL_SOCKE
[all...]
/macosx-10.10/remote_cmds-47/rcp.tproj/
H A Drcp.c106 int errs, rem; variable
242 rem = STDIN_FILENO; /* XXX */
262 rem = -1;
346 if (rem == -1) {
353 rem = kerberos(&host, bp,
358 rem = rcmd_af(&host, port,
362 // rem = rcmd(&host, port, pwd->pw_name,
365 if (rem < 0)
369 if (setsockopt(rem, IPPROTO_IP, IP_TOS,
425 rem
[all...]
/macosx-10.10/SmartcardCCID-55008/libusb/libusb/msvc/
H A Dddk_build.cmd1 @rem default builds static library.
2 @rem you can pass the following arguments (case insensitive):
3 @rem - "DLL" to build a DLL instead of a static library
4 @rem - "/MT" to build a static library compatible with MSVC's /MT option (LIBCMT vs MSVCRT)
9 rem process commandline parameters
15 rem /I for case insensitive
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_globals.py48 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinXEdge)
50 self.assertEquals(rem, ((1.5, 2.0), (2.5, 4.0)))
52 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinYEdge)
54 self.assertEquals(rem, ((1.0, 2.5), (3.0, 3.5)))
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_globals.py48 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinXEdge)
50 self.assertEqual(rem, ((1.5, 2.0), (2.5, 4.0)))
52 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinYEdge)
54 self.assertEqual(rem, ((1.0, 2.5), (3.0, 3.5)))
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_globals.py60 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinXEdge)
62 self.assertEqual(rem, ((1.5, 2.0), (2.5, 4.0)))
64 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinYEdge)
66 self.assertEqual(rem, ((1.0, 2.5), (3.0, 3.5)))
/macosx-10.10/swig-12/Lib/
H A Dinttypes.i27 long int rem; /* Remainder. */
36 long long int rem; /* Remainder. */
/macosx-10.10/tcl-105/tcl84/tcl/win/
H A DtclWinTime.c679 long tmp, rem;
691 rem = (LONG)(*tp % SECSPER4YEAR);
697 if (rem < 0) {
699 rem += SECSPER4YEAR;
710 if (rem >= SECSPERYEAR) { /* 1971, etc. */
712 rem -= SECSPERYEAR;
713 if (rem >= SECSPERYEAR) { /* 1972, etc. */
715 rem -= SECSPERYEAR;
716 if (rem >= SECSPERYEAR + SECSPERDAY) { /* 1973, etc. */
718 rem
671 long tmp, rem; local
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/bn/
H A Dbn_prime.c133 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
135 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
160 const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb)
183 if (!probable_prime_dh_safe(ret,bits,add,rem,ctx))
188 if (!probable_prime_dh(ret,bits,add,rem,ctx))
407 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx)
417 /* we need ((rnd-rem) % add) == 0 */
421 if (rem == NULL)
424 { if (!BN_add(rnd,rnd,rem)) goto err; }
445 const BIGNUM *rem, BN_CT
159 BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb) argument
406 probable_prime_dh(BIGNUM *rnd, int bits, const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx) argument
444 probable_prime_dh_safe(BIGNUM *p, int bits, const BIGNUM *padd, const BIGNUM *rem, BN_CTX *ctx) argument
[all...]
H A Dbn_depr.c69 const BIGNUM *add, const BIGNUM *rem,
84 if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb))
68 BN_generate_prime(BIGNUM *ret, int bits, int safe, const BIGNUM *add, const BIGNUM *rem, void (*callback)(int,int,void *), void *cb_arg) argument
H A Dbn_recp.c130 int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, argument
143 if (rem != NULL)
144 r=rem;
208 bn_check_top(rem);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_prime.c146 BIGNUM *add, BIGNUM *rem, BN_CTX *ctx);
148 BIGNUM *add, BIGNUM *rem, BN_CTX *ctx);
151 BIGNUM *rem, void (*callback)(int,int,void *), void *cb_arg)
179 if (!probable_prime_dh_safe(rnd,bits,add,rem,ctx))
184 if (!probable_prime_dh(rnd,bits,add,rem,ctx))
397 static int probable_prime_dh(BIGNUM *rnd, int bits, BIGNUM *add, BIGNUM *rem, argument
408 /* we need ((rnd-rem) % add) == 0 */
412 if (rem == NULL)
415 { if (!BN_add(rnd,rnd,rem)) goto err; }
435 BIGNUM *rem, BN_CT
150 BN_generate_prime(BIGNUM *ret, int bits, int safe, BIGNUM *add, BIGNUM *rem, void (*callback)(int,int,void *), void *cb_arg) argument
434 probable_prime_dh_safe(BIGNUM *p, int bits, BIGNUM *padd, BIGNUM *rem, BN_CTX *ctx) argument
[all...]
/macosx-10.10/OpenSSL098-52/src/ms/
H A Dtenc.bat0 rem called by testenc
/macosx-10.10/ppp-786.1.1/Documentation/scripts/
H A Dppp-on-rsh49 PPPD_REM_OPT=/etc/ppp/options-rsh-rem
H A Dppp-on-ssh50 PPPD_REM_OPT=/etc/ppp/options-ssh-rem
/macosx-10.10/tcl-105/tk84/tk/win/
H A Drmd.bat2 rem RCS: @(#) $Id: rmd.bat,v 1.5 2001/11/13 02:46:23 davygrvy Exp $
/macosx-10.10/rsync-45/rsync/zlib/
H A Dadler32.c135 unsigned rem; local
138 rem = (unsigned)(len2 % BASE);
140 sum2 = rem * sum1;
143 sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;
/macosx-10.10/sudo-73/src/zlib/
H A Dadler32.c143 unsigned rem; local
151 rem = (unsigned)len2;
153 sum2 = rem * sum1;
156 sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;

Completed in 160 milliseconds

12345678910