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

1 23 4

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/
build-hardy-toolchain.sh 627 local DST="$DIR/`basename $URL`"
629 download_file "$URL" "$DST"
    [all...]
  /external/iproute2/examples/
cbq.init-v0.7.3 811 SRC=${rule%%,*}; DST=${rule##*,}
816 DADDR=${DST%%:*}; DTEMP=${DST##*:}
817 [ "$DADDR" = "$DST" ] && DTEMP=""
841 u32_d="${DADDR:+match ip dst $DADDR} $u32_d"
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_blend.c 73 #define VEC4_COPY(DST, SRC) \
75 DST[0] = SRC[0]; \
76 DST[1] = SRC[1]; \
77 DST[2] = SRC[2]; \
78 DST[3] = SRC[3]; \
81 #define VEC4_SCALAR(DST, SRC) \
83 DST[0] = SRC; \
84 DST[1] = SRC; \
85 DST[2] = SRC; \
86 DST[3] = SRC;
155 ubyte src[4][4], dst[4][4], res[4][4]; local
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_blend.c 73 #define VEC4_COPY(DST, SRC) \
75 DST[0] = SRC[0]; \
76 DST[1] = SRC[1]; \
77 DST[2] = SRC[2]; \
78 DST[3] = SRC[3]; \
81 #define VEC4_SCALAR(DST, SRC) \
83 DST[0] = SRC; \
84 DST[1] = SRC; \
85 DST[2] = SRC; \
86 DST[3] = SRC;
155 ubyte src[4][4], dst[4][4], res[4][4]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_opcode_tmp.h 54 OP12(DST)
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_opcode_tmp.h 54 OP12(DST)
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
XfermodeActivity.java 81 // DST modes
96 drawRects(canvas, Mode.DST);
  /external/llvm/lib/Analysis/
RegionInfo.cpp 495 typedef DominanceFrontier::DomSetType DST;
497 DST *entrySuccs = &DF->find(entry)->second;
502 for (DST::iterator SI = entrySuccs->begin(), SE = entrySuccs->end();
510 DST *exitSuccs = &DF->find(exit)->second;
513 for (DST::iterator SI = entrySuccs->begin(), SE = entrySuccs->end();
524 for (DST::iterator SI = exitSuccs->begin(), SE = exitSuccs->end();
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/
osmesa.c 132 #define PACK_RGBA(DST, R, G, B, A) \
134 (DST)[osmesa->rInd] = R; \
135 (DST)[osmesa->gInd] = G; \
136 (DST)[osmesa->bInd] = B; \
137 (DST)[osmesa->aInd] = A; \
    [all...]
  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 132 #define PACK_RGBA(DST, R, G, B, A) \
134 (DST)[osmesa->rInd] = R; \
135 (DST)[osmesa->gInd] = G; \
136 (DST)[osmesa->bInd] = B; \
137 (DST)[osmesa->aInd] = A; \
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Xfermodes.java 36 // create a bitmap with a circle, used for the "dst" image
76 new PorterDuffXfermode(PorterDuff.Mode.DST),
93 "Clear", "Src", "Dst", "SrcOver",
142 // draw the src/dst example into our offscreen bitmap
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUtil.cpp 62 case DST:
63 ALOGV("Format:DST");
  /external/libpcap/
grammar.c 67 DST = 258,
171 #define DST 258
782 "$end", "error", "$undefined", "DST", "SRC", "HOST", "GATEWAY", "NET",
    [all...]
  /bionic/libc/arch-x86/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
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_lexer.l 198 DST{szf}{cc}{sat} { return_opcode( 1, BIN_OP, DST, 3); }
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
modexp512-x86_64.pl 82 #MULSTEP_512_ADD MACRO x7, x6, x5, x4, x3, x2, x1, x0, dst, src1, src2, add_src, tmp1, tmp2
87 my ($x, $DST, $SRC2, $ASRC, $OP, $TMP)=@_;
95 mov $X[0], $DST
115 #MULSTEP_512 MACRO x7, x6, x5, x4, x3, x2, x1, x0, dst, src2, src1_val, tmp
120 my ($x, $DST, $SRC2, $OP, $TMP)=@_;
127 mov $X[0], $DST
370 # Dst = Ah * B + Al
372 # Results in X3 X2 X1 X0 X7 X6 X5 X4 Dst[3:0]
425 lea (+$Reduce_Data_offset+$X1_offset+$STACK_DEPTH)(%rsp), %rdi # pX1 (Dst) 769 bits, 13 qwords
674 # Output: dst: Address of destination: [red_res_addr
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 463 void linkFunctionBody(Function *Dst, Function *Src);
653 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
671 if (!SrcStructTypesSet.count(DST) && TypeMap.DstStructTypesSet.count(DST))
672 TypeMap.addTypeMapping(DST, ST);
    [all...]
  /external/mesa3d/src/mesa/program/
program_lexer.l 198 DST{szf}{cc}{sat} { return_opcode( 1, BIN_OP, DST, 3); }
  /external/openssl/crypto/bn/asm/
modexp512-x86_64.pl 82 #MULSTEP_512_ADD MACRO x7, x6, x5, x4, x3, x2, x1, x0, dst, src1, src2, add_src, tmp1, tmp2
87 my ($x, $DST, $SRC2, $ASRC, $OP, $TMP)=@_;
95 mov $X[0], $DST
115 #MULSTEP_512 MACRO x7, x6, x5, x4, x3, x2, x1, x0, dst, src2, src1_val, tmp
120 my ($x, $DST, $SRC2, $OP, $TMP)=@_;
127 mov $X[0], $DST
370 # Dst = Ah * B + Al
372 # Results in X3 X2 X1 X0 X7 X6 X5 X4 Dst[3:0]
425 lea (+$Reduce_Data_offset+$X1_offset+$STACK_DEPTH)(%rsp), %rdi # pX1 (Dst) 769 bits, 13 qwords
674 # Output: dst: Address of destination: [red_res_addr
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
vec.h 275 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Integer
276 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Pointer
277 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Object
279 Copy the elements in SRC to the end of DST as if by memcpy. DST and
281 often will be. DST is assumed to have sufficient headroom
284 #define VEC_splice(T,DST,SRC) \
285 (VEC_OP(T,base,splice)(VEC_BASE(DST), VEC_BASE(SRC) VEC_CHECK_INFO))
288 void VEC_T_safe_splice (VEC(T,A) *&dst, VEC(T) *src); // Integer
289 void VEC_T_safe_splice (VEC(T,A) *&dst, VEC(T) *src); // Pointe
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
vec.h 275 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Integer
276 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Pointer
277 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Object
279 Copy the elements in SRC to the end of DST as if by memcpy. DST and
281 often will be. DST is assumed to have sufficient headroom
284 #define VEC_splice(T,DST,SRC) \
285 (VEC_OP(T,base,splice)(VEC_BASE(DST), VEC_BASE(SRC) VEC_CHECK_INFO))
288 void VEC_T_safe_splice (VEC(T,A) *&dst, VEC(T) *src); // Integer
289 void VEC_T_safe_splice (VEC(T,A) *&dst, VEC(T) *src); // Pointe
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
vec.h 275 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Integer
276 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Pointer
277 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Object
279 Copy the elements in SRC to the end of DST as if by memcpy. DST and
281 often will be. DST is assumed to have sufficient headroom
284 #define VEC_splice(T,DST,SRC) \
285 (VEC_OP(T,base,splice)(VEC_BASE(DST), VEC_BASE(SRC) VEC_CHECK_INFO))
288 void VEC_T_safe_splice (VEC(T,A) *&dst, VEC(T) *src); // Integer
289 void VEC_T_safe_splice (VEC(T,A) *&dst, VEC(T) *src); // Pointe
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
vec.h 275 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Integer
276 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Pointer
277 void VEC_T_splice (VEC(T) *dst, VEC(T) *src); // Object
279 Copy the elements in SRC to the end of DST as if by memcpy. DST and
281 often will be. DST is assumed to have sufficient headroom
284 #define VEC_splice(T,DST,SRC) \
285 (VEC_OP(T,base,splice)(VEC_BASE(DST), VEC_BASE(SRC) VEC_CHECK_INFO))
288 void VEC_T_safe_splice (VEC(T,A) *&dst, VEC(T) *src); // Integer
289 void VEC_T_safe_splice (VEC(T,A) *&dst, VEC(T) *src); // Pointe
    [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...]

Completed in 335 milliseconds

1 23 4