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

1 2 3 4 5 6 7 8 91011>>

  /external/opencore/codecs_v2/video/avc_h264/enc/src/
sad_mb_offset.h 29 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
48 x10 = *((uint32*)(ref += lx)); /* D C B A */
52 x10 = ((uint32)x10 >> SHIFT); /* 0 0 0 D */
53 x10 = x10 | (x11 << (32 - SHIFT)); /* G F E D */
63 /* process x12 & x10 */
64 x10 = sad_4pixel(x10, x12, x9);
66 x5 = x5 + x10; /* accumulate low bytes *
132 int32 x4, x5, x6, x9, x10, x11, x12, x14; local
155 MVN x10, x10, lsr #SHIFT; local
156 BIC x10, x10, x11, lsl #(32-SHIFT); local
175 LDR x10, [ref], lx ; local
178 MVN x10, x10, lsr #SHIFT; local
179 BIC x10, x10, x11, lsl #(32-SHIFT); local
200 RSBS x11, dmin, x10, lsr #16 local
224 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
    [all...]
sad_inline.h 79 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
103 x10 = *((uint32*)(ref += lx));
111 /* process x12 & x10 */
112 x10 = sad_4pixel(x10, x12, x9);
114 x5 = x5 + x10; /* accumulate low bytes */
115 x10 = x10 & (x6 << 8); /* x10 & 0xFF00FF00 */
116 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes *
254 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
292 LDR x10, [ref], lx ; local
318 RSBS x11, dmin, x10, lsr #16; local
392 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
    [all...]
  /external/opencore/codecs_v2/video/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_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...]
  /dalvik/tools/dmtracedump/tests/filters/
testWaitingDisjointSingleThreadSameFilterDiffKeysTrace 13 0x10 C m ()
testWaitingNestedOverlapSingleThreadSameFilterDiffKeysTrace 13 0x10 Z m ()
testWaitingPartialOverlapSingleThreadSameFilterDiffKeysTrace 13 0x10 Z m ()
testWaitingDisjointCrossThreadDiffFilterDiffKeysTrace 13 0x10 D m ()
testWaitingDisjointCrossThreadSameFilterDiffKeysTrace 13 0x10 R m ()
testWaitingDisjointSingleThreadDiffFilterDiffKeysTrace 13 0x10 D m ()
testWaitingNestedOverlapCrossThreadDiffFilterDiffKeysTrace 13 0x10 E m ()
testWaitingNestedOverlapCrossThreadSameFilterDiffKeysTrace 13 0x10 S m ()
testWaitingNestedOverlapSingleThreadDiffFilterDiffKeysTrace 13 0x10 B m ()
testWaitingPartialOverlapCrossThreadDiffFilterDiffKeysTrace 13 0x10 B m ()
testWaitingPartialOverlapCrossThreadSameFilterDiffKeysTrace 13 0x10 B m ()
testWaitingPartialOverlapSingleThreadDiffFilterDiffKeysTrace 13 0x10 E m ()
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
RC2Engine.java 46 (byte)0x5, (byte)0xdf, (byte)0x29, (byte)0x10, (byte)0x67, (byte)0x6c, (byte)0xba, (byte)0xc9,
209 int x76, x54, x32, x10; local
214 x10 = ((in[inOff + 1] & 0xff) << 8) + (in[inOff + 0] & 0xff);
218 x10 = rotateWordLeft(x10 + (x32 & ~x76) + (x54 & x76) + workingKey[i ], 1);
219 x32 = rotateWordLeft(x32 + (x54 & ~x10) + (x76 & x10) + workingKey[i+1], 2);
220 x54 = rotateWordLeft(x54 + (x76 & ~x32) + (x10 & x32) + workingKey[i+2], 3);
221 x76 = rotateWordLeft(x76 + (x10 & ~x54) + (x32 & x54) + workingKey[i+3], 5);
224 x10 += workingKey[x76 & 63]
266 int x76, x54, x32, x10; local
    [all...]
  /dalvik/tests/079-phantom/
expected.txt 2 Created Bitmap one: 10x10 (100)
  /external/iptables/include/linux/netfilter_ipv4/
ipt_iprange.h 6 #define IPRANGE_SRC_INV 0x10 /* Negate the condition */
ipt_physdev.h 12 #define IPT_PHYSDEV_OP_ISOUT 0x10
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_physdev.h 12 #define IP6T_PHYSDEV_OP_ISOUT 0x10
  /external/kernel-headers/original/linux/netfilter/
xt_physdev.h 12 #define XT_PHYSDEV_OP_ISOUT 0x10
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_iprange.h 6 #define IPRANGE_SRC_INV 0x10 /* Negate the condition */
ipt_owner.h 9 #define IPT_OWNER_COMM 0x10
  /external/stlport/stlport/
complex 22 # define _STLP_OUTERMOST_HEADER_ID 0x10
27 #if (_STLP_OUTERMOST_HEADER_ID == 0x10)
40 #if (_STLP_OUTERMOST_HEADER_ID != 0x10) || defined (_STLP_IMPORT_VENDOR_STD)
48 #if (_STLP_OUTERMOST_HEADER_ID == 0x10 )

Completed in 175 milliseconds

1 2 3 4 5 6 7 8 91011>>