HomeSort by relevance Sort by last modified time
    Searched defs:x10 (Results 1 - 25 of 25) sorted by null

  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_mb_offset.h 31 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
50 x10 = *((uint32*)(ref += lx)); /* D C B A */
54 x10 = ((uint32)x10 >> SHIFT); /* 0 0 0 D */
55 x10 = x10 | (x11 << (32 - SHIFT)); /* G F E D */
65 /* process x12 & x10 */
66 x10 = sad_4pixel(x10, x12, x9);
68 x5 = x5 + x10; /* accumulate low bytes *
134 int32 x4, x5, x6, x9, x10, x11, x12, x14; local
157 MVN x10, x10, lsr #SHIFT; local
158 BIC x10, x10, x11, lsl #(32-SHIFT); local
177 LDR x10, [ref], lx ; local
180 MVN x10, x10, lsr #SHIFT; local
181 BIC x10, x10, x11, lsl #(32-SHIFT); local
202 RSBS x11, dmin, x10, lsr #16 local
226 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
    [all...]
sad.cpp 66 int32 x10; local
72 x10 = simd_sad_mb(ref, blk, dmin, lx);
74 return x10;
sad_inline.h 81 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
105 x10 = *((uint32*)(ref += lx));
113 /* process x12 & x10 */
114 x10 = sad_4pixel(x10, x12, x9);
116 x5 = x5 + x10; /* accumulate low bytes */
117 x10 = x10 & (x6 << 8); /* x10 & 0xFF00FF00 */
118 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes *
256 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
294 LDR x10, [ref], lx ; local
320 RSBS x11, dmin, x10, lsr #16; local
430 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_mb_offset.h 34 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
53 x10 = *((uint32*)(ref += lx)); /* D C B A */
57 x10 = ((uint32)x10 >> SHIFT); /* 0 0 0 D */
58 x10 = x10 | (x11 << (32 - SHIFT)); /* G F E D */
68 /* process x12 & x10 */
69 x10 = sad_4pixel(x10, x12, x9);
71 x5 = x5 + x10; /* accumulate low bytes *
137 int32 x4, x5, x6, x9, x10, x11, x12, x14; local
161 MVN x10, x10, lsr #SHIFT; local
162 BIC x10, x10, x11, lsl #(32-SHIFT); local
181 LDR x10, [ref], lx ; local
184 MVN x10, x10, lsr #SHIFT; local
185 BIC x10, x10, x11, lsl #(32-SHIFT); local
206 RSBS x11, dmin, x10, lsr #16 local
230 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
    [all...]
sad.cpp 80 int32 x10; local
88 x10 = simd_sad_mb(ref, blk, dmin, lx);
90 return x10;
sad_inline.h 84 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
108 x10 = *((uint32*)(ref += lx));
116 /* process x12 & x10 */
117 x10 = sad_4pixel(x10, x12, x9);
119 x5 = x5 + x10; /* accumulate low bytes */
120 x10 = x10 & (x6 << 8); /* x10 & 0xFF00FF00 */
121 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes *
259 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
297 LDR x10, [ref], lx ; local
323 RSBS x11, dmin, x10, lsr #16; local
448 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RC2Engine.java 47 (byte)0x5, (byte)0xdf, (byte)0x29, (byte)0x10, (byte)0x67, (byte)0x6c, (byte)0xba, (byte)0xc9,
210 int x76, x54, x32, x10; local
215 x10 = ((in[inOff + 1] & 0xff) << 8) + (in[inOff + 0] & 0xff);
219 x10 = rotateWordLeft(x10 + (x32 & ~x76) + (x54 & x76) + workingKey[i ], 1);
220 x32 = rotateWordLeft(x32 + (x54 & ~x10) + (x76 & x10) + workingKey[i+1], 2);
221 x54 = rotateWordLeft(x54 + (x76 & ~x32) + (x10 & x32) + workingKey[i+2], 3);
222 x76 = rotateWordLeft(x76 + (x10 & ~x54) + (x32 & x54) + workingKey[i+3], 5);
225 x10 += workingKey[x76 & 63]
267 int x76, x54, x32, x10; local
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/
rc2.c 141 unsigned x76, x54, x32, x10, i; local
152 x10 = ((unsigned)pt[1] << 8) + (unsigned)pt[0];
155 x10 = (x10 + (x32 & ~x76) + (x54 & x76) + xkey[4*i+0]) & 0xFFFF;
156 x10 = ((x10 << 1) | (x10 >> 15));
158 x32 = (x32 + (x54 & ~x10) + (x76 & x10) + xkey[4*i+1]) & 0xFFFF;
161 x54 = (x54 + (x76 & ~x32) + (x10 & x32) + xkey[4*i+2]) & 0xFFFF
218 unsigned x76, x54, x32, x10; local
    [all...]
  /external/clang/test/ASTMerge/Inputs/
struct1.c 45 struct S10 *x10; variable in typeref:struct:S10
struct2.c 42 struct S10 *x10; variable in typeref:struct:S10
  /external/clang/test/CodeGen/
override-layout.c 89 // CHECK: Type: struct X10
90 struct X10 {
142 struct X10 x10; local
143 typedef int X10array[sizeof(struct X10)];
144 x10.y = sizeof(struct X10);
  /external/clang/test/Parser/
cxx-decl.cpp 3 const char const *x10; // expected-warning {{duplicate 'const' declaration specifier}} variable
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_Interpolate_Chroma_s.s 65 x10 RN 9 label
137 ;// x10 x11 x12
147 LDRB x10, [pSrc1, #+0]
157 ORR x11x10, x10, x11, LSL #16
  /external/speex/libspeex/
filters.c 503 spx_word16_t x10, x20; local
506 x10 = xx1[N2-2-i];
522 y2 = MAC16_16(MAC16_16(y2, a0, x10), NEG16(a0), x20);
523 y3 = MAC16_16(MAC16_16(y3, a1, x10), a1, x20);
527 y2 = ADD32(y2,MULT16_16(a0, x10-x20));
528 y3 = ADD32(y3,MULT16_16(a1, x10+x20));
532 x10 = xx1[N2+j-i];
537 y0 = MAC16_16(MAC16_16(y0, a0, x10), NEG16(a0), x20);
538 y1 = MAC16_16(MAC16_16(y1, a1, x10), a1, x20);
542 y0 = ADD32(y0,MULT16_16(a0, x10-x20))
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest2.java 619 public void x10() { method in class:SerializationStressTest2.NonPublicClassTest
694 public void x10() { method in class:SerializationStressTest2.SInterfaceTest
743 public void x10() { method in class:SerializationStressTest2.SuperclassTest
773 public void x10() { method in class:SerializationStressTest2.SuperclassTest2
775 super.x10();
    [all...]
  /external/clang/test/Analysis/
dead-stores.c 563 int x9 = getInt(), x10 = 0; //expected-warning {{Value stored to 'x9' during its initialization is never read}} // expected-warning{{unused variable 'x9'}} // expected-warning{{unused variable 'x10'}} local
  /external/clang/test/FixIt/
fixit.cpp 82 int x10 >= 0; // expected-error {{invalid '>=' at end of declaration; did you mean '='?}} member in namespace:rdar8488464
109 int x10 >= 0; // expected-error {{invalid '>=' at end of declaration; did you mean '='?}} local
110 (void)x10;
129 if (int x10 >= 0) { (void)x10; } // expected-error {{invalid '>=' at end of declaration; did you mean '='?}}
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans16_dspr2.c 927 int x10 = input[5]; local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_idct.c 651 int x10 = input[5]; local
659 | x9 | x10 | x11 | x12 | x13 | x14 | x15)) {
678 s10 = x10 * cospi_21_64 + x11 * cospi_11_64;
679 s11 = x10 * cospi_11_64 - x11 * cospi_21_64;
695 x10 = dct_const_round_shift(s2 - s10);
713 s10 = x10 * cospi_20_64 + x11 * cospi_12_64;
714 s11 = x10 * cospi_12_64 - x11 * cospi_20_64;
730 x10 = dct_const_round_shift(s10 + s14);
748 s10 = x10;
765 x10 = s8 - s10
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 799 int x10 = input[5]; local
817 s10 = x10 * cospi_21_64 + x11 * cospi_11_64;
818 s11 = x10 * cospi_11_64 - x11 * cospi_21_64;
834 x10 = dct_const_round_shift(s2 - s10);
852 s10 = x10 * cospi_20_64 + x11 * cospi_12_64;
853 s11 = x10 * cospi_12_64 - x11 * cospi_20_64;
869 x10 = dct_const_round_shift(s10 + s14);
887 s10 = x10;
904 x10 = s8 - s10;
916 s10 = cospi_16_64 * (x10 + x11)
    [all...]
  /external/libvpx/libvpx/vp9/common/x86/
vp9_loopfilter_intrin_sse2.c 1099 __m128i x8, x9, x10, x11, x12, x13, x14, x15; local
    [all...]
  /external/qemu-pc-bios/vgabios/
vgabios.c 247 SET_INT_VECTOR(0x10, #0xC000, #vgabios_int10_handler)
258 int #0x10 variable
315 cmp bl, #0x10
347 cmp ah, #0x10
467 mov al, #0x10
571 int #0x10
577 int #0x10
670 case 0x10:
671 // All other functions of group AH=0x10 rewritten in assembler
678 case 0x10
3863 mov dl, #0x10 ;; I\/O space #0 local
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios.c 723 unsigned char fdpt0[0x10];
724 unsigned char fdpt1[0x10];
4014 mov ax, #0x10 ;; 010 000 = 2nd descriptor in table, TI=GDT, RPL=00 local
8711 mov al, #0x10 ;; get CMOS diskette drive type local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 

Completed in 1311 milliseconds