HomeSort by relevance Sort by last modified time
    Searched refs:d2 (Results 51 - 75 of 307) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
Hex.java 106 final byte d2 = DIGITS[c2];
107 if (d2 == -1) {
112 out[i] = (byte) (d1 << 4 | d2);
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
omxVCM4P10_PredictIntraChroma_8x8_s.S 53 VPADDL.U8 d2,d0
54 VPADDL.U16 d3,d2
55 VPADDL.U8 d2,d1
56 VPADDL.U16 d1,d2
57 VADD.I32 d2,d3,d1
58 VRSHR.U32 d2,d2,#3
66 VTBL.8 d0,{d2-d3},d5
67 VTBL.8 d4,{d1-d2},d6
83 VPADDL.U8 d2,d
    [all...]
omxVCM4P10_PredictIntra_4x4_s.S 38 VLD1.8 {d2[]},[r0]
44 VST1.32 {d2[0]},[r3]
109 VDUP.8 d2,d3[7]
110 VEXT.8 d4,d3,d2,#1
111 VEXT.8 d5,d3,d2,#2
115 VDUP.8 d2,d0[7]
116 VEXT.8 d3,d0,d2,#4
117 VEXT.8 d4,d0,d2,#5
118 VEXT.8 d5,d0,d2,#6
159 VLD1.8 {d2[7]},[r0],r
    [all...]
omxVCM4P10_InterpolateLuma_s.S 103 VRHADD.U8 d2,d2,d10
108 VST1.32 {d2[0]},[r2]
120 VRHADD.U8 d24,d24,d2
139 VRHADD.U8 d2,d2,d16
144 VST1.32 {d2[0]},[r2]
157 VRHADD.U8 d24,d24,d2
172 VST1.32 {d2[0]},[r2]
190 VRHADD.U8 d2,d2,d1
    [all...]
armVCM4P10_InterpolateLuma_HalfVer4x4_unsafe_s.S 35 VMLS.I16 d2,d16,d30
47 VADD.I16 d2,d2,d21
51 VQRSHRUN.S16 d2,q1,#5
omxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.S 22 VLD1.8 {d2[]},[r3]
66 VCGT.U8 d19,d2,d19
67 VCGT.U8 d12,d2,d12
69 VCGT.U8 d17,d2,d17
102 VLD1.8 {d2[]},[r8]
110 VLD1.8 {d2[]},[r8]
141 VLD1.8 {d2[]},[r8]
149 VLD1.8 {d2[]},[r3]
omxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.S 21 VLD1.8 {d2[]},[r3]!
50 VCGT.U8 d12,d2,d12
51 VCGT.U8 d19,d2,d19
54 VCGT.U8 d17,d2,d17
78 VLD1.8 {d2[]},[r3]
omxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.S 22 VLD1.8 {d2[]},[r3]
52 VCGT.U8 d19,d2,d19
53 VCGT.U8 d12,d2,d12
55 VCGT.U8 d17,d2,d17
99 VLD1.8 {d2[]},[r8]
  /external/libvpx/vp8/encoder/
dct.c 68 int a2, b2, c2, d2; local
101 d2 = a1 - d1;
106 d2 += d2<0;
111 op[12]= (d2+3) >> 3;
  /external/libffi/src/m68k/
sysv.S 55 move.l %d2,-(%sp)
85 move.l 16(%fp),%d2
91 btst #0,%d2
97 btst #1,%d2
104 btst #2,%d2
110 btst #3,%d2
116 btst #4,%d2
122 btst #5,%d2
128 btst #6,%d2
134 btst #7,%d2
    [all...]
  /external/libvpx/vp8/encoder/arm/neon/
fastfdct8x4_neon.asm 39 ;transpose d2, d4, d6, d8. Then, d2=ip[0], d4=ip[1], d6=ip[2], d8=ip[3]
41 vtrn.32 d2, d6
45 vtrn.16 d2, d4
50 vadd.s16 d10, d2, d8 ;ip[0]+ip[3]
53 vsub.s16 d13, d2, d8 ;ip[0]-ip[3]
66 vadd.s16 d24, d2, d3
67 vsub.s16 d25, d2, d3
85 vadd.s16 d2, d14, d16 ;op[0] = ((temp1 * x_c2 )>>16) + temp1
95 ;transpose d2, d4, d6, d8. Then, d2=ip[0], d4=ip[4], d6=ip[8], d8=ip[12
    [all...]
  /external/opencv/cv/src/
cvpgh.cpp 243 int d2 = (pt4.y - pt1.y) * dx - (pt2.x - pt1.x) * dy; local
259 d2 = cvRound( d2 * dist_coeff );
262 cross_flag = (d1 ^ d2) < 0;
265 d2 = CV_IABS( d2 );
271 if( d2 >= dist_dim )
272 d2 = dist_dim - 1;
276 if( d1 > d2 ) /* make d1 <= d2 */
    [all...]
  /external/clang/test/CodeGenCXX/
copy-assign-synthesis-1.cpp 70 X() : d(0.0), d1(1.1), d2(1.2), d3(1.3) {}
73 double d2; member in struct:X
76 printf("d = %f d1 = %f d2 = %f d3 = %f\n", d, d1,d2,d3);
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 475 * @param d2
477 * @return the larger of {@code d1} and {@code d2}.
479 public static double max(double d1, double d2) {
480 if (d1 > d2)
482 if (d1 < d2)
483 return d2;
485 if (d1 != d2)
489 && ((Double.doubleToLongBits(d1) & Double.doubleToLongBits(d2)) & 0x8000000000000000L) == 0)
569 * @param d2
571 * @return the smaller of {@code d1} and {@code d2}
    [all...]
  /external/grub/netboot/
linux-asm-string.h 34 int d0, d1, d2; local
45 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
105 : "=&c" (d0), "=&D" (d1), "=&S" (d2) \
109 int d0, d1, d2; local
130 int d0, d1, d2; local
136 : "=&c" (d0), "=&S" (d1), "=&D" (d2)
145 : "=&c" (d0), "=&S" (d1), "=&D" (d2)
258 int d0, d1, d2; local
272 :"=a" (__res), "=&S" (d0), "=&D" (d1), "=&c" (d2)
  /external/libvpx/vp8/encoder/arm/armv6/
vp8_subtract_armv6.asm 52 usub16 r4, r4, r5 ; [d2 | d0]
58 pkhtb r1, r5, r4, asr #16 ; [d3 | d2]
97 usub16 r6, r8, r9 ; [d2 | d0] (A)
104 pkhtb r9, r7, r6, asr #16 ; [d3 | d2] (A)
114 usub16 r6, r8, r9 ; [d2 | d0] (B)
120 pkhtb r9, r7, r6, asr #16 ; [d3 | d2] (B)
140 usub16 r6, r8, r9 ; [d2 | d0] (A)
147 pkhtb r9, r7, r6, asr #16 ; [d3 | d2] (A)
157 usub16 r6, r8, r9 ; [d2 | d0] (B)
163 pkhtb r9, r7, r6, asr #16 ; [d3 | d2] (B
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnTextureCoords.cpp 55 float t1 = sqrtf(9.0f * classification.d2 * classification.d2 - 12 * classification.d1 * classification.d3);
56 float ls = 3.0f * classification.d2 - t1;
58 float ms = 3.0f * classification.d2 + t1;
80 float t1 = sqrtf(4.0f * classification.d1 * classification.d3 - 3.0f * classification.d2 * classification.d2);
81 float ls = classification.d2 - t1;
83 float ms = classification.d2 + t1;
123 float lt = 3.0f * classification.d2;
  /external/clang/test/SemaCXX/
decl-expr-ambiguity.cpp 30 int(d2) __attribute__(());
dcl_init_aggr.cpp 107 struct D2 {
112 D2 d2; variable
114 B2 b2_2 = { 4, d2, 0 };
default-assignment-operator.cpp 68 D1 d1, d2; variable
71 d1 = d2;
warn-sign-compare.cpp 29 int d2 = 1 ? Foo<bool>::D : i; // expected-warning {{operands of ? are integers of different signs}} local
63 int d2 = 1 ? Foo<bool>::D : i; // expected-warning {{operands of ? are integers of different signs}} local
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_transform.c 100 i32 d1, d2, d3; local
121 d2 = data[14];
124 data[14] = (d2 * tmp2);
128 d2 = data[5];
131 data[2] = (d2 * tmp1);
135 d2 = data[3];
138 data[8] = (d2 * tmp1);
141 d2 = data[12];
144 data[7] = (d2 * tmp3);
149 d2 = data[11]
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/src/asm/ARMV7/
R4R8First_v7.s 37 VLD1.I32 {d0, d1, d2, d3}, [r0]!
42 VSUB.S32 d7, d2, d3 @ r2 = buf[4] - buf[6]@i2 = buf[5] - buf[7]@
43 VADD.S32 d6, d2, d3 @ r3 = buf[4] + buf[6]@i3 = buf[5] + buf[7]@
76 VADD.S32 d14, d2, d10
77 VSUB.S32 d18, d2, d10
122 VLD1.I32 {d0, d1, d2, d3}, [r0]
126 VSUB.S32 d7, d2, d3 @ r4 = buf[4] + buf[6]@ r5 = buf[5] + buf[7]@
127 VADD.S32 d6, d2, d3 @ r6 = buf[4] - buf[6]@ r7 = buf[5] - buf[7]@
  /system/vold/
main.cpp 114 DIR *d2; local
126 d2 = fdopendir(fd);
127 if(d2 == 0)
130 do_coldboot(d2, lvl + 1);
131 closedir(d2);
  /external/sonivox/arm-fm-22k/lib_src/
eas_midi.c 147 pMIDIStream->d2 = c;
241 pMIDIStream->status, pMIDIStream->d1, pMIDIStream->d2); */ }
243 VMStopNote(pEASData->pVoiceMgr, pSynth, channel, pMIDIStream->d1, pMIDIStream->d2);
247 if (pMIDIStream->d2)
250 pMIDIStream->status, pMIDIStream->d1, pMIDIStream->d2); */ }
253 VMStartNote(pEASData->pVoiceMgr, pSynth, channel, pMIDIStream->d1, pMIDIStream->d2);
258 pMIDIStream->status, pMIDIStream->d1, pMIDIStream->d2); */ }
260 VMStopNote(pEASData->pVoiceMgr, pSynth, channel, pMIDIStream->d1, pMIDIStream->d2);
266 pMIDIStream->status, pMIDIStream->d1, pMIDIStream->d2); */ }
271 pMIDIStream->status, pMIDIStream->d1, pMIDIStream->d2); */ }
    [all...]

Completed in 275 milliseconds

1 23 4 5 6 7 8 91011>>