HomeSort by relevance Sort by last modified time
    Searched refs:c3 (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/openssl/crypto/bn/asm/
x86_64-gcc.c 351 BN_ULONG c1,c2,c3; local
355 c3=0;
356 mul_add_c(a[0],b[0],c1,c2,c3);
359 mul_add_c(a[0],b[1],c2,c3,c1);
360 mul_add_c(a[1],b[0],c2,c3,c1);
363 mul_add_c(a[2],b[0],c3,c1,c2);
364 mul_add_c(a[1],b[1],c3,c1,c2);
365 mul_add_c(a[0],b[2],c3,c1,c2);
366 r[2]=c3;
367 c3=0
455 BN_ULONG c1,c2,c3; local
495 BN_ULONG c1,c2,c3; local
571 BN_ULONG c1,c2,c3; local
    [all...]
sparcv8.S 568 umul a_0,b_0,c_1 !=!mul_add_c(a[0],b[0],c1,c2,c3);
573 umul a_0,b_1,t_1 !=!mul_add_c(a[0],b[1],c2,c3,c1);
580 umul a_1,b_0,t_1 !mul_add_c(a[1],b[0],c2,c3,c1);
587 umul a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
593 umul a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
599 umul a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
604 st c_3,rp(2) !r[2]=c3;
606 umul a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
611 umul a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
617 umul a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c2,c3);
    [all...]
sparcv8plus.S 667 mulx a_0,b_0,t_1 !mul_add_c(a[0],b[0],c1,c2,c3);
672 mulx a_0,b_1,t_1 !mul_add_c(a[0],b[1],c2,c3,c1);
678 mulx a_1,b_0,t_1 !=!mul_add_c(a[1],b[0],c2,c3,c1);
686 mulx a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
692 mulx a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
697 mulx a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
702 stuw t_1,rp(2) !r[2]=c3;
705 mulx a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
710 mulx a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
715 mulx a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c2,c3);
    [all...]
  /external/openssl/crypto/bn/
bn_asm.c 558 BN_ULONG c1,c2,c3; local
562 c3=0;
563 mul_add_c(a[0],b[0],c1,c2,c3);
566 mul_add_c(a[0],b[1],c2,c3,c1);
567 mul_add_c(a[1],b[0],c2,c3,c1);
570 mul_add_c(a[2],b[0],c3,c1,c2);
571 mul_add_c(a[1],b[1],c3,c1,c2);
572 mul_add_c(a[0],b[2],c3,c1,c2);
573 r[2]=c3;
574 c3=0
667 BN_ULONG c1,c2,c3; local
712 BN_ULONG c1,c2,c3; local
793 BN_ULONG c1,c2,c3; local
    [all...]
  /frameworks/base/include/media/stagefright/
Utils.h 25 #define FOURCC(c1, c2, c3, c4) \
26 (c1 << 24 | c2 << 16 | c3 << 8 | c4)
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 47 float c3 = 0.32f; local
53 mCubes[1] = new Cube(world, c2, c4, c0, c3, c5, c1);
56 mCubes[3] = new Cube(world, c0, c4, c2, c1, c5, c3);
57 mCubes[4] = new Cube(world, c2, c4, c2, c3, c5, c3);
58 mCubes[5] = new Cube(world, c4, c4, c2, c5, c5, c3);
61 mCubes[7] = new Cube(world, c2, c4, c4, c3, c5, c5);
64 mCubes[9] = new Cube(world, c0, c2, c0, c1, c3, c1);
65 mCubes[10] = new Cube(world, c2, c2, c0, c3, c3, c1)
    [all...]
  /external/proguard/src/proguard/io/
ManifestRewriter.java 110 int c3 = super.read(); local
111 if (c3 == ' ')
117 buffer[bufferSize++] = (char)c3;
  /system/extras/tests/bionic/libstdc++/
test_climits.cpp 49 volatile char c3 = CHAR_MIN; local
  /frameworks/base/include/binder/
IBinder.h 26 #define B_PACK_CHARS(c1, c2, c3, c4) \
27 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /external/v8/test/mjsunit/bugs/
618.js 59 function C3() {
62 var c3 = new C3();
63 assertEquals(23, c3.x);
64 assertEquals("undefined", typeof c3.y);
68 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
69 var c3 = new C3();
70 assertEquals("undefined", typeof c3.x);
71 assertEquals(23, c3.y)
    [all...]
  /external/webkit/JavaScriptCore/parser/
Lexer.h 43 static UChar convertUnicode(int c1, int c2, int c3, int c4);
134 inline UChar Lexer::convertUnicode(int c1, int c2, int c3, int c4)
136 return (convertHex(c1, c2) << 8) | convertHex(c3, c4);
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 529 * @param c3 code unit to write
532 short c2, short c3) {
536 out.writeShort(c3);
546 * @param c3 code unit to write
550 short c2, short c3, short c4) {
554 out.writeShort(c3);
565 * @param c3 code unit to write
570 short c2, short c3, short c4, short c5) {
574 out.writeShort(c3);
  /bionic/libc/kernel/common/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
CurrencyTest.java 73 Currency c3 = Currency.getInstance(new Locale("", "CA")); local
76 c3 == c0);
87 c3 = Currency.getInstance(new Locale("bogus", "JP"));
90 c3 == c0);
346 Currency c3 = Currency.getInstance("JPY"); local
347 c3.getDefaultFractionDigits();
348 assertEquals(" Currency.getInstance(\"" + c3
349 + "\") returned incorrect number of digits. ", 0, c3
  /external/kernel-headers/original/linux/
binder.h 25 #define B_PACK_CHARS(c1, c2, c3, c4) \
26 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
perf 118 -w*) width=`echo $1 | cut -c3-` ;;
120 -h*) height=`echo $1 | cut -c3-` ;;
159 -w*) width=`echo $1 | cut -c3-` ;;
161 -h*) height=`echo $1 | cut -c3-` ;;
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/
Base64Encoder.java 250 private int decodeLastBlock(OutputStream out, char c1, char c2, char c3, char c4)
255 if (c3 == padding)
268 b3 = decodingTable[c3];
279 b3 = decodingTable[c3];
  /external/icu4c/test/intltest/
itercoll.cpp 130 RuleBasedCollator *c3 = NULL; local
131 c3 = new RuleBasedCollator((UnicodeString)"&a < b < c/aba < d < z < ch", status);
133 if (c3 == NULL || U_FAILURE(status))
136 delete c3;
141 iter = c3->createCollationElementIterator(source);
144 delete c3;
  /external/v8/test/mjsunit/
setter-on-constructor-prototype.js 62 function C3() {
65 C3.prototype = { };
66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
68 %ToFastProperties(C3.prototype);
72 var c3 = new C3();
73 assertEquals("undefined", typeof c3.x);
74 assertEquals(23, c3.y);

Completed in 2100 milliseconds

1 2 3