Home
last modified time | relevance | path

Searched refs:ty (Results 1 – 25 of 398) sorted by relevance

12345678910>>...16

/external/boringssl/src/crypto/rc4/asm/
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,4),$j);
[all …]
/external/llvm/include/llvm/Support/
DCBindingWrapping.h20 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ argument
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) \ argument
30 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
37 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \ argument
38 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
/external/valgrind/mpi/
Dlibmpiwrap.c259 static void showTy ( FILE* f, MPI_Datatype ty ) in showTy() argument
261 if (ty == MPI_DATATYPE_NULL) fprintf(f,"DATATYPE_NULL"); in showTy()
262 else if (ty == MPI_BYTE) fprintf(f,"BYTE"); in showTy()
263 else if (ty == MPI_PACKED) fprintf(f,"PACKED"); in showTy()
264 else if (ty == MPI_CHAR) fprintf(f,"CHAR"); in showTy()
265 else if (ty == MPI_SHORT) fprintf(f,"SHORT"); in showTy()
266 else if (ty == MPI_INT) fprintf(f,"INT"); in showTy()
267 else if (ty == MPI_LONG) fprintf(f,"LONG"); in showTy()
268 else if (ty == MPI_FLOAT) fprintf(f,"FLOAT"); in showTy()
269 else if (ty == MPI_DOUBLE) fprintf(f,"DOUBLE"); in showTy()
[all …]
/external/skia/src/opts/
DSkMatrix_opts.h20 SkScalar ty = m.getTranslateY(); in matrix_translate() local
23 dst->fY = src->fY + ty; in matrix_translate()
27 Sk4s trans4(tx, ty, tx, ty); in matrix_translate()
48 SkScalar ty = m.getTranslateY(); in matrix_scale_translate() local
53 dst->fY = src->fY * sy + ty; in matrix_scale_translate()
57 Sk4s trans4(tx, ty, tx, ty); in matrix_scale_translate()
79 SkScalar ty = m.getTranslateY(); in matrix_affine() local
86 src->fX * ky + src->fY * sy + ty); in matrix_affine()
90 Sk4s trans4(tx, ty, tx, ty); in matrix_affine()
/external/opencv3/modules/cudaobjdetect/src/cuda/
Dlbp.cu57 …__device__ __forceinline__ int operator() (const int* integral, int ty, int fh, int fw, int& shift… in operator ()()
61 anchors[0] = integral[ty]; in operator ()()
62 anchors[1] = integral[ty + fw]; in operator ()()
64 anchors[2] = integral[ty + fw * 2]; in operator ()()
66 anchors[2] -= integral[ty + fw * 3]; in operator ()()
68 ty += fh; in operator ()()
69 anchors[3] = integral[ty]; in operator ()()
70 anchors[4] = integral[ty + fw]; in operator ()()
72 anchors[5] = integral[ty + fw * 2]; in operator ()()
74 anchors[5] -= integral[ty + fw * 3]; in operator ()()
[all …]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_build_util.cpp66 BuildUtil::mkOp1(operation op, DataType ty, Value *dst, Value *src) in mkOp1() argument
68 Instruction *insn = new_Instruction(func, op, ty); in mkOp1()
78 BuildUtil::mkOp2(operation op, DataType ty, Value *dst, in mkOp2() argument
81 Instruction *insn = new_Instruction(func, op, ty); in mkOp2()
92 BuildUtil::mkOp3(operation op, DataType ty, Value *dst, in mkOp3() argument
95 Instruction *insn = new_Instruction(func, op, ty); in mkOp3()
107 BuildUtil::mkLoad(DataType ty, Symbol *mem, Value *ptr) in mkLoad() argument
109 Instruction *insn = new_Instruction(func, OP_LOAD, ty); in mkLoad()
122 BuildUtil::mkStore(operation op, DataType ty, Symbol *mem, Value *ptr, in mkStore() argument
125 Instruction *insn = new_Instruction(func, op, ty); in mkStore()
[all …]
Dnv50_ir_inlines.h49 static inline unsigned int typeSizeof(DataType ty) in typeSizeof() argument
51 switch (ty) { in typeSizeof()
92 static inline bool isFloatType(DataType ty) in isFloatType() argument
94 return (ty >= TYPE_F16 && ty <= TYPE_F64); in isFloatType()
97 static inline bool isSignedIntType(DataType ty) in isSignedIntType() argument
99 return (ty == TYPE_S8 || ty == TYPE_S16 || ty == TYPE_S32); in isSignedIntType()
102 static inline bool isSignedType(DataType ty) in isSignedType() argument
104 switch (ty) { in isSignedType()
117 static inline DataType intTypeToSigned(DataType ty) in intTypeToSigned() argument
119 switch (ty) { in intTypeToSigned()
[all …]
/external/clang/include/clang/Sema/
DLocInfoType.h38 LocInfoType(QualType ty, TypeSourceInfo *TInfo) in LocInfoType() argument
39 : Type((TypeClass)LocInfo, ty, ty->isDependentType(), in LocInfoType()
40 ty->isInstantiationDependentType(), in LocInfoType()
41 ty->isVariablyModifiedType(), in LocInfoType()
42 ty->containsUnexpandedParameterPack()), in LocInfoType()
/external/llvm/test/CodeGen/ARM/
Dumulo-32.ll3 %umul.ty = type { i32, i1 }
8 %tmp0 = tail call %umul.ty @llvm.umul.with.overflow.i32(i32 %a, i32 37)
9 %tmp1 = extractvalue %umul.ty %tmp0, 0
14 declare %umul.ty @llvm.umul.with.overflow.i32(i32, i32) nounwind readnone
32 %5 = call %umul.ty @llvm.umul.with.overflow.i32(i32 %4, i32 8)
33 %6 = extractvalue %umul.ty %5, 1
34 %7 = extractvalue %umul.ty %5, 0
/external/skia/include/core/
DSkRSXform.h21 static SkRSXform Make(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { in Make()
22 SkRSXform xform = { scos, ssin, tx, ty }; in Make()
32 static SkRSXform MakeFromRadians(SkScalar scale, SkScalar radians, SkScalar tx, SkScalar ty, in MakeFromRadians()
36 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay); in MakeFromRadians()
53 void set(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { in set()
57 fTy = ty; in set()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_surface.c100 unsigned tx, ty, tw, th; in lp_resource_copy() local
104 &tx, &ty, &tw, &th); in lp_resource_copy()
111 tx + x, ty + y); in lp_resource_copy()
118 unsigned tx, ty, tw, th; in lp_resource_copy() local
122 adjust_to_tile_bounds(dstx, dsty, width, height, &tx, &ty, &tw, &th); in lp_resource_copy()
125 boolean contained_y = ty + y >= dsty && in lp_resource_copy()
126 ty + y + TILE_SIZE <= dsty + height ? in lp_resource_copy()
146 tx + x, ty + y); in lp_resource_copy()
/external/clang/utils/
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/valgrind/VEX/useful/
Dtest_main.c352 sz = sizeofIRType(data->Iex.LDle.ty);
549 static IRType shadowType ( IRType ty );
692 static IRType shadowType ( IRType ty ) in shadowType() argument
694 switch (ty) { in shadowType()
699 case Ity_I64: return ty; in shadowType()
703 default: ppIRType(ty); in shadowType()
710 static IRExpr* definedOfType ( IRType ty ) { in definedOfType() argument
711 switch (ty) { in definedOfType()
748 static IRAtom* assignNew ( MCEnv* mce, IRType ty, IRExpr* e ) { in assignNew() argument
749 IRTemp t = newIRTemp(mce->bb->tyenv, ty); in assignNew()
[all …]
/external/opencv3/modules/photo/src/cuda/
Dnlm.cu91 for(float ty = -block_radius; ty <= block_radius; ++ty) in nlm_kernel() local
94 … value_type bv = saturate_cast<value_type>(src(i + y + ty, j + x + tx)); in nlm_kernel()
95 … value_type av = saturate_cast<value_type>(src(i + ty, j + tx)); in nlm_kernel()
115 for(float ty = -block_radius; ty <= block_radius; ++ty) in nlm_kernel() local
118 … value_type bv = saturate_cast<value_type>(b.at(i + y + ty, j + x + tx, src)); in nlm_kernel()
119 … value_type av = saturate_cast<value_type>(b.at(i + ty, j + tx, src)); in nlm_kernel()
319 for (int ty = -block_radius; ty <= block_radius; ++ty) in initSums_BruteForce() local
321 int dist = calcDist(src(ay + ty, ax + tx), src(by + ty, bx + tx)); in initSums_BruteForce()
329 for (int ty = -block_radius; ty <= block_radius; ++ty) in initSums_BruteForce() local
332 int dist = calcDist(src(ay + ty, ax + tx), src(by + ty, bx + tx)); in initSums_BruteForce()
[all …]
/external/jsoncpp/test/
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/mesa3d/src/mesa/math/
Dm_norm_tmp.h61 GLfloat tx, ty, tz; in TAG() local
65 ty = ux * m4 + uy * m5 + uz * m6; in TAG()
69 GLdouble len = tx*tx + ty*ty + tz*tz; in TAG()
73 out[i][1] = ty * scale; in TAG()
90 GLfloat tx, ty, tz; in TAG() local
94 ty = ux * m4 + uy * m5 + uz * m6; in TAG()
100 out[i][1] = ty * len; in TAG()
128 GLfloat tx, ty, tz; in TAG() local
132 ty = uy * m5 ; in TAG()
136 GLdouble len = tx*tx + ty*ty + tz*tz; in TAG()
[all …]
/external/valgrind/coregrind/m_debuginfo/
Dtytypes.c751 TyEnt* ty; in ML_() local
756 ty = ML_(TyEnts__index_by_cuOff)(tyents, NULL, ty_cuOff); in ML_()
759 vg_assert(ty); in ML_()
760 vg_assert(ML_(TyEnt__is_type)(ty)); in ML_()
762 switch (ty->tag) { in ML_()
784 if (!ty->Te.TyStOrUn.isStruct) goto done; in ML_()
785 fieldRs = ty->Te.TyStOrUn.fieldRs; in ML_()
787 && (ty->Te.TyStOrUn.typeR == 0)) goto done; in ML_()
834 ty = ML_(TyEnts__index_by_cuOff)(tyents, NULL, in ML_()
835 ty->Te.TyStOrUn.typeR); in ML_()
[all …]
/external/valgrind/VEX/priv/
Dguest_ppc_toIR.c526 static IRTemp newTemp ( IRType ty ) in newTemp() argument
528 vassert(isPlausibleIRType(ty)); in newTemp()
529 return newIRTemp( irsb->tyenv, ty ); in newTemp()
658 static IRExpr* load ( IRType ty, IRExpr* addr ) in load() argument
661 return IRExpr_Load(Iend_BE, ty, addr); in load()
663 return IRExpr_Load(Iend_LE, ty, addr); in load()
1012 static IROp mkSzOp ( IRType ty, IROp op8 ) in mkSzOp() argument
1015 vassert(ty == Ity_I8 || ty == Ity_I16 || in mkSzOp()
1016 ty == Ity_I32 || ty == Ity_I64); in mkSzOp()
1022 adj = ty==Ity_I8 ? 0 : (ty==Ity_I16 ? 1 : (ty==Ity_I32 ? 2 : 3)); in mkSzOp()
[all …]
Dhost_tilegx_isel.c403 IRType ty = typeOfIRExpr(env->type_env, e); in iselWordExpr_AMode_wrk() local
405 vassert(ty == Ity_I64); in iselWordExpr_AMode_wrk()
454 IRType ty = typeOfIRExpr(env->type_env, e); in iselWordExpr_R_wrk() local
455 vassert(ty == Ity_I8 || ty == Ity_I16 || ty == Ity_I32 || in iselWordExpr_R_wrk()
456 ty == Ity_I1 || ty == Ity_I64); in iselWordExpr_R_wrk()
466 TILEGXAMode *am_addr = iselWordExpr_AMode(env, e->Iex.Load.addr, ty); in iselWordExpr_R_wrk()
472 addInstr(env, TILEGXInstr_Load(toUChar(sizeofIRType(ty)), in iselWordExpr_R_wrk()
600 if (ty == Ity_I8 || ty == Ity_I16) in iselWordExpr_R_wrk()
602 if (ty == Ity_I64) { in iselWordExpr_R_wrk()
1023 if (ty == Ity_I8 || ty == Ity_I16 || ty == Ity_I32 in iselWordExpr_R_wrk()
[all …]
Dguest_x86_toIR.c319 static IRTemp newTemp ( IRType ty ) in newTemp() argument
321 vassert(isPlausibleIRType(ty)); in newTemp()
322 return newIRTemp( irsb->tyenv, ty ); in newTemp()
550 IRType ty = typeOfIRExpr(irsb->tyenv, e); in putIReg() local
552 case 1: vassert(ty == Ity_I8); break; in putIReg()
553 case 2: vassert(ty == Ity_I16); break; in putIReg()
554 case 4: vassert(ty == Ity_I32); break; in putIReg()
685 static IRExpr* mkU ( IRType ty, UInt i ) in mkU() argument
687 if (ty == Ity_I8) return mkU8(i); in mkU()
688 if (ty == Ity_I16) return mkU16(i); in mkU()
[all …]
/external/vulkan-validation-layers/
Dvulkan.py37 def __init__(self, ty, name): argument
38 self.ty = ty
43 idx = self.ty.find("[")
47 return "%s %s%s" % (self.ty[:idx], self.name, self.ty[idx:])
49 return "%s %s" % (self.ty, self.name)
53 return self.ty.count("*") + self.ty.count("[")
60 deref = self.ty if level else ""
74 return "Param(\"%s\", \"%s\")" % (self.ty, self.name)
94 return ", ".join([param.ty for param in self.params])
120 idx = param.ty.find("[")
[all …]
/external/opencv3/modules/cudalegacy/src/cuda/
Dbm_fast.cu115 for (int ty = -block_radius; ty <= block_radius; ++ty) in initSums_BruteForce() local
117 int dist = calcDist(I0(ay + ty, ax + tx), I1(by + ty, bx + tx)); in initSums_BruteForce()
145 for (int ty = -block_radius; ty <= block_radius; ++ty) in shiftRight_FirstRow() local
146 col_sum += calcDist(I0(ay + ty, ax), I1(by + ty, bx)); in shiftRight_FirstRow()
/external/icu/icu4c/source/data/locales/
Ddsb.txt1174 dn{"tyźeń"}
1176 "-1"{"slědny tyźeń"}
1177 "0"{"ten tyźeń"}
1178 "1"{"pśiducy tyźeń"}
1182 few{"za {0} tyźenje"}
1183 one{"za {0} tyźeń"}
1184 other{"za {0} tyźenjow"}
1185 two{"za {0} tyźenja"}
1188 few{"pśed {0} tyźenjami"}
1189 one{"pśed {0} tyźenjom"}
[all …]
/external/opencv3/modules/photo/src/
Dfast_nlmeans_denoising_invoker.hpp271 for (int ty = -template_window_half_size_; ty <= template_window_half_size_; ty++) in calcDistSumsForFirstElementInRow() local
275 border_size_ + i + ty, border_size_ + j + tx, in calcDistSumsForFirstElementInRow()
276 border_size_ + start_y + ty, border_size_ + start_x + tx); in calcDistSumsForFirstElementInRow()
309 for (int ty = -template_window_half_size_; ty <= template_window_half_size_; ty++) in calcDistSumsForElementInFirstRow() local
310 …t_sums[new_last_col_num][y][x] += D::template calcDist<T>(extended_src_, ay + ty, ax, by + ty, bx); in calcDistSumsForElementInFirstRow()
/external/llvm/bindings/ocaml/llvm/
Dllvm.mli54 (** The kind of an [lltype], the result of [classify_type ty]. See the
474 (** [classify_type ty] returns the {!TypeKind.t} corresponding to the type [ty].
478 (** [type_is_sized ty] returns whether the type has a size or not.
483 (** [type_context ty] returns the {!llcontext} corresponding to the type [ty].
487 (** [dump_type ty] prints the .ll representation of the type [ty] to standard
491 (** [string_of_lltype ty] returns a string describing the type [ty]. *)
521 (** [integer_bitwidth c ty] returns the number of bits in the integer type [ty]
587 (** [struct_name ty] returns the name of the named structure type [ty],
596 (** [struct_set_body ty elts ispacked] sets the body of the named struct [ty]
616 (** [array_type ty n] returns the array type containing [n] elements of type
[all …]

12345678910>>...16