/external/openssl/crypto/rc4/asm/ |
D | rc4-586.pl | 68 $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/chromium_org/third_party/boringssl/src/crypto/rc4/asm/ |
D | rc4-586.pl | 68 $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/chromium_org/mojo/nacl/generator/ |
D | interface_dsl.py | 65 def In(self, ty): argument 66 self.base_type = ty 67 self.param_type = ty 71 def InArray(self, ty, size): argument 72 self.base_type = ty 73 self.param_type = 'const ' + ty + '*' 79 def InStruct(self, ty): argument 80 self.base_type = ty 81 self.param_type = 'const struct ' + ty + '*' 86 def InOut(self, ty): argument [all …]
|
/external/llvm/include/llvm/Support/ |
D | CBindingWrapping.h | 19 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ argument 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) \ argument 29 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ 36 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \ argument 37 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
|
/external/valgrind/main/mpi/ |
D | libmpiwrap.c | 259 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/clang/include/clang/Sema/ |
D | LocInfoType.h | 38 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/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_build_util.cpp | 66 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 …]
|
D | nv50_ir_inlines.h | 49 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/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_build_util.cpp | 66 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 …]
|
D | nv50_ir_inlines.h | 49 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/llvm/test/CodeGen/ARM/ |
D | umulo-32.ll | 3 %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/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
D | lp_surface.c | 100 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/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_surface.c | 100 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/chromium_org/third_party/WebKit/Source/platform/transforms/ |
D | TranslateTransformOperation.h | 36 …static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, Operatio… in create() argument 38 return adoptRef(new TranslateTransformOperation(tx, ty, 0, type)); in create() 41 …static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, double t… in create() argument 43 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type)); in create() 78 TranslateTransformOperation(const Length& tx, const Length& ty, double tz, OperationType type) in TranslateTransformOperation() argument 80 , m_y(ty) in TranslateTransformOperation()
|
/external/clang/utils/ |
D | ClangDataFormat.py | 120 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/main/VEX/priv/ |
D | guest_arm64_toIR.c | 297 static IRExpr* loadLE ( IRType ty, IRExpr* addr ) in loadLE() argument 299 return IRExpr_Load(Iend_LE, ty, addr); in loadLE() 362 static IRTemp newTemp ( IRType ty ) in newTemp() argument 364 vassert(isPlausibleIRType(ty)); in newTemp() 365 return newIRTemp( irsb->tyenv, ty ); in newTemp() 403 static IROp mkAND ( IRType ty ) { in mkAND() argument 404 switch (ty) { in mkAND() 411 static IROp mkOR ( IRType ty ) { in mkOR() argument 412 switch (ty) { in mkOR() 419 static IROp mkXOR ( IRType ty ) { in mkXOR() argument [all …]
|
D | guest_ppc_toIR.c | 468 static IRTemp newTemp ( IRType ty ) in newTemp() argument 470 vassert(isPlausibleIRType(ty)); in newTemp() 471 return newIRTemp( irsb->tyenv, ty ); in newTemp() 589 static IRExpr* loadBE ( IRType ty, IRExpr* addr ) in loadBE() argument 591 return IRExpr_Load(Iend_BE, ty, addr); in loadBE() 931 static IROp mkSzOp ( IRType ty, IROp op8 ) in mkSzOp() argument 934 vassert(ty == Ity_I8 || ty == Ity_I16 || in mkSzOp() 935 ty == Ity_I32 || ty == Ity_I64); in mkSzOp() 941 adj = ty==Ity_I8 ? 0 : (ty==Ity_I16 ? 1 : (ty==Ity_I32 ? 2 : 3)); in mkSzOp() 946 static Addr64 mkSzAddr ( IRType ty, Addr64 addr ) in mkSzAddr() argument [all …]
|
D | guest_x86_toIR.c | 319 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/valgrind/main/VEX/ |
D | test_main.c | 331 sz = sizeofIRType(data->Iex.LDle.ty); 528 static IRType shadowType ( IRType ty ); 671 static IRType shadowType ( IRType ty ) in shadowType() argument 673 switch (ty) { in shadowType() 678 case Ity_I64: return ty; in shadowType() 682 default: ppIRType(ty); in shadowType() 689 static IRExpr* definedOfType ( IRType ty ) { in definedOfType() argument 690 switch (ty) { in definedOfType() 727 static IRAtom* assignNew ( MCEnv* mce, IRType ty, IRExpr* e ) { in assignNew() argument 728 IRTemp t = newIRTemp(mce->bb->tyenv, ty); in assignNew() [all …]
|
/external/mesa3d/src/mesa/math/ |
D | m_norm_tmp.h | 61 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/chromium_org/third_party/mesa/src/src/mesa/math/ |
D | m_norm_tmp.h | 61 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/main/coregrind/m_debuginfo/ |
D | tytypes.c | 752 TyEnt* ty; in ML_() local 758 ty = ML_(TyEnts__index_by_cuOff)(tyents, NULL, ty_cuOff); in ML_() 761 vg_assert(ty); in ML_() 762 vg_assert(ML_(TyEnt__is_type)(ty)); in ML_() 764 switch (ty->tag) { in ML_() 786 if (!ty->Te.TyStOrUn.isStruct) goto done; in ML_() 787 fieldRs = ty->Te.TyStOrUn.fieldRs; in ML_() 789 && (ty->Te.TyStOrUn.typeR == 0)) goto done; in ML_() 836 ty = ML_(TyEnts__index_by_cuOff)(tyents, NULL, in ML_() 837 ty->Te.TyStOrUn.typeR); in ML_() [all …]
|
/external/llvm/test/Object/ |
D | objdump-symbol-table.test | 12 COFF-i386: [ 0](sec 1)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .text 14 COFF-i386: [ 2](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .data 16 COFF-i386: [ 4](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000000 _main 17 COFF-i386: [ 5](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 0) 0x00000000 L_.str 18 COFF-i386: [ 6](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _puts 19 COFF-i386: [ 7](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _SomeOtherFunction
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | DOMMatrix.cpp | 52 DOMMatrix* DOMMatrix::translateSelf(double tx, double ty, double tz) in translateSelf() argument 54 if (!tx && !ty && !tz) in translateSelf() 61 m_matrix.translate(tx, ty); in translateSelf() 63 m_matrix.translate3d(tx, ty, tz); in translateSelf()
|
/external/skia/tools/ |
D | PictureResultsWriter.h | 33 virtual void tileMeta(int x, int y, int tx, int ty) = 0; 67 virtual void tileMeta(int x, int y, int tx, int ty) { in tileMeta() argument 69 fWriters[i]->tileMeta(x, y, tx, ty); in tileMeta() 118 virtual void tileMeta(int x, int y, int tx, int ty) { in tileMeta() argument 119 currentLine.appendf(": tile [%i,%i] out of [%i,%i]", x, y, tx, ty); in tileMeta() 196 virtual void tileMeta(int x, int y, int tx, int ty) { in tileMeta() argument 199 (*fCurrentTileSet)["ty"] = ty; in tileMeta()
|