/external/mesa3d/src/mesa/x86/ |
H A D | sse_xform4.S | 36 #define DST(i) REGOFF(i * 4, EDI) define 97 MOVAPS( XMM0, DST(0) ) /* ->D(3) | ->D(2) | ->D(1) | ->D(0) */ 169 MOVAPS( XMM4, DST(0) ) /* ->D(3) | ->D(2) | ->D(1) | ->D(0) */ 172 MOVSS( XMM4, DST(3) ) /* ->D(3) */
|
/external/libvpx/libvpx/vpx_dsp/ |
H A D | intrapred.c | 17 #define DST(x, y) dst[(x) + (y)*stride] macro 290 DST(0, 0) = AVG2(I, J); 291 DST(2, 0) = DST(0, 1) = AVG2(J, K); 292 DST(2, 1) = DST(0, 2) = AVG2(K, L); 293 DST(1, 0) = AVG3(I, J, K); 294 DST(3, 0) = DST(1, 1) = AVG3(J, K, L); 295 DST( [all...] |
/external/llvm/include/llvm/Analysis/ |
H A D | RegionInfoImpl.h | 573 typedef typename DomFrontierT::DomSetType DST; typedef 575 DST *entrySuccs = &DF->find(entry)->second; 580 for (typename DST::iterator SI = entrySuccs->begin(), 590 DST *exitSuccs = &DF->find(exit)->second; 593 for (typename DST::iterator SI = entrySuccs->begin(), SE = entrySuccs->end(); 604 for (typename DST::iterator SI = exitSuccs->begin(), SE = exitSuccs->end();
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
H A D | RegionInfo.cpp | 479 typedef DominanceFrontier::DomSetType DST; typedef 481 DST *entrySuccs = &DF->find(entry)->second; 486 for (DST::iterator SI = entrySuccs->begin(), SE = entrySuccs->end(); 494 DST *exitSuccs = &DF->find(exit)->second; 497 for (DST::iterator SI = entrySuccs->begin(), SE = entrySuccs->end(); 508 for (DST::iterator SI = exitSuccs->begin(), SE = exitSuccs->end();
|
/external/libpcap/ |
H A D | grammar.h | 48 DST = 258, enumerator in enum:yytokentype 170 #define DST 258 macro
|
H A D | grammar.c | 351 DST = 258, enumerator in enum:yytokentype 473 #define DST 258 macro 848 /* Copy COUNT objects from SRC to DST. The source and destination do 968 "$end", "error", "$undefined", "DST", "SRC", "HOST", "GATEWAY", "NET",
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
H A D | MBlazeISelLowering.cpp | 306 unsigned DST = R.createVirtualRegister(MBlaze::GPRRegisterClass); local 308 BuildMI(loop, dl, TII->get(MBlaze::PHI), DST) 319 BuildMI(loop, dl, TII->get(MBlaze::ADD), NDST).addReg(DST).addReg(DST); 321 BuildMI(loop, dl, TII->get(MBlaze::SRA), NDST).addReg(DST); 323 BuildMI(loop, dl, TII->get(MBlaze::SRL), NDST).addReg(DST);
|
/external/webp/src/dsp/ |
H A D | dec.c | 162 #define DST(x, y) dst[(x) + (y) * BPS] macro 289 DST(0, 3) = AVG3(J, K, L); 290 DST(1, 3) = DST(0, 2) = AVG3(I, J, K); 291 DST(2, 3) = DST(1, 2) = DST(0, 1) = AVG3(X, I, J); 292 DST(3, 3) = DST(2, 2) = DST( 398 #undef DST macro [all...] |
H A D | enc.c | 337 #define DST(x, y) dst[(x) + (y) * BPS] macro 383 DST(0, 3) = AVG3(J, K, L); 384 DST(0, 2) = DST(1, 3) = AVG3(I, J, K); 385 DST(0, 1) = DST(1, 2) = DST(2, 3) = AVG3(X, I, J); 386 DST(0, 0) = DST(1, 1) = DST( 504 #undef DST macro [all...] |
H A D | enc_msa.c | 257 #define DST(x, y) dst[(x) + (y) * BPS] macro 341 DST(0, 0) = DST(1, 2) = AVG2(X, A); 342 DST(1, 0) = DST(2, 2) = AVG2(A, B); 343 DST(2, 0) = DST(3, 2) = AVG2(B, C); 344 DST(3, 0) = AVG2(C, D); 345 DST(0, 3) = AVG3(K, J, I); 346 DST( 426 #undef DST macro [all...] |
H A D | dec_sse2.c | 885 #define DST(x, y) dst[(x) + (y) * BPS] macro 949 DST(0, 2) = AVG3(J, I, X); 950 DST(0, 3) = AVG3(K, J, I); 974 DST(3, 2) = (extra_out >> 0) & 0xff; 975 DST(3, 3) = (extra_out >> 8) & 0xff; 1001 #undef DST macro
|
H A D | enc_sse2.c | 700 #define DST(x, y) dst[(x) + (y) * BPS] macro 785 DST(0, 2) = AVG3(J, I, X); 786 DST(0, 3) = AVG3(K, J, I); 811 DST(3, 2) = (extra_out >> 0) & 0xff; 812 DST(3, 3) = (extra_out >> 8) & 0xff; 836 DST(0, 0) = AVG2(I, J); 837 DST(2, 0) = DST(0, 1) = AVG2(J, K); 838 DST(2, 1) = DST( 882 #undef DST macro [all...] |
/external/llvm/lib/Linker/ |
H A D | IRMover.cpp | 705 StructType *DST = DstM.getTypeByName(ST->getName().substr(0, DotPos)); local 706 if (!DST) 726 if (TypeMap.DstStructTypesSet.hasType(DST)) 727 TypeMap.addTypeMapping(DST, ST);
|
/external/python/cpython2/Lib/test/ |
H A D | test_datetime.py | 2722 # DST flag. 2723 class DST(tzinfo): class in function:TestDateTimeTZ.test_tzinfo_timetuple 2733 d = cls(1, 1, 1, 10, 20, 30, 40, tzinfo=DST(dstvalue)) 2746 self.assertRaises(TypeError, cls(1, 1, 1, tzinfo=DST("x")).timetuple) 2749 self.assertEqual(cls(1,1,1, tzinfo=DST(1439)).timetuple().tm_isdst, 1) 2750 self.assertEqual(cls(1,1,1, tzinfo=DST(-1439)).timetuple().tm_isdst, 1) 2753 self.assertRaises(ValueError, cls(1,1,1, tzinfo=DST(1440)).timetuple) 2754 self.assertRaises(ValueError, cls(1,1,1, tzinfo=DST(-1440)).timetuple) 2757 class DST(tzinfo): class in function:TestDateTimeTZ.test_utctimetuple 2766 # This can't work: DST did [all...] |
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | APFloat.h | 339 /// Write out a hexadecimal representation of the floating point value to DST, 1026 unsigned int convertToHexString(char *DST, unsigned int HexDigits, argument 1028 return getIEEE().convertToHexString(DST, HexDigits, UpperCase, RM);
|
/external/robolectric/v1/lib/main/ |
H A D | android.jar | META-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ... |
/external/robolectric/v3/runtime/ |
H A D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.3_r2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.4_r1-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |