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

123456789

/external/llvm/include/llvm/Support/
H A DCBindingWrapping.h19 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
20 inline ty *unwrap(ref P) { \
21 return reinterpret_cast<ty*>(P); \
24 inline ref wrap(const ty *P) { \
25 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
28 #define DEFINE_ISA_CONVERSION_FUNCTIONS(ty, ref) \
29 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
36 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \
37 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
/external/skia/include/c/
H A Dsk_matrix.h20 void sk_matrix_set_translate(sk_matrix_t*, float tx, float ty);
21 void sk_matrix_pre_translate(sk_matrix_t*, float tx, float ty);
22 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/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/libvncserver/x11vnc/
H A Dsslcmds.h45 extern void sslGenCert(char *ty, char *nm);
/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/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;
H A Dcblas_cher2.c33 *yy=(float *)Y, *tx, *ty, *stx, *sty; local
79 ty = y;
121 y=ty;
H A Dcblas_chpr2.c33 *yy=(float *)Y, *tx, *ty, *stx, *sty; local
78 ty = y;
119 y=ty;
H A Dcblas_zher2.c33 *yy=(double *)Y, *tx, *ty, *stx, *sty; local
79 ty = y;
121 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
1124 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/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/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/skia/src/core/
H A DSkBitmapProcShader.h19 SkBitmapProcShader(const SkBitmap& src, TileMode tx, TileMode ty,
28 static bool CanDo(const SkBitmap&, TileMode tx, TileMode ty);
/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++) {
/external/libvncserver/libvncserver/
H A Dzrleencodetemplate.c102 int ty; local
103 for (ty = y; ty < y+h; ty += rfbZRLETileHeight) {
105 if (th > y+h-ty) th = y+h-ty;
110 GET_IMAGE_INTO_BUF(tx,ty,tw,th,buf);
/external/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp105 bool isImplicitStrong(QualType ty) { argument
106 if (isa<AttributedType>(ty.getTypePtr()))
108 return ty.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong;
/external/valgrind/VEX/priv/
H A Dhost_tilegx_isel.c402 IRType ty = typeOfIRExpr(env->type_env, e); local
404 vassert(ty == Ity_I64);
453 IRType ty = typeOfIRExpr(env->type_env, e); local
454 vassert(ty == Ity_I8 || ty == Ity_I16 || ty == Ity_I32 ||
455 ty == Ity_I1 || ty == Ity_I64);
465 TILEGXAMode *am_addr = iselWordExpr_AMode(env, e->Iex.Load.addr, ty);
471 addInstr(env, TILEGXInstr_Load(toUChar(sizeofIRType(ty)),
1145 IRType ty = typeOfIRExpr(env->type_env, e); local
1212 IRType ty = typeOfIRExpr(env->type_env, e); local
1427 IRType ty = typeOfIRExpr(env->type_env, stmt->Ist.Put.data); local
1444 IRType ty = typeOfIRTemp(env->type_env, tmp); local
1513 IRType ty = typeOfIRExpr(env->type_env, cas->dataLo); local
[all...]

Completed in 772 milliseconds

123456789