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

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/alpha/
H A Dudiv-qrnnd.S43 #define n1 $17 define
52 addq n1,n1,n1
53 bis n1,tmp,n1
55 cmpule d,n1,qb
56 subq n1,d,tmp
57 cmovne qb,tmp,n1
60 addq n1,n
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/math-emu/
H A Dqrnnd.S43 #define n1 $17 define
53 addq n1,n1,n1
54 bis n1,tmp,n1
56 cmpule d,n1,qb
57 subq n1,d,tmp
58 cmovne qb,tmp,n1
61 addq n1,n
[all...]
H A Dsfp-util.h20 #define udiv_qrnnd(q, r, n1, n0, d) \
22 (q) = __udiv_qrnnd (&__r, (n1), (n0), (d)); \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/math-emu/
H A Dudivmodti4.c10 _FP_W_TYPE n1, _FP_W_TYPE n0,
19 if (d0 > n1)
23 udiv_qrnnd (q0, n0, n1, n0, d0);
35 udiv_qrnnd (q1, n1, 0, n1, d0);
36 udiv_qrnnd (q0, n0, n1, n0, d0);
46 if (d0 > n1)
58 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm));
62 udiv_qrnnd (q0, n0, n1, n
9 _fp_udivmodti4(_FP_W_TYPE q[2], _FP_W_TYPE r[2], _FP_W_TYPE n1, _FP_W_TYPE n0, _FP_W_TYPE d1, _FP_W_TYPE d0) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/
H A Dcleanup_printf2puts8 grep -lr 'printf\([^%%]*\\n"\)' . | grep '.[ch]$' | xargs -n1 \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/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;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/lib/
H A Dudivdi3.c53 USItype d0, d1, n0, n1, n2; local
63 n1 = nn.s.high;
67 if (d0 > n1)
79 n1 = (n1 << bm) | (n0 >> (SI_TYPE_SIZE - bm));
83 udiv_qrnnd (q0, n0, n1, n0, d0);
99 /* From (n1 >= d0) /\ (the most significant bit of d0 is set),
100 conclude (the most significant bit of n1 is set) /\ (the
106 n1 -= d0;
116 n2 = n1 >>
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/
H A Dmpih-div.c50 mpi_limb_t n1, n0, r; local
87 n1 = dividend_ptr[dividend_size - 1];
88 r = n1 >> (BITS_PER_MPI_LIMB - normalization_steps);
92 * && divisor_limb > ((n1 << normalization_steps)
99 ((n1 << normalization_steps)
102 n1 = n0;
105 n1 << normalization_steps,
148 n1 = dividend_ptr[dividend_size - 1];
149 r = n1 >> (BITS_PER_MPI_LIMB - normalization_steps);
153 * && divisor_limb > ((n1 << normalization_step
222 mpi_limb_t n1; local
248 mpi_limb_t n1, n0, n2; local
330 mpi_limb_t n1, n2; local
399 mpi_limb_t n1, n0, r; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/fips/dsa/
H A Dfips_dssvs.c10 int n1, n2; local
13 for (n1=0,n2=0 ; in[n1] && in[n1] != '\n' ; )
15 if ((in[n1] >= '0') && (in[n1] <= '9'))
16 ch = in[n1++] - '0';
17 else if ((in[n1] >= 'A') && (in[n1] <= 'F'))
18 ch = in[n1
54 int n1, n2; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/nbp/
H A Dnbp_util.c96 int nbp_match(struct nbpnve *n1, struct nbpnve *n2, int flags) argument
105 if ( n1->nn_objlen == 1 && n1->nn_obj[0] == '=' ) {
108 if ( n1->nn_typelen == 1 && n1->nn_type[0] == '=' ) {
114 if ( n1->nn_objlen != n2->nn_objlen ||
115 strndiacasecmp( n1->nn_obj, n2->nn_obj, n1->nn_objlen )) {
120 if ( n1->nn_typelen != n2->nn_typelen ||
121 strndiacasecmp( n1
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/nbp/
H A Dnbp_util.c96 int nbp_match(struct nbpnve *n1, struct nbpnve *n2, int flags) argument
105 if ( n1->nn_objlen == 1 && n1->nn_obj[0] == '=' ) {
108 if ( n1->nn_typelen == 1 && n1->nn_type[0] == '=' ) {
114 if ( n1->nn_objlen != n2->nn_objlen ||
115 strndiacasecmp( n1->nn_obj, n2->nn_obj, n1->nn_objlen )) {
120 if ( n1->nn_typelen != n2->nn_typelen ||
121 strndiacasecmp( n1
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bzip2/
H A Dbzmore16 n1=''; n2='\c'
18 n1='-n'; n2=''
44 echo $n1 "--More--(Next file: $FILE)$n2"
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/lhash/
H A Dlhash.c307 LHASH_NODE **n,**n1,**n2,*np; local
314 n1= &(lh->b[p]);
319 for (np= *n1; np != NULL; )
329 *n1= (*n1)->next;
334 n1= &((*n1)->next);
335 np= *n1;
363 LHASH_NODE **n,*n1,*np; local
389 n1
402 LHASH_NODE **ret,*n1; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/lhash/
H A Dlhash.c307 LHASH_NODE **n,**n1,**n2,*np; local
314 n1= &(lh->b[p]);
319 for (np= *n1; np != NULL; )
329 *n1= (*n1)->next;
334 n1= &((*n1)->next);
335 np= *n1;
363 LHASH_NODE **n,*n1,*np; local
389 n1
402 LHASH_NODE **ret,*n1; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/ip/
H A Drtmon.c35 struct nlmsghdr *n1 = (void*)buf; local
38 n1->nlmsg_type = 15;
39 n1->nlmsg_flags = 0;
40 n1->nlmsg_seq = 0;
41 n1->nlmsg_pid = 0;
42 n1->nlmsg_len = NLMSG_LENGTH(4*2);
44 ((__u32*)NLMSG_DATA(n1))[0] = tv.tv_sec;
45 ((__u32*)NLMSG_DATA(n1))[1] = tv.tv_usec;
46 fwrite((void*)n1, 1, NLMSG_ALIGN(n1
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/fips/aes/
H A Dfips_aesavs.c206 int n1, n2; local
209 for (n1 = 0, n2 = 0; n1 < len; )
211 if ((in[n1] >= '0') && (in[n1] <= '9'))
212 ch = in[n1++] - '0';
213 else if ((in[n1] >= 'A') && (in[n1] <= 'F'))
214 ch = in[n1++] - 'A' + 10;
215 else if ((in[n1] >
243 int n1, n2; local
340 int i, j, n, n1, n2; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/test/
H A Dfips_aesavs.c206 int n1, n2; local
209 for (n1 = 0, n2 = 0; n1 < len; )
211 if ((in[n1] >= '0') && (in[n1] <= '9'))
212 ch = in[n1++] - '0';
213 else if ((in[n1] >= 'A') && (in[n1] <= 'F'))
214 ch = in[n1++] - 'A' + 10;
215 else if ((in[n1] >
243 int n1, n2; local
340 int i, j, n, n1, n2; local
[all...]
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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/ss/
H A Debitmap.c23 struct ebitmap_node *n1, *n2; local
28 n1 = e1->node;
30 while (n1 && n2 &&
31 (n1->startbit == n2->startbit) &&
32 (n1->map == n2->map)) {
33 n1 = n1->next;
37 if (n1 || n2)
188 struct ebitmap_node *n1, *n2; local
193 n1
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/tests/
H A Dtsexp.c303 size_t n, n1; local
312 n1 = gcry_sexp_sprint (se, GCRYSEXP_FMT_CANON, NULL, 0);
313 if (!n1)
318 p1 = gcry_xmalloc (n1);
319 n = gcry_sexp_sprint (se, GCRYSEXP_FMT_CANON, p1, n1);
320 if (n1 != n+1) /* sprints adds an extra 0 but dies not return it */
335 p1 = gcry_xmalloc (n1+2);
337 p1[n1+1] = '\xaa';
338 n = gcry_sexp_sprint (se, GCRYSEXP_FMT_CANON, p1+1, n1);
339 if (n1 !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/idea/
H A Di_skey.c142 long n1,n2,q,r,b1,b2,t; local
148 n1=0x10001;
154 r=(n1%n2);
155 q=(n1-r)/n2;
160 n1=n2;

Completed in 165 milliseconds

123456