Searched refs:n1 (Results 1 - 25 of 34) sorted by relevance

12

/barrelfish-2018-10-04/lib/openssl-1.0.0d/ms/
H A Dcmp.pl14 $n1=sysread(IN0,$b1,4096);
17 last if ($n1 != $n2);
19 last if ($n1 < 0);
20 if ($n1 == 0)
25 $tot+=$n1;
43 $nm=$tot+$n1;
/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_prime_miller_rabin.c27 mp_int n1, y, r; local
38 /* get n1 = a - 1 */
39 if ((err = mp_init_copy (&n1, a)) != MP_OKAY) {
42 if ((err = mp_sub_d (&n1, 1, &n1)) != MP_OKAY) {
46 /* set 2**s * r = n1 */
47 if ((err = mp_init_copy (&r, &n1)) != MP_OKAY) {
69 /* if y != 1 and y != n1 do */
70 if (mp_cmp_d (&y, 1) != MP_EQ && mp_cmp (&y, &n1) != MP_EQ) {
72 /* while j <= s-1 and y != n1 */
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/engines/ccgost/
H A Dgost89.c142 register word32 n1, n2; /* As named in the GOST */ local
143 n1 = in[0]|(in[1]<<8)|(in[2]<<16)|(in[3]<<24);
147 n2 ^= f(c,n1+c->k[0]); n1 ^= f(c,n2+c->k[1]);
148 n2 ^= f(c,n1+c->k[2]); n1 ^= f(c,n2+c->k[3]);
149 n2 ^= f(c,n1+c->k[4]); n1 ^= f(c,n2+c->k[5]);
150 n2 ^= f(c,n1+c->k[6]); n1
175 register word32 n1, n2; /* As named in the GOST */ local
320 register word32 n1, n2; /* As named in the GOST */ local
[all...]
/barrelfish-2018-10-04/usr/bench/bomp_benchmark/
H A Dc_print_results.c9 int n1,
35 printf( " Size = %12d\n", n1 ); /* as in IS */
37 printf( " Size = %3dx%3dx%3d\n", n1,n2,n3 );
7 c_print_results( char *name, char class, int n1, int n2, int n3, int niter, int nthreads, double t, double mops, char *optype, int passed_verification, char *npbversion, char *compiletime, char *cc, char *clink, char *c_lib, char *c_inc, char *cflags, char *clinkflags, char *rand) argument
H A Dnpb-C.h38 extern void c_print_results(char *name, char class, int n1, int n2,
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/lhash/
H A Dlhash.c312 LHASH_NODE **n,**n1,**n2,*np; local
319 n1= &(lh->b[p]);
324 for (np= *n1; np != NULL; )
334 *n1= (*n1)->next;
339 n1= &((*n1)->next);
340 np= *n1;
368 LHASH_NODE **n,*n1,*np; local
394 n1
407 LHASH_NODE **ret,*n1; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rand/
H A Drandtest.c72 unsigned long n1; local
86 n1=0;
118 if (s) n1++;
126 if (!((9654 < n1) && (n1 < 10346)))
128 printf("test 1 failed, X=%lu\n",n1);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/test/
H A Drandtest.c72 unsigned long n1; local
86 n1=0;
118 if (s) n1++;
126 if (!((9654 < n1) && (n1 < 10346)))
128 printf("test 1 failed, X=%lu\n",n1);
H A Dcms-test.pl439 $n1 = sysread $fp1, $rd1, 4096;
441 last if ( $n1 != $n2 );
444 if ( $n1 == 0 ) {
H A Dcms-examples.pl391 $n1 = sysread $fp1, $rd1, 4096;
393 last if ( $n1 != $n2 );
396 if ( $n1 == 0 ) {
H A Dtx50935 $cmd -in f.d -inform d -outform n >ff.n1
63 cmp f.n ff.n1
H A Dtx509.com43 $ 'cmd' -in f.d -inform d -outform n -out ff.n1
71 $ backup/compare f.n ff.n1
/barrelfish-2018-10-04/lib/libc/tests/sys/
H A Dqueue_test.c49 } *n1, *n2, *n3, *np; local
67 n1 = malloc(sizeof(struct entry));
68 ATF_REQUIRE(n1 != NULL);
69 n1->i = i++;
71 SLIST_INSERT_HEAD(&head, n1, entries);
74 ATF_REQUIRE_EQ(SLIST_FIRST(&head), n1); local
91 SLIST_INSERT_AFTER(n1, n2, entries);
111 ATF_REQUIRE_EQ(SLIST_FIRST(&head), n1); local
160 } *n1, *n2, *n3, *np; local
176 n1
[all...]
/barrelfish-2018-10-04/usr/bench/rcce/bt/
H A Dcommon.h10 int n1,
H A Dprint_results.c10 int n1,
35 printf( " Size = %3dx %3dx %3d\n", n1,n2,n3 );
8 print_results( char *name, char class, int n1, int n2, int n3, int niter, int nprocs_compiled, int nprocs_total, double t, double mops, char *optype, int passed_verification, char *npbversion, char *compiletime, char *mpicc, char *clink, char *cmpi_lib, char *cmpi_inc, char *cflags, char *clinkflags ) argument
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/idea/
H A Di_skey.c129 long n1,n2,q,r,b1,b2,t; local
135 n1=0x10001;
141 r=(n1%n2);
142 q=(n1-r)/n2;
147 n1=n2;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/objects/
H A Dobj_xref.c207 int n1, n2, n3; local
220 n1 = sigoid_srt[i][0];
221 rv = OBJ_find_sigid_algs(n1, &n2, &n3);
223 OBJ_nid2ln(n1), OBJ_nid2ln(n2), OBJ_nid2ln(n3));
224 n1=0;
225 rv = OBJ_find_sigid_by_algs(&n1, n2, n3);
227 OBJ_nid2ln(n1), OBJ_nid2ln(n2), OBJ_nid2ln(n3));
H A Do_names.c308 const OBJ_NAME * const *n1=n1_; local
311 return strcmp((*n1)->name,(*n2)->name);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_div.c137 * in reply to ((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0 (I fail to
144 # define bn_div_words(n0,n1,d0) \
148 : "a"(n1), "d"(n0), "g"(d0) \
158 # define bn_div_words(n0,n1,d0) \
162 : "a"(n1), "d"(n0), "g"(d0) \
299 BN_ULONG n0,n1,rem=0; local
302 n1=wnump[-1];
311 q=(BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0);
313 q=bn_div_words(n0,n1,d0);
317 n0, n1, d
526 BN_ULONG n0,n1,rem=0; local
[all...]
/barrelfish-2018-10-04/usr/bench/rcce/lu/
H A Dprint_results.c10 int *n1,
35 printf( " Size = %3dx %3dx %3d\n", *n1,*n2,*n3 );
8 print_results( char *name, char *class, int *n1, int *n2, int *n3, int *niter, int *nprocs_compiled, int *nprocs_total, double *t, double *mops, char *optype, int *passed_verification, char *npbversion, char *compiletime, char *mpicc, char *clink, char *cmpi_lib, char *cmpi_inc, char *cflags, char *clinkflags ) argument
/barrelfish-2018-10-04/lib/libc/iconv/
H A Dcitrus_module.c151 _cmpndewey(int d1[], int n1, int d2[], int n2) argument
155 for (i = 0; i < n1 && i < n2; i++) {
162 if (n1 == n2)
165 if (i == n1)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ec/
H A Decp_smpl.c1008 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
1031 n1 = BN_CTX_get(ctx);
1044 /* n1, n2 */
1047 if (!BN_copy(n1, &a->X)) goto end;
1049 /* n1 = X_a */
1055 if (!field_mul(group, n1, &a->X, n0, ctx)) goto end;
1056 /* n1 = X_a * Z_b^2 */
1083 if (!BN_mod_sub_quick(n5, n1, n3, p)) goto end;
1085 /* n5 = n1 - n3 */
1109 if (!BN_mod_add_quick(n1, n
1172 BIGNUM *n0, *n1, *n2, *n3; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/Netware/
H A Ddo_tests.pl547 my( $n1, $n2, $b1, $b2 );
561 $n1 = read(IN0, $b1, 512);
564 if ($n1 != $n2) {last;}
567 if ($n1 == 0)
/barrelfish-2018-10-04/lib/gdtoa/
H A Dmisc.c441 int i, k1, n, n1; local
447 n1 = n + b->wds + 1;
448 for(i = b->maxwds; n1 > i; i <<= 1)
466 ++n1;
476 ++n1;
482 b1->wds = n1 - 1;
/barrelfish-2018-10-04/lib/libc/resolv/
H A Dres_mkupdate.c106 u_int32_t n1, rttl; local
231 n1 = ntohl(ina.s_addr);
233 PUTLONG(n1, cp);
357 n1 = ntohl(ina.s_addr);
359 PUTLONG(n1, cp);

Completed in 284 milliseconds

12