Searched refs:ty (Results 1 - 25 of 247) sorted by relevance

12345678910

/external/llvm/include/llvm/Support/
H A DCBindingWrapping.h20 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
21 inline ty *unwrap(ref P) { \
22 return reinterpret_cast<ty*>(P); \
25 inline ref wrap(const ty *P) { \
26 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
29 #define DEFINE_ISA_CONVERSION_FUNCTIONS(ty, ref) \
30 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
37 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \
38 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
/external/skia/include/c/
H A Dsk_matrix.h21 /** Set the matrix to translate by (tx, ty). */
22 void sk_matrix_set_translate(sk_matrix_t*, float tx, float ty);
27 void sk_matrix_pre_translate(sk_matrix_t*, float tx, float ty);
32 void sk_matrix_post_translate(sk_matrix_t*, float tx, float ty);
/external/clang/include/clang/Sema/
H A DLocInfoType.h38 LocInfoType(QualType ty, TypeSourceInfo *TInfo) argument
39 : Type((TypeClass)LocInfo, ty, ty->isDependentType(),
40 ty->isInstantiationDependentType(),
41 ty->isVariablyModifiedType(),
42 ty->containsUnexpandedParameterPack()),
/external/boringssl/src/crypto/rc4/asm/
H A Drc4-586.pl68 $ty="edx";
78 &mov ($ty,&DWP(0,$dat,$yy,4));
80 &mov (&DWP(0,$dat,$xx,4),$ty);
81 &add ($ty,$tx);
83 &and ($ty,0xff);
90 &$func ($out,&DWP(0,$dat,$ty,4));
111 &mov ($ty,&DWP(0,$dat,$yy,4));
114 &mov (&DWP(0,$dat,$XX[0],4),$ty);
115 &add (&LB($ty),&LB($tx));
121 &pinsrw ($mm,&DWP(0,$dat,$ty,
[all...]
/external/skia/include/core/
H A DSkRSXform.h21 static SkRSXform Make(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
22 SkRSXform xform = { scos, ssin, tx, ty };
27 * Initialize a new xform based on the scale, rotation (in radians), final tx,ty location
32 static SkRSXform MakeFromRadians(SkScalar scale, SkScalar radians, SkScalar tx, SkScalar ty, argument
36 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay);
53 void set(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
57 fTy = ty;
/external/clang/test/CXX/class.access/class.friend/
H A Dp3-cxx0x.cpp39 template <typename S> friend class B<S>::ty; // expected-warning {{dependent nested name specifier 'B<S>::' for friend class declaration is not supported}}
42 template<typename T> class B { typedef int ty; }; typedef in class:B
45 class ty { class in class:B
/external/skia/src/opts/
H A DSkMatrix_opts.h20 SkScalar ty = m.getTranslateY(); local
23 dst->fY = src->fY + ty;
27 Sk4s trans4(tx, ty, tx, ty);
48 SkScalar ty = m.getTranslateY(); local
53 dst->fY = src->fY * sy + ty;
57 Sk4s trans4(tx, ty, tx, ty);
79 SkScalar ty = m.getTranslateY(); local
86 src->fX * ky + src->fY * sy + ty);
[all...]
/external/jsoncpp/test/
H A Dpyjsontestrunner.py19 ty = type(value)
20 if ty is types.DictType:
27 elif ty is types.ListType:
31 elif ty is types.StringType:
33 elif ty is types.IntType:
35 elif ty is types.FloatType:
/external/clang/utils/
H A DClangDataFormat.py120 ty = value.GetType()
121 if ty.IsPointerType() or ty.IsReferenceType():
122 return ty.GetPointeeType().GetName()
123 return ty.GetName()
130 ty = value.GetType()
131 if not (ty.IsPointerType() or
132 ty.IsReferenceType() or
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_surface.c100 unsigned tx, ty, tw, th; local
104 &tx, &ty, &tw, &th);
111 tx + x, ty + y);
118 unsigned tx, ty, tw, th; local
122 adjust_to_tile_bounds(dstx, dsty, width, height, &tx, &ty, &tw, &th);
125 boolean contained_y = ty + y >= dsty &&
126 ty + y + TILE_SIZE <= dsty + height ?
146 tx + x, ty + y);
/external/skia/src/image/
H A DSkImageShader.h16 static SkShader* Create(const SkImage*, TileMode tx, TileMode ty, const SkMatrix* localMatrix);
38 SkImageShader(const SkImage*, TileMode tx, TileMode ty, const SkMatrix* localMatrix);
H A DSkImageShader.cpp24 const TileMode ty = (TileMode)buffer.readUInt(); local
31 return new SkImageShader(img, tx, ty, &matrix);
54 SkShader* SkImageShader::Create(const SkImage* image, TileMode tx, TileMode ty, argument
59 return new SkImageShader(image, tx, ty, localMatrix);
/external/cblas/src/
H A Dcblas_cgerc.c27 float *y=(float *)Y, *yy=(float *)Y, *ty, *st; local
46 ty = y;
65 y = ty;
H A Dcblas_zgerc.c27 double *y=(double *)Y, *yy=(double *)Y, *ty, *st; local
46 ty = y;
65 y = ty;
/external/valgrind/mpi/
H A Dlibmpiwrap.c259 static void showTy ( FILE* f, MPI_Datatype ty )
261 if (ty == MPI_DATATYPE_NULL) fprintf(f,"DATATYPE_NULL");
262 else if (ty == MPI_BYTE) fprintf(f,"BYTE");
263 else if (ty == MPI_PACKED) fprintf(f,"PACKED");
264 else if (ty == MPI_CHAR) fprintf(f,"CHAR");
265 else if (ty == MPI_SHORT) fprintf(f,"SHORT");
266 else if (ty == MPI_INT) fprintf(f,"INT");
267 else if (ty == MPI_LONG) fprintf(f,"LONG");
268 else if (ty == MPI_FLOAT) fprintf(f,"FLOAT");
269 else if (ty
1125 PMPI_Get_count(MPI_Status* status, MPI_Datatype ty, int* count ) argument
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_inlines.h49 static inline unsigned int typeSizeof(DataType ty) argument
51 switch (ty) {
92 static inline bool isFloatType(DataType ty) argument
94 return (ty >= TYPE_F16 && ty <= TYPE_F64);
97 static inline bool isSignedIntType(DataType ty) argument
99 return (ty == TYPE_S8 || ty == TYPE_S16 || ty == TYPE_S32);
102 static inline bool isSignedType(DataType ty) argument
117 intTypeToSigned(DataType ty) argument
[all...]
H A Dnv50_ir_build_util.cpp66 BuildUtil::mkOp1(operation op, DataType ty, Value *dst, Value *src) argument
68 Instruction *insn = new_Instruction(func, op, ty);
78 BuildUtil::mkOp2(operation op, DataType ty, Value *dst, argument
81 Instruction *insn = new_Instruction(func, op, ty);
92 BuildUtil::mkOp3(operation op, DataType ty, Value *dst, argument
95 Instruction *insn = new_Instruction(func, op, ty);
107 BuildUtil::mkLoad(DataType ty, Symbol *mem, Value *ptr) argument
109 Instruction *insn = new_Instruction(func, OP_LOAD, ty);
122 BuildUtil::mkStore(operation op, DataType ty, Symbol *mem, Value *ptr, argument
125 Instruction *insn = new_Instruction(func, op, ty);
137 mkFetch(Value *dst, DataType ty, DataFile file, int32_t offset, Value *attrRel, Value *primRel) argument
155 DataType ty = TYPE_F32; local
171 mkMov(Value *dst, Value *src, DataType ty) argument
223 mkCmp(operation op, CondCode cc, DataType ty, Value *dst, Value *src0, Value *src1, Value *src2) argument
411 mkSymbol(DataFile file, int8_t fileIndex, DataType ty, uint32_t baseAddr) argument
[all...]
/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
H A DImagePanel.java118 int ty = getHeight()/2 - th/2;
119 gg.drawImage(image, tx, ty, tx + tw, ty + th, x, y, x + width, y + width, null);
124 int ty = 0;
125 gg.drawImage(image, tx, ty, tx + tw, ty + th, x, y, x + width, y + width, null);
/external/clang/lib/CodeGen/
H A DAddress.h88 ConstantAddress getBitCast(llvm::Type *ty) const {
89 return ConstantAddress(llvm::ConstantExpr::getBitCast(getPointer(), ty),
93 ConstantAddress getElementBitCast(llvm::Type *ty) const {
94 return getBitCast(ty->getPointerTo(getAddressSpace()));
/external/lldb/test/
H A DMakefile33 python $(PROJ_SRC_DIR)/dosep.ty -o "--executable $(ToolDir)/lldb -q -s lldb-test-traces -u CXXFLAGS -u CFLAGS -C $(subst ccache,,$(CC))"
/external/mesa3d/src/mesa/math/
H A Dm_norm_tmp.h61 GLfloat tx, ty, tz; local
65 ty = ux * m4 + uy * m5 + uz * m6;
69 GLdouble len = tx*tx + ty*ty + tz*tz;
73 out[i][1] = ty * scale;
90 GLfloat tx, ty, tz; local
94 ty = ux * m4 + uy * m5 + uz * m6;
100 out[i][1] = ty * len;
128 GLfloat tx, ty, tz; local
132 ty
155 GLfloat tx, ty, tz; local
[all...]
/external/clang/test/OpenMP/
H A Dtarget_codegen.cpp36 template<typename tx, typename ty>
39 ty Y;
/external/llvm/include/llvm/IR/
H A DConstant.h47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
48 : User(ty, vty, Ops, NumOps) {}
/external/valgrind/VEX/useful/
H A Dtest_main.c352 sz = sizeofIRType(data->Iex.LDle.ty);
549 static IRType shadowType ( IRType ty );
692 static IRType shadowType ( IRType ty )
694 switch (ty) {
699 case Ity_I64: return ty;
703 default: ppIRType(ty);
710 static IRExpr* definedOfType ( IRType ty ) {
711 switch (ty) {
748 static IRAtom* assignNew ( MCEnv* mce, IRType ty, IRExpr* e ) { argument
749 IRTemp t = newIRTemp(mce->bb->tyenv, ty);
980 IRType ty; local
1063 IRType ty; local
1177 IRType ty; local
1208 IRType ty, tyS; local
1260 IRType ty = descr->elemTy; local
1345 IRType ty; local
2050 expr2vbits_LDle_WRK( MCEnv* mce, IRType ty, IRAtom* addr, UInt bias ) argument
2111 expr2vbits_LDle( MCEnv* mce, IRType ty, IRAtom* addr, UInt bias ) argument
2137 IRType ty; local
2217 IRType ty, tyH; local
2251 IRType ty, tyAddr; local
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DParticleDepositionHeightMap.java131 int tx, ty;
202 ty = (sy + dy[(jj + m) % 8]) % (size);
206 if (tempBuffer[tx][ty] + 1.0f < tempBuffer[sx][sy]) {
207 tempBuffer[tx][ty] += 1.0f;
210 sy = ty;
245 ty = maxy;
249 for (y = sy; y <= ty; y++) {

Completed in 1525 milliseconds

12345678910