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

1234567891011

/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/AST/
H A DLocInfoType.h38 LocInfoType(QualType ty, TypeSourceInfo *TInfo) argument
39 : Type((TypeClass)LocInfo, ty, ty->isDependentType(),
40 ty->isInstantiationDependentType(), ty->isVariablyModifiedType(),
41 ty->containsUnexpandedParameterPack()),
/external/skia/include/core/
H A DSkRSXform.h22 static SkRSXform Make(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
23 SkRSXform xform = { scos, ssin, tx, ty };
28 * Initialize a new xform based on the scale, rotation (in radians), final tx,ty location
33 static SkRSXform MakeFromRadians(SkScalar scale, SkScalar radians, SkScalar tx, SkScalar ty, argument
37 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay);
54 void set(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
58 fTy = ty;
/external/skia/src/core/
H A DSkMatrixPriv.h24 SkScalar ty = mx.getTranslateY(); local
25 Sk4f trans(tx, ty, tx, ty);
51 const SkScalar ty = mx.getTranslateY(); local
52 Sk2s trans(tx, ty);
77 const SkScalar ty = mx.getTranslateY(); local
80 t += ty;
82 b += ty;
87 t = sy * t + ty;
89 b = sy * b + ty;
[all...]
/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/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.h17 static sk_sp<SkShader> Make(sk_sp<SkImage>, TileMode tx, TileMode ty,
29 SkImageShader(sk_sp<SkImage>, TileMode tx, TileMode ty, const SkMatrix* localMatrix);
/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/boringssl/src/crypto/rc4/
H A Drc4.c69 uint32_t ty = d[y]; local
70 d[x] = ty;
72 out[i] = d[(tx + ty) & 0xff] ^ in[i];
/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/swiftshader/third_party/LLVM/include/llvm-c/
H A DExecutionEngine.h135 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
136 inline ty *unwrap(ref P) { \
137 return reinterpret_cast<ty*>(P); \
140 inline ref wrap(const ty *P) { \
141 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
/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/skia/gm/
H A Dpathmaskcache.cpp89 SkScalar ty = drawPathSet(path, SkMatrix::I()); variable
90 canvas->translate(0, ty);
95 ty = drawPathSet(path, s);
96 canvas->translate(0.f, ty);
101 ty = drawPathSet(path, r);
102 canvas->translate(0.f, ty);
/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/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 Dnvptx_target_codegen.cpp13 template<typename tx, typename ty>
16 ty Y;
H A Dnvptx_target_firstprivate_codegen.cpp11 template<typename tx, typename ty>
14 ty Y;
H A Dtarget_codegen.cpp74 template<typename tx, typename ty>
77 ty Y;
H A Dtarget_firstprivate_codegen.cpp23 template<typename tx, typename ty>
26 ty Y;

Completed in 1878 milliseconds

1234567891011