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

1 2 3

  /external/openssl/crypto/bn/asm/
s390x.S 331 #define c3 %r8 define
333 #define mul_add_c(ai,bi,c1,c2,c3) \
338 alcgr c3,zero
349 lghi c3,0
352 mul_add_c(0,0,c1,c2,c3);
356 mul_add_c(0,1,c2,c3,c1);
357 mul_add_c(1,0,c2,c3,c1);
361 mul_add_c(2,0,c3,c1,c2);
362 mul_add_c(1,1,c3,c1,c2);
363 mul_add_c(0,2,c3,c1,c2)
    [all...]
x86_64-gcc.c 356 BN_ULONG c1,c2,c3; local
360 c3=0;
361 mul_add_c(a[0],b[0],c1,c2,c3);
364 mul_add_c(a[0],b[1],c2,c3,c1);
365 mul_add_c(a[1],b[0],c2,c3,c1);
368 mul_add_c(a[2],b[0],c3,c1,c2);
369 mul_add_c(a[1],b[1],c3,c1,c2);
370 mul_add_c(a[0],b[2],c3,c1,c2);
371 r[2]=c3;
372 c3=0
460 BN_ULONG c1,c2,c3; local
500 BN_ULONG c1,c2,c3; local
576 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 678 mulx a_0,b_0,t_1 !mul_add_c(a[0],b[0],c1,c2,c3);
683 mulx a_0,b_1,t_1 !mul_add_c(a[0],b[1],c2,c3,c1);
689 mulx a_1,b_0,t_1 !=!mul_add_c(a[1],b[0],c2,c3,c1);
697 mulx a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
703 mulx a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
708 mulx a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
713 stuw t_1,rp(2) !r[2]=c3;
716 mulx a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
721 mulx a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
726 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 565 BN_ULONG c1,c2,c3; local
569 c3=0;
570 mul_add_c(a[0],b[0],c1,c2,c3);
573 mul_add_c(a[0],b[1],c2,c3,c1);
574 mul_add_c(a[1],b[0],c2,c3,c1);
577 mul_add_c(a[2],b[0],c3,c1,c2);
578 mul_add_c(a[1],b[1],c3,c1,c2);
579 mul_add_c(a[0],b[2],c3,c1,c2);
580 r[2]=c3;
581 c3=0
674 BN_ULONG c1,c2,c3; local
719 BN_ULONG c1,c2,c3; local
800 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);
  /external/libvpx/vp8/encoder/x86/
dct_mmx.asm 107 movq mm7, [rdx + 24] ; c3
112 pmulhw mm1, mm7 ; c * c3
119 pmulhw mm5, mm7 ; d * c3
181 movq mm7, [rdx + 24] ; c3
186 pmulhw mm1, mm7 ; c * c3
193 pmulhw mm5, mm7 ; d * c3
327 movdqa xmm7, [rdx + 48] ; c3
332 pmulhw xmm1, xmm7 ; c * c3
339 pmulhw xmm5, xmm7 ; d * c3
410 movdqa xmm7, [rdx + 48] ; c3
    [all...]
  /bionic/libc/kernel/common/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /development/ndk/platforms/android-3/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /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-` ;;
  /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
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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))

Completed in 995 milliseconds

1 2 3