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

1 2

  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
Makefile 13 DST = dist/httplib2-$(VERSION)
31 cp -r python2 $(DST)
32 cp -r python3 $(DST)
33 cp setup.py README MANIFEST.in CHANGELOG $(DST)
  /external/mesa3d/src/mesa/x86/
sse_xform4.S 36 #define DST(i) REGOFF(i * 4, EDI)
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) */
  /bionic/libc/arch-x86/atom/string/
ssse3-strlcat-atom.S 80 #define DST 4
81 #define SRC DST+8
86 mov DST(%esp), %edx
121 mov DST + 4(%esp), %edx
  /frameworks/base/graphics/java/android/graphics/
PorterDuff.java 28 DST (2),
86 case 2: return Mode.DST;
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUtil.h 40 DST,
  /external/libvpx/libvpx/vpx_dsp/
intrapred.c 17 #define DST(x, y) dst[(x) + (y) * stride]
21 static INLINE void d207_predictor(uint8_t *dst, ptrdiff_t stride, int bs,
27 dst[r * stride] = AVG2(left[r], left[r + 1]);
28 dst[(bs - 1) * stride] = left[bs - 1];
29 dst++;
33 dst[r * stride] = AVG3(left[r], left[r + 1], left[r + 2]);
34 dst[(bs - 2) * stride] = AVG3(left[bs - 2], left[bs - 1], left[bs - 1]);
35 dst[(bs - 1) * stride] = left[bs - 1];
36 dst++
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 320 SDValue DST;
322 DST = LowerSDIV64(Op, DAG);
324 DST = LowerSDIV32(Op, DAG);
327 DST = LowerSDIV24(Op, DAG);
329 DST = SDValue(Op.getNode(), 0);
331 return DST;
338 SDValue DST;
340 DST = LowerSREM64(Op, DAG);
342 DST = LowerSREM32(Op, DAG);
344 DST = LowerSREM16(Op, DAG)
    [all...]
  /external/llvm/include/llvm/Analysis/
RegionInfoImpl.h 574 typedef typename DomFrontierT::DomSetType DST;
576 DST *entrySuccs = &DF->find(entry)->second;
581 for (typename DST::iterator SI = entrySuccs->begin(),
591 DST *exitSuccs = &DF->find(exit)->second;
594 for (typename DST::iterator SI = entrySuccs->begin(), SE = entrySuccs->end();
605 for (typename DST::iterator SI = exitSuccs->begin(), SE = exitSuccs->end();
  /toolchain/binutils/binutils-2.25/include/opcode/
tic54x.h 51 OP_RND, /* rounded result dst accumulator, opposite of bit 8 */
52 OP_DST, /* dst accumulator in bit 8 */
101 #define DST(OP) ((OP)&0x100)
h8300.h 102 DST = 0x20000,
138 RD8 = DST | L_8 | REG,
139 RD16 = DST | L_16 | REG,
140 RD32 = DST | L_32 | REG,
149 RDP = DST | L_P | REG,
160 INDEXB16D = INDEXB | L_16 | DST,
161 INDEXW16D = INDEXW | L_16 | DST,
162 INDEXL16D = INDEXL | L_16 | DST,
167 INDEXB32D = INDEXB | L_32 | DST,
168 INDEXW32D = INDEXW | L_32 | DST,
    [all...]
  /external/libpcap/
tokdefs.h 48 DST = 258,
170 #define DST 258
grammar.c 363 DST = 258,
485 #define DST 258
861 /* Copy COUNT objects from SRC to DST. The source and destination do
865 # define YYCOPY(Dst, Src, Count) \
866 __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
868 # define YYCOPY(Dst, Src, Count) \
873 (Dst)[yyi] = (Src)[yyi]; \
981 "$end", "error", "$undefined", "DST", "SRC", "HOST", "GATEWAY", "NET",
    [all...]
  /external/opencv3/3rdparty/libwebp/dsp/
dec.c 62 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
68 static void TransformOne(const int16_t* in, uint8_t* dst) {
87 // an input in [-2048, 2047] interval. We then need to add a dst value
103 dst += BPS;
108 static void TransformTwo(const int16_t* in, uint8_t* dst, int do_two) {
109 TransformOne(in, dst);
111 TransformOne(in + 16, dst + 4);
115 static void TransformUV(const int16_t* in, uint8_t* dst) {
116 VP8Transform(in + 0 * 16, dst, 1)
    [all...]
enc.c 88 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
95 uint8_t* dst) {
127 static void ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst,
129 ITransformOne(ref, in, dst);
131 ITransformOne(ref + 4, in + 16, dst + 4);
227 #define DST(x, y) dst[(x) + (y) * BPS]
229 static WEBP_INLINE void Fill(uint8_t* dst, int value, int size) {
232 memset(dst + j * BPS, value, size);
236 static WEBP_INLINE void VerticalPred(uint8_t* dst,
    [all...]
  /external/webp/src/dsp/
dec.c 27 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
40 static void TransformOne(const int16_t* in, uint8_t* dst) {
59 // an input in [-2048, 2047] interval. We then need to add a dst value
75 dst += BPS;
80 static void TransformAC3(const int16_t* in, uint8_t* dst) {
95 static void TransformTwo(const int16_t* in, uint8_t* dst, int do_two) {
96 TransformOne(in, dst);
98 TransformOne(in + 16, dst + 4);
102 static void TransformUV(const int16_t* in, uint8_t* dst) {
    [all...]
enc.c 104 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
111 uint8_t* dst) {
143 static void ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst,
145 ITransformOne(ref, in, dst);
147 ITransformOne(ref + 4, in + 16, dst + 4);
221 static WEBP_INLINE void Fill(uint8_t* dst, int value, int size) {
224 memset(dst + j * BPS, value, size);
228 static WEBP_INLINE void VerticalPred(uint8_t* dst,
232 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size);
234 Fill(dst, 127, size)
    [all...]
dec_sse2.c 29 static void Transform(const int16_t* in, uint8_t* dst, int do_two) {
197 // Add inverse transform to 'dst' and store.
204 dst0 = _mm_loadl_epi64((__m128i*)(dst + 0 * BPS));
205 dst1 = _mm_loadl_epi64((__m128i*)(dst + 1 * BPS));
206 dst2 = _mm_loadl_epi64((__m128i*)(dst + 2 * BPS));
207 dst3 = _mm_loadl_epi64((__m128i*)(dst + 3 * BPS));
210 dst0 = _mm_cvtsi32_si128(WebPMemToUint32(dst + 0 * BPS));
211 dst1 = _mm_cvtsi32_si128(WebPMemToUint32(dst + 1 * BPS));
212 dst2 = _mm_cvtsi32_si128(WebPMemToUint32(dst + 2 * BPS));
213 dst3 = _mm_cvtsi32_si128(WebPMemToUint32(dst + 3 * BPS))
    [all...]
enc_sse2.c 56 static void ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst,
262 _mm_storel_epi64((__m128i*)&dst[0 * BPS], ref0);
263 _mm_storel_epi64((__m128i*)&dst[1 * BPS], ref1);
264 _mm_storel_epi64((__m128i*)&dst[2 * BPS], ref2);
265 _mm_storel_epi64((__m128i*)&dst[3 * BPS], ref3);
268 WebPUint32ToMem(&dst[0 * BPS], _mm_cvtsi128_si32(ref0));
269 WebPUint32ToMem(&dst[1 * BPS], _mm_cvtsi128_si32(ref1));
270 WebPUint32ToMem(&dst[2 * BPS], _mm_cvtsi128_si32(ref2));
271 WebPUint32ToMem(&dst[3 * BPS], _mm_cvtsi128_si32(ref3));
555 static WEBP_INLINE void Put8x8uv(uint8_t v, uint8_t* dst) {
    [all...]
  /external/llvm/lib/Linker/
IRMover.cpp 485 void linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src);
486 bool linkFunctionBody(Function &Dst, Function &Src);
487 void linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src);
488 bool linkGlobalValueBody(GlobalValue &Dst, GlobalValue &Src);
808 StructType *DST = DstM.getTypeByName(ST->getName().substr(0, DotPos));
809 if (!DST)
829 if (TypeMap.DstStructTypesSet.hasType(DST))
830 TypeMap.addTypeMapping(DST, ST);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_datetime.py 58 def dst(self, dt): member in class:FixedOffset
75 self.assertRaises(NotImplementedError, useless.dst, dt)
89 self.assertRaises(NotImplementedError, ne.dst, dt)
97 self.assertEqual(fo.dst(dt), timedelta(minutes=42))
1648 def dst(self, dt): return timedelta(0) member in class:TestDateTime.test_astimezone.Bogus
1654 def dst(self, dt): return None member in class:TestDateTime.test_astimezone.AlsoBogus
2004 dst = utcoffset variable in class:TZInfoBase.test_argument_passing.introspective
2063 def dst(self, dt): return None member in class:TZInfoBase.test_tzinfo_classes.C1
2074 def dst(self, dt): return timedelta(minutes=1439) member in class:TZInfoBase.test_tzinfo_classes.C3
2084 def dst(self, dt): return 7 member in class:TZInfoBase.test_tzinfo_classes.C4
2094 def dst(self, dt): return timedelta(hours=24) member in class:TZInfoBase.test_tzinfo_classes.C6
2102 def dst(self, dt): return timedelta(microseconds=-81) member in class:TZInfoBase.test_tzinfo_classes.C7
2726 def dst(self, dt): member in class:TestDateTimeTZ.test_tzinfo_timetuple.DST
2760 def dst(self, dt): member in class:TestDateTimeTZ.test_utctimetuple.DST
3047 def dst(self, dt): member in class:USTimeZone
3249 def dst(self, dt): return HOUR member in class:TestTimezoneConversions.test_bogus_dst.ok
3257 def dst(self, dt): return None member in class:TestTimezoneConversions.test_bogus_dst.notok
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_datetime.py 58 def dst(self, dt): member in class:FixedOffset
75 self.assertRaises(NotImplementedError, useless.dst, dt)
89 self.assertRaises(NotImplementedError, ne.dst, dt)
97 self.assertEqual(fo.dst(dt), timedelta(minutes=42))
1648 def dst(self, dt): return timedelta(0) member in class:TestDateTime.test_astimezone.Bogus
1654 def dst(self, dt): return None member in class:TestDateTime.test_astimezone.AlsoBogus
2004 dst = utcoffset variable in class:TZInfoBase.test_argument_passing.introspective
2063 def dst(self, dt): return None member in class:TZInfoBase.test_tzinfo_classes.C1
2074 def dst(self, dt): return timedelta(minutes=1439) member in class:TZInfoBase.test_tzinfo_classes.C3
2084 def dst(self, dt): return 7 member in class:TZInfoBase.test_tzinfo_classes.C4
2094 def dst(self, dt): return timedelta(hours=24) member in class:TZInfoBase.test_tzinfo_classes.C6
2102 def dst(self, dt): return timedelta(microseconds=-81) member in class:TZInfoBase.test_tzinfo_classes.C7
2726 def dst(self, dt): member in class:TestDateTimeTZ.test_tzinfo_timetuple.DST
2760 def dst(self, dt): member in class:TestDateTimeTZ.test_utctimetuple.DST
3047 def dst(self, dt): member in class:USTimeZone
3249 def dst(self, dt): return HOUR member in class:TestTimezoneConversions.test_bogus_dst.ok
3257 def dst(self, dt): return None member in class:TestTimezoneConversions.test_bogus_dst.notok
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_datetime.py 58 def dst(self, dt): member in class:FixedOffset
75 self.assertRaises(NotImplementedError, useless.dst, dt)
89 self.assertRaises(NotImplementedError, ne.dst, dt)
97 self.assertEqual(fo.dst(dt), timedelta(minutes=42))
1648 def dst(self, dt): return timedelta(0) member in class:TestDateTime.test_astimezone.Bogus
1654 def dst(self, dt): return None member in class:TestDateTime.test_astimezone.AlsoBogus
2004 dst = utcoffset variable in class:TZInfoBase.test_argument_passing.introspective
2063 def dst(self, dt): return None member in class:TZInfoBase.test_tzinfo_classes.C1
2074 def dst(self, dt): return timedelta(minutes=1439) member in class:TZInfoBase.test_tzinfo_classes.C3
2084 def dst(self, dt): return 7 member in class:TZInfoBase.test_tzinfo_classes.C4
2094 def dst(self, dt): return timedelta(hours=24) member in class:TZInfoBase.test_tzinfo_classes.C6
2102 def dst(self, dt): return timedelta(microseconds=-81) member in class:TZInfoBase.test_tzinfo_classes.C7
2726 def dst(self, dt): member in class:TestDateTimeTZ.test_tzinfo_timetuple.DST
2760 def dst(self, dt): member in class:TestDateTimeTZ.test_utctimetuple.DST
3047 def dst(self, dt): member in class:USTimeZone
3249 def dst(self, dt): return HOUR member in class:TestTimezoneConversions.test_bogus_dst.ok
3257 def dst(self, dt): return None member in class:TestTimezoneConversions.test_bogus_dst.notok
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_datetime.py 58 def dst(self, dt): member in class:FixedOffset
75 self.assertRaises(NotImplementedError, useless.dst, dt)
89 self.assertRaises(NotImplementedError, ne.dst, dt)
97 self.assertEqual(fo.dst(dt), timedelta(minutes=42))
1648 def dst(self, dt): return timedelta(0) member in class:TestDateTime.test_astimezone.Bogus
1654 def dst(self, dt): return None member in class:TestDateTime.test_astimezone.AlsoBogus
2004 dst = utcoffset variable in class:TZInfoBase.test_argument_passing.introspective
2063 def dst(self, dt): return None member in class:TZInfoBase.test_tzinfo_classes.C1
2074 def dst(self, dt): return timedelta(minutes=1439) member in class:TZInfoBase.test_tzinfo_classes.C3
2084 def dst(self, dt): return 7 member in class:TZInfoBase.test_tzinfo_classes.C4
2094 def dst(self, dt): return timedelta(hours=24) member in class:TZInfoBase.test_tzinfo_classes.C6
2102 def dst(self, dt): return timedelta(microseconds=-81) member in class:TZInfoBase.test_tzinfo_classes.C7
2726 def dst(self, dt): member in class:TestDateTimeTZ.test_tzinfo_timetuple.DST
2760 def dst(self, dt): member in class:TestDateTimeTZ.test_utctimetuple.DST
3047 def dst(self, dt): member in class:USTimeZone
3249 def dst(self, dt): return HOUR member in class:TestTimezoneConversions.test_bogus_dst.ok
3257 def dst(self, dt): return None member in class:TestTimezoneConversions.test_bogus_dst.notok
    [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 

Completed in 1851 milliseconds

1 2