/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | InstrumentingClassWriter.java | 34 protected String getCommonSuperClass(final String type1, final String type2) { in getCommonSuperClass() argument 37 ClassNode info2 = typeInfo(type2); in getCommonSuperClass() 39 if (typeImplements(type2, info2, type1)) { in getCommonSuperClass() 43 if (typeImplements(type1, info1, type2)) { in getCommonSuperClass() 44 return type2; in getCommonSuperClass() 50 if (typeImplements(type1, info1, type2)) { in getCommonSuperClass() 51 return type2; in getCommonSuperClass() 57 String b2 = typeAncestors(type2, info2); in getCommonSuperClass()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_quad.c | 180 struct lp_type type2; in lp_bld_quad_twiddle() local 186 type2 = lp_dst_type; in lp_bld_quad_twiddle() 187 type2.width = (lp_dst_type.width * lp_dst_type.length) / 2; in lp_bld_quad_twiddle() 188 type2.length = 2; in lp_bld_quad_twiddle() 189 type2.floating = 0; in lp_bld_quad_twiddle() 191 type2_ref = lp_build_vec_type(gallivm, type2); in lp_bld_quad_twiddle() 200 dst[i + 0] = lp_build_interleave2(gallivm, type2, src0, src1, 0); in lp_bld_quad_twiddle() 201 dst[i + 1] = lp_build_interleave2(gallivm, type2, src0, src1, 1); in lp_bld_quad_twiddle()
|
D | lp_bld_swizzle.c | 196 struct lp_type type2; in lp_build_swizzle_scalar_aos() local 204 type2 = type; in lp_build_swizzle_scalar_aos() 205 type2.floating = FALSE; in lp_build_swizzle_scalar_aos() 206 type2.width *= 2; in lp_build_swizzle_scalar_aos() 207 type2.length /= 2; in lp_build_swizzle_scalar_aos() 209 a = LLVMBuildBitCast(builder, a, lp_build_vec_type(bld->gallivm, type2), ""); in lp_build_swizzle_scalar_aos() 232 …tmp = LLVMBuildShl(builder, a, lp_build_const_int_vec(bld->gallivm, type2, shift * type.width), ""… in lp_build_swizzle_scalar_aos() 234 …tmp = LLVMBuildLShr(builder, a, lp_build_const_int_vec(bld->gallivm, type2, -shift * type.width), … in lp_build_swizzle_scalar_aos()
|
/external/clang/test/SemaCXX/ |
D | constexpr-many-arguments.cpp | 10 struct type2 struct 13 constexpr type2(T a00, T a01, T a02, T a03, T a04, T a05, T a06, T a07, T a08, T a09, in type2() argument 25 constexpr type3(type2 a0, type2 a1) : my_data{a0, a1} {} in type3() argument 26 type2 my_data[2];
|
/external/v8/src/compiler/ |
D | types.cc | 629 Type Type::Intersect(Type type1, Type type2, Zone* zone) { in Intersect() argument 631 if (type1.IsBitset() && type2.IsBitset()) { in Intersect() 632 return NewBitset(type1.AsBitset() & type2.AsBitset()); in Intersect() 636 if (type1.IsNone() || type2.IsAny()) return type1; // Shortcut. in Intersect() 637 if (type2.IsNone() || type1.IsAny()) return type2; // Shortcut. in Intersect() 640 if (type1.Is(type2)) return type1; in Intersect() 641 if (type2.Is(type1)) return type2; in Intersect() 647 if (type1.Is(type2)) { in Intersect() 648 type2 = Any(); in Intersect() 649 } else if (type2.Is(type1)) { in Intersect() [all …]
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | vpx_convolve8_neon_asm.h | 22 DECLARE_FILTER(horiz, type2); 23 DECLARE_FILTER(avg_horiz, type2); 26 DECLARE_FILTER(vert, type2); 27 DECLARE_FILTER(avg_vert, type2);
|
/external/google-breakpad/src/third_party/lss/ |
D | linux_syscall_support.h | 1683 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 1684 type LSS_NAME(name)(type1 arg1,type2 arg2) { \ 1690 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument 1691 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \ 1698 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument 1699 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \ 1706 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ argument 1708 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \ 1724 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ argument 1726 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \ [all …]
|
/external/curl/lib/vauth/ |
D | ntlm.c | 275 unsigned char *type2 = NULL; in Curl_auth_decode_ntlm_type2_message() local 289 result = Curl_base64_decode(type2msg, &type2, &type2_len); in Curl_auth_decode_ntlm_type2_message() 295 if(!type2) { in Curl_auth_decode_ntlm_type2_message() 303 (memcmp(type2, NTLMSSP_SIGNATURE, 8) != 0) || in Curl_auth_decode_ntlm_type2_message() 304 (memcmp(type2 + 8, type2_marker, sizeof(type2_marker)) != 0)) { in Curl_auth_decode_ntlm_type2_message() 306 free(type2); in Curl_auth_decode_ntlm_type2_message() 311 ntlm->flags = Curl_read32_le(&type2[20]); in Curl_auth_decode_ntlm_type2_message() 312 memcpy(ntlm->nonce, &type2[24], 8); in Curl_auth_decode_ntlm_type2_message() 315 result = ntlm_decode_type2_target(data, type2, type2_len, ntlm); in Curl_auth_decode_ntlm_type2_message() 317 free(type2); in Curl_auth_decode_ntlm_type2_message() [all …]
|
D | ntlm_sspi.c | 198 unsigned char *type2 = NULL; in Curl_auth_decode_ntlm_type2_message() local 207 result = Curl_base64_decode(type2msg, &type2, &type2_len); in Curl_auth_decode_ntlm_type2_message() 213 if(!type2) { in Curl_auth_decode_ntlm_type2_message() 220 ntlm->input_token = type2; in Curl_auth_decode_ntlm_type2_message()
|
/external/clang/test/Sema/ |
D | c11-typedef-redef.c | 8 typedef int type2; in f() typedef 9 typedef type type2; in f() typedef 10 typedef int type2; in f() typedef
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | config.hpp | 56 # define ASIO_MOVE_CAST2(type1, type2) static_cast<type1, type2&&> argument 75 # define ASIO_MOVE_CAST2(type1, type2) static_cast<const type1, type2&> argument
|
/external/clang/test/SemaTemplate/ |
D | instantiate-exception-spec-cxx11.cpp | 86 base(const typename T::type2 &); 95 struct type2 { struct 102 typedef type2<types> type2; typedef
|
D | ms-if-exists.cpp | 14 typedef Nontemplate::value type2; in __if_exists() typedef 27 X<int>::type2 i2; // expected-error{{no type named 'type2' in 'X<int>'}}
|
D | canonical-expr-type.cpp | 43 typedef T __attribute__((ext_vector_type(M))) type2; typedef 47 void f0(type2);
|
D | instantiate-declref.cpp | 58 typedef struct { T z; } type2; in foo() typedef 59 type2 t3 = { s1.x }; in foo()
|
/external/libxml2/ |
D | xmlregexp.c | 2254 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { in xmlFACompareAtomTypes() argument 2262 if ((type2 == XML_REGEXP_EPSILON) || in xmlFACompareAtomTypes() 2263 (type2 == XML_REGEXP_CHARVAL) || in xmlFACompareAtomTypes() 2264 (type2 == XML_REGEXP_RANGES) || in xmlFACompareAtomTypes() 2265 (type2 == XML_REGEXP_SUBREG) || in xmlFACompareAtomTypes() 2266 (type2 == XML_REGEXP_STRING) || in xmlFACompareAtomTypes() 2267 (type2 == XML_REGEXP_ANYCHAR)) in xmlFACompareAtomTypes() 2270 if (type1 == type2) return(1); in xmlFACompareAtomTypes() 2273 if (type1 > type2) { in xmlFACompareAtomTypes() 2275 type1 = type2; in xmlFACompareAtomTypes() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_memory.cpp | 58 const Instruction* type2) { in AreLayoutCompatibleStructs() argument 62 if (type2->opcode() != SpvOpTypeStruct) { in AreLayoutCompatibleStructs() 66 if (!HaveLayoutCompatibleMembers(_, type1, type2)) return false; in AreLayoutCompatibleStructs() 68 return HaveSameLayoutDecorations(_, type1, type2); in AreLayoutCompatibleStructs() 75 const Instruction* type2) { in HaveLayoutCompatibleMembers() argument 78 assert(type2->opcode() == SpvOpTypeStruct && in HaveLayoutCompatibleMembers() 81 const auto& type2_operands = type2->operands(); in HaveLayoutCompatibleMembers() 87 if (type1->word(operand) != type2->word(operand)) { in HaveLayoutCompatibleMembers() 89 auto def2 = _.FindDef(type2->word(operand)); in HaveLayoutCompatibleMembers() 102 const Instruction* type2) { in HaveSameLayoutDecorations() argument [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | ldst-zero.ll | 20 %type2 = getelementptr inbounds %struct.tree_common, %struct.tree_common* %t, i64 0, i32 1 21 store i8* %type, i8** %type2, align 8 53 %type2 = getelementptr inbounds %struct.tree_common, %struct.tree_common* %t, i64 0, i32 1 54 store i8* %type, i8** %type2, align 8
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | remove_duplicates_pass.cpp | 188 const analysis::Type* type2 = in AreTypesEqual() local 190 if (type1 && type2 && *type1 == *type2) return true; in AreTypesEqual()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | remove_duplicates_pass.cpp | 188 const analysis::Type* type2 = in AreTypesEqual() local 190 if (type1 && type2 && *type1 == *type2) return true; in AreTypesEqual()
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/ |
D | CommonSuperclassTest.java | 102 String type1, String type2) { in superclassTest() argument 105 TypeProto type2Proto = classPath.getClass(type2); in superclassTest() 111 public void superclassTest(String commonSuperclass, String type1, String type2) { in superclassTest() argument 112 superclassTest(oldClassPath, commonSuperclass, type1, type2); in superclassTest() 113 superclassTest(newClassPath, commonSuperclass, type1, type2); in superclassTest()
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_memory.cpp | 58 const Instruction* type2) { in AreLayoutCompatibleStructs() argument 62 if (type2->opcode() != SpvOpTypeStruct) { in AreLayoutCompatibleStructs() 66 if (!HaveLayoutCompatibleMembers(_, type1, type2)) return false; in AreLayoutCompatibleStructs() 68 return HaveSameLayoutDecorations(_, type1, type2); in AreLayoutCompatibleStructs() 75 const Instruction* type2) { in HaveLayoutCompatibleMembers() argument 78 assert(type2->opcode() == SpvOpTypeStruct && in HaveLayoutCompatibleMembers() 81 const auto& type2_operands = type2->operands(); in HaveLayoutCompatibleMembers() 87 if (type1->word(operand) != type2->word(operand)) { in HaveLayoutCompatibleMembers() 89 auto def2 = _.FindDef(type2->word(operand)); in HaveLayoutCompatibleMembers() 102 const Instruction* type2) { in HaveSameLayoutDecorations() argument [all …]
|
/external/clang/test/CodeGenCXX/ |
D | mangle-subst.cpp | 90 typedef int type2; typedef 94 typename X<T>::template Y<T>::type f(typename X<T>::template Y<T>::type2) { return 0; } in f() argument
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LowerTypeTests/ |
D | function-ext.ll | 25 %p = call i1 @llvm.type.test(i8* %ptr, metadata !"type2") 38 !1 = !{i64 0, !"type2"}
|
/external/llvm/test/Transforms/LoopVectorize/ |
D | lcssa-crash.ll | 6 %type1 = type { %type2 } 7 %type2 = type { [0 x i8*], i8**, i32, i32, i32 }
|