HomeSort by relevance Sort by last modified time
    Searched refs:X0 (Results 1 - 20 of 20) sorted by null

  /external/dropbear/libtommath/
bn_mp_karatsuba_mul.c 49 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
62 if (mp_init_size (&x0, B) != MP_OKAY)
65 goto X0;
80 x0.used = y0.used = B;
94 tmpx = x0.dp;
115 mp_clamp (&x0);
119 /* after this x0 is no longer required, free temp [x0==t2]! */
120 if (mp_mul (&x0, &y0, &x0y0) != MP_OKAY)
121 goto X1Y1; /* x0y0 = x0*y0 *
    [all...]
bn_mp_karatsuba_sqr.c 27 mp_int x0, x1, t1, t2, x0x0, x1x1; local
39 if (mp_init_size (&x0, B) != MP_OKAY)
42 goto X0;
61 dst = x0.dp;
72 x0.used = B;
75 mp_clamp (&x0);
77 /* now calc the products x0*x0 and x1*x1 */
78 if (mp_sqr (&x0, &x0x0) != MP_OKAY)
79 goto X1X1; /* x0x0 = x0*x0 *
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/twofish/
twofish.c 82 { 0x8, 0x1, 0x7, 0xD, 0x6, 0xF, 0x3, 0x2, 0x0, 0xB, 0x5, 0x9, 0xE, 0xC, 0xA, 0x4 },
83 { 0xE, 0XC, 0XB, 0X8, 0X1, 0X2, 0X3, 0X5, 0XF, 0X4, 0XA, 0X6, 0X7, 0X0, 0X9, 0XD },
84 { 0XB, 0XA, 0X5, 0XE, 0X6, 0XD, 0X9, 0X0, 0XC, 0X8, 0XF, 0X3, 0X2, 0X4, 0X7, 0X1 },
85 { 0XD, 0X7, 0XF, 0X4, 0X1, 0X2, 0X6, 0XE, 0X9, 0XB, 0X3, 0X0, 0X8, 0X5, 0XC, 0XA }
88 { 0X2, 0X8, 0XB, 0XD, 0XF, 0X7, 0X6, 0XE, 0X3, 0X1, 0X9, 0X4, 0X0, 0XA, 0XC, 0X5 },
89 { 0X1, 0XE, 0X2, 0XB, 0X4, 0XC, 0X3, 0X7, 0X6, 0XD, 0XA, 0X5, 0XF, 0X9, 0X0, 0X8 },
90 { 0X4, 0XC, 0X7, 0X5, 0X1, 0X6, 0X9, 0XA, 0X0, 0XE, 0XD, 0X8, 0X2, 0XB, 0X3, 0XF },
91 { 0xB, 0X9, 0X5, 0X1, 0XC, 0X3, 0XD, 0XE, 0X6, 0X4, 0X7, 0XF, 0X2, 0X0, 0X8, 0XA }
169 /* computes [y0 y1 y2 y3] = MDS . [x0] */
211 /* Computes [y0 y1 y2 y3] = MDS . [x0 x1 x2 x3] *
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.7.3.js 138 array[item++] = new TestCase( SECTION, "0x0", 0, 0x0 );
155 array[item++] = new TestCase( SECTION, "0X0", 0, 0X0 );
172 array[item++] = new TestCase( SECTION, "0x0", 0, 0x0 );
189 array[item++] = new TestCase( SECTION, "0X0", 0, 0X0 );
  /external/openssl/crypto/sha/asm/
sha1-ia64.pl 40 @X= ( "X0", "X1", "X2", "X3", "X4", "X5", "X6", "X7",
  /external/v8/test/mjsunit/
str-to-num.js 114 assertEquals(0, toNumber("0x0"));
125 assertEquals(0, toNumber("0X0"));
  /external/libpng/
pngget.c 637 png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams,
643 && purpose != NULL && X0 != NULL && X1 != NULL && type != NULL &&
647 *X0 = info_ptr->pcal_X0;
pngtest.c 1029 png_int_32 X0, X1;
1032 if (png_get_pCAL(read_ptr, read_info_ptr, &purpose, &X0, &X1, &type,
1035 png_set_pCAL(write_ptr, write_info_ptr, purpose, X0, X1, type,
    [all...]
pngset.c 291 png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,
313 png_debug(3, "storing X0, X1, type, and nparams in info");
314 info_ptr->pcal_X0 = X0;
    [all...]
pngrutil.c     [all...]
pngwutil.c     [all...]
png.h     [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngget.c 605 png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams,
609 && purpose != NULL && X0 != NULL && X1 != NULL && type != NULL &&
614 *X0 = info_ptr->pcal_X0;
pngset.c 386 png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,
406 png_debug(3, "storing X0, X1, type, and nparams in info\n");
407 info_ptr->pcal_X0 = X0;
    [all...]
png.h     [all...]
pngwutil.c     [all...]
pngrutil.c     [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.3-1.js 281 array[item++] = new TestCase( SECTION, "parseFloat('0x0')", 0, parseFloat("0x0"));
304 array[item++] = new TestCase( SECTION, "parseFloat('0X0')", 0, parseFloat("0X0"));
330 array[item++] = new TestCase( SECTION, "parseFloat(0x0)", 0, parseFloat(0x0));
353 array[item++] = new TestCase( SECTION, "parseFloat(0X0)", 0, parseFloat(0X0));
  /external/dropbear/libtommath/pre_gen/
mpi.c 4143 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
4292 mp_int x0, x1, t1, t2, x0x0, x1x1; local
    [all...]
  /external/opencore/protocols/rtp_payload_parser/util/output/
pv_rtp.bin 272 p(? ?X{?-??C ???fL3L7?????^?^?S?K???;.t+??,?1??w??:?$0???????4y???x0@?$???????_??r ??n"?#?K??@???A?C???s>??? E?@+?X???
    [all...]

Completed in 1162 milliseconds