Searched refs:u2 (Results 1 - 25 of 33) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/uuid/
H A Dcompare.c41 #define UUCMP(u1,u2) if (u1 != u2) return (u1 < u2) ? -1 : 1;
H A Duuid.h56 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
57 static const uuid_t name ATTRIBUTE_UNUSED = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
59 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
60 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/fips/des/
H A Dfips_des_locl.h215 unsigned int u1,u2,u3; \
217 u2=(int)u>>8L; \
219 u2&=0xfc; \
223 LL^= *(const DES_LONG *)(des_SP+0x200+u2); \
229 u2=(int)t>>8L; \
231 u2&=0xfc; \
234 LL^= *(const DES_LONG *)(des_SP+0x300+u2); \
243 unsigned int u1,u2,s1,s2; \
245 u2=(int)u>>8L; \
247 u2
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/des/
H A Ddes_locl.h215 unsigned int u1,u2,u3; \
217 u2=(int)u>>8L; \
219 u2&=0xfc; \
223 LL^= *(const DES_LONG *)(des_SP+0x200+u2); \
229 u2=(int)t>>8L; \
231 u2&=0xfc; \
234 LL^= *(const DES_LONG *)(des_SP+0x300+u2); \
243 unsigned int u1,u2,s1,s2; \
245 u2=(int)u>>8L; \
247 u2
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/des/
H A Ddes_locl.h215 unsigned int u1,u2,u3; \
217 u2=(int)u>>8L; \
219 u2&=0xfc; \
223 LL^= *(const DES_LONG *)(des_SP+0x200+u2); \
229 u2=(int)t>>8L; \
231 u2&=0xfc; \
234 LL^= *(const DES_LONG *)(des_SP+0x300+u2); \
243 unsigned int u1,u2,s1,s2; \
245 u2=(int)u>>8L; \
247 u2
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/
H A Dmpi-inv.c35 gcry_mpi_t u, v, u1, u2, u3, v1, v2, v3, q, t1, t2, t3;
41 u2 = mpi_alloc_set_ui(0);
53 mpi_sub(t1, u1, t1); mpi_sub(t2, u2, t2); mpi_sub(t3, u3, t3);
54 mpi_set(u1, v1); mpi_set(u2, v2); mpi_set(u3, v3);
60 log_mpidump("u2=", u2);
67 mpi_free(u2);
83 gcry_mpi_t u, v, u1, u2, u3, v1, v2, v3, t1, t2, t3; local
96 u2 = mpi_alloc_set_ui(0);
127 mpi_set(u2, t
163 gcry_mpi_t u, v, u1, u2=NULL, u3, v1, v2=NULL, v3, t1, t2=NULL, t3; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/pmc-sierra/yosemite/
H A Dpy-console.c31 } u2; member in struct:yo_uartregs
46 #define iu_ier u2.ier
47 #define iu_dlm u2.dlm
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/dsa/
H A Ddsa_ossl.c239 BIGNUM u1,u2,t1; local
249 BN_init(&u2);
266 * save W in u2 */
267 if ((BN_mod_inverse(&u2,sig->s,dsa->q,ctx)) == NULL) goto err;
273 if (!BN_mod_mul(&u1,&u1,&u2,dsa->q,ctx)) goto err;
275 /* u2 = r * w mod q */
276 if (!BN_mod_mul(&u2,sig->r,&u2,dsa->q,ctx)) goto err;
291 /* v = ( g^u1 * y^u2 mod p ) mod q */
294 /* let t2 = y ^ u2 mo
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/dsa/
H A Ddsa_ossl.c298 BIGNUM u1,u2,t1; local
320 BN_init(&u2);
339 * save W in u2 */
340 if ((BN_mod_inverse(&u2,sig->s,dsa->q,ctx)) == NULL) goto err;
346 if (!BN_mod_mul(&u1,&u1,&u2,dsa->q,ctx)) goto err;
348 /* u2 = r * w mod q */
349 if (!BN_mod_mul(&u2,sig->r,&u2,dsa->q,ctx)) goto err;
361 DSA_MOD_EXP(goto err, dsa, &t1, dsa->g, &u1, dsa->pub_key, &u2, dsa->p, ctx, mont);
376 BN_free(&u2);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/qla4xxx/
H A Dql4_def.h477 &ha->reg->u2.isp4010.ext_hw_conf :
478 &ha->reg->u2.isp4022.p0.ext_hw_conf);
484 &ha->reg->u2.isp4010.port_status :
485 &ha->reg->u2.isp4022.p0.port_status);
491 &ha->reg->u2.isp4010.port_ctrl :
492 &ha->reg->u2.isp4022.p0.port_ctrl);
498 &ha->reg->u2.isp4010.port_err_status :
499 &ha->reg->u2.isp4022.p0.port_err_status);
505 &ha->reg->u2.isp4010.gp_out :
506 &ha->reg->u2
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ecdsa/
H A Decs_ossl.c343 BIGNUM *order, *u1, *u2, *m, *X; local
365 u2 = BN_CTX_get(ctx);
389 if (!BN_mod_inverse(u2, sig->s, order, ctx))
401 if (!BN_mod_mul(u1, m, u2, order, ctx))
406 /* u2 = r * w mod q */
407 if (!BN_mod_mul(u2, sig->r, u2, order, ctx))
418 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/fips/dsa/
H A Dfips_dsa_ossl.c264 BIGNUM u1,u2,t1; local
281 BN_init(&u2);
298 * save W in u2 */
299 if ((BN_mod_inverse(&u2,sig->s,dsa->q,ctx)) == NULL) goto err;
305 if (!BN_mod_mul(&u1,&u1,&u2,dsa->q,ctx)) goto err;
307 /* u2 = r * w mod q */
308 if (!BN_mod_mul(&u2,sig->r,&u2,dsa->q,ctx)) goto err;
323 /* v = ( g^u1 * y^u2 mod p ) mod q */
326 /* let t2 = y ^ u2 mo
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ia64/sn/
H A Dioc3.h28 } u2; member in struct:ioc3_uartregs
43 #define iu_ier u2.ier
44 #define iu_dlm u2.dlm
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dfcal.c235 u32 *u1, *u2; local
239 u2 = (u32 *)&fcal->node_wwn[target];
244 alpa, u1[0], u1[1], u2[0], u2[1]);
250 alpa, target, u1[0], u1[1], u2[0], u2[1]);
H A Dibmmca.c134 } u2; member in struct:im_scb
550 printk("Blocksize=%d", ld(ihost_index)[ldn].scb.u2.blk.length);
555 printk(KERN_ERR "Blockcount=%d/%d\n", last_scsi_blockcount(ihost_index)[ldn], ld(ihost_index)[ldn].scb.u2.blk.count);
574 printk(KERN_ERR " SCB-block count.............: %x\n", ld(ihost_index)[ldn].scb.u2.blk.count);
575 printk(KERN_ERR " SCB-block length............: %x\n", ld(ihost_index)[ldn].scb.u2.blk.length);
2013 scb->u2.blk.count = (unsigned) cmd->cmnd[4];
2016 scb->u2.blk.count = (((unsigned) cmd->cmnd[8]) << 0) | (((unsigned) cmd->cmnd[7]) << 8);
2019 last_scsi_blockcount(host_index)[ldn] = scb->u2.blk.count;
2020 scb->u2.blk.length = ld(host_index)[ldn].block_length;
2040 memcpy(scb->u2
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A Ds_java_stat20 u2=/tmp/__javautil2
21 trap 'rm -f $s $t $t0 $c $u1 $u2; exit 0' 0 1 2 3 13 15
232 sed -n -f $s < ../dbinc/db.in >> $u2
300 > $u2
391 cat $u2 >> $t
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/kernel/
H A Dcompat.c80 } u2; member in struct:param_struct
165 build_tag_list(params, &params->u2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A DMakefile.am27 44u0.vqs 44u1.vqs 44u2.vqs 44u3.vqs 44u4.vqs 44u5.vqs 44u6.vqs \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/kernel/
H A Dcompat.c80 } u2; member in struct:param_struct
218 build_tag_list(params, &params->u2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/cipher/
H A Ddsa.c646 gcry_mpi_t w, u1, u2, v;
657 u2 = mpi_alloc( mpi_get_nlimbs(pkey->q) );
666 /* u2 = r * w mod q */
667 mpi_mulm( u2, r, w, pkey->q );
669 /* v = g^u1 * y^u2 mod p mod q */
671 base[1] = pkey->y; ex[1] = u2;
680 mpi_free(u2);
645 gcry_mpi_t w, u1, u2, v; local
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/sn/
H A Dioc3.h20 } u2; member in struct:ioc3_uartregs
35 #define iu_ier u2.ier
36 #define iu_dlm u2.dlm
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/sn/
H A Dioc3.h20 } u2; member in struct:ioc3_uartregs
35 #define iu_ier u2.ier
36 #define iu_dlm u2.dlm
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/tools/
H A Dcjk_tab_to_h.c1714 unsigned int u1, u2; local
1728 u2 = strtoul(&line[17],NULL,16);
1731 printf(" { 0x%04x, 0x%04x },\n", u1, u2);
1870 unsigned int u1, u2; local
1884 u2 = strtoul(&line[17],NULL,16);
1887 assert(u2 == 0x02E5 || u2 == 0x02E9 || u2 == 0x0300 || u2 == 0x0301
1888 || u2
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/engine/
H A Dhw_cryptodev.c106 BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2, BIGNUM *p,
834 BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2, BIGNUM *p,
842 /* v = ( g^u1 * y^u2 mod p ) mod q */
849 /* let t2 = y ^ u2 mod p */
850 if (!dsa->meth->bn_mod_exp(dsa,&t2,dsa->pub_key,u2,dsa->p,ctx,mont))
833 cryptodev_dsa_dsa_mod_exp(DSA *dsa, BIGNUM *t1, BIGNUM *g, BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2, BIGNUM *p, BN_CTX *ctx, BN_MONT_CTX *mont) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/engine/
H A Deng_cryptodev.c108 BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2, BIGNUM *p,
832 BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2, BIGNUM *p,
840 /* v = ( g^u1 * y^u2 mod p ) mod q */
847 /* let t2 = y ^ u2 mod p */
848 if (!dsa->meth->bn_mod_exp(dsa,&t2,dsa->pub_key,u2,dsa->p,ctx,mont))
831 cryptodev_dsa_dsa_mod_exp(DSA *dsa, BIGNUM *t1, BIGNUM *g, BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2, BIGNUM *p, BN_CTX *ctx, BN_MONT_CTX *mont) argument

Completed in 373 milliseconds

12