/third_party/openssl/include/openssl/ |
D | objects.h | 76 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument 78 static int nm##_cmp(type1 const *, type2 const *); \ 79 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) 81 # define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument 82 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp) 83 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument 84 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) 113 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument 117 type2 const *b = b_; \ 120 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \ [all …]
|
/third_party/boost/libs/multi_index/test/ |
D | test_set_ops.cpp | 24 struct type2 struct 38 bool operator()(type1,type2)const{return false;} in operator ()() argument 39 bool operator()(type2,type1)const{return false;} in operator ()() 47 std::size_t operator()(type2)const{return 0;} in operator ()() 53 bool operator()(type1,type2)const{return true;} in operator ()() 54 bool operator()(type2,type1)const{return true;} in operator ()() 105 BOOST_TEST(c.find(type2())==c.begin()); in test_set_ops() 106 BOOST_TEST(c.count(type2())==1); in test_set_ops() 107 BOOST_TEST(c.lower_bound(type2())==c.begin()); in test_set_ops() 108 BOOST_TEST(c.upper_bound(type2())==c.end()); in test_set_ops() [all …]
|
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/ |
D | unified-signatures.test.ts | 179 type2: 'string', 320 type2: 'string', 342 type2: 'string', 404 type2: 'string | boolean', 426 type2: '[string, boolean]', 447 type2: 'T', 467 type2: 'T', 487 type2: 'T', 509 type2: 'string', 531 type2: 'number', [all …]
|
/third_party/boost/libs/utility/test/ |
D | compressed_pair_final_test.cpp | 19 struct type2 final { struct 29 struct is_final<type2> argument 45 test<type1, type2>(); in main() 46 test<type2, type1>(); in main() 47 test<type2, type2>(); in main()
|
/third_party/boost/boost/vmd/detail/ |
D | equal_type.hpp | 13 #define BOOST_VMD_DETAIL_EQUAL_TYPE(type1,type2) \ argument 14 BOOST_VMD_DETAIL_MATCH_SINGLE_IDENTIFIER(type1,type2) \ 17 #define BOOST_VMD_DETAIL_EQUAL_TYPE_D(d,type1,type2) \ argument 18 BOOST_VMD_DETAIL_MATCH_SINGLE_IDENTIFIER(type1,type2) \
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/ |
D | audio-resampler.c | 329 #define MAKE_COEFF_LINEAR_INT_FUNC(type,type2,prec) \ argument 335 icoeff[1] = icoeff[3] = (type)(((type2)1 << prec)-1) - x; \ 350 #define MAKE_COEFF_CUBIC_INT_FUNC(type,type2,prec) \ argument 354 type2 one = ((type2)1 << prec) - 1; \ 355 type2 x = ((gint64) num << prec) / denom; \ 356 type2 x2 = (x * x) >> prec; \ 357 type2 x3 = (x2 * x) >> prec; \ 379 #define INTERPOLATE_INT_LINEAR_FUNC(type,type2,prec,limit) \ argument 386 type2 tmp, c0 = ic[0]; \ 391 tmp = ((type2)c[0][i] - (type2)c[1][i]) * c0 + \ [all …]
|
/third_party/boost/boost/geometry/algorithms/detail/overlay/ |
D | turn_info.hpp | 119 inline bool combination(operation_type type1, operation_type type2) const in combination() 121 return has12(type1, type2) || has12(type2, type1); in combination() 142 inline bool has12(operation_type type1, operation_type type2) const in has12() 145 && this->operations[1].operation == type2 in has12()
|
/third_party/boost/boost/fusion/sequence/ |
D | convert.hpp | 14 #define BOOST_FUSION_WA_GCC34(type1, type2) \ argument 15 boost::lazy_disable_if<boost::is_const<Sequence>, type1, type2> 17 #define BOOST_FUSION_WA_GCC34(type1, type2) type1, type2 argument
|
/third_party/curl/lib/vauth/ |
D | ntlm_sspi.c | 200 const struct bufref *type2, in Curl_auth_decode_ntlm_type2_message() argument 208 if(!Curl_bufref_len(type2)) { in Curl_auth_decode_ntlm_type2_message() 214 ntlm->input_token = malloc(Curl_bufref_len(type2) + 1); in Curl_auth_decode_ntlm_type2_message() 217 memcpy(ntlm->input_token, Curl_bufref_ptr(type2), Curl_bufref_len(type2)); in Curl_auth_decode_ntlm_type2_message() 218 ntlm->input_token[Curl_bufref_len(type2)] = '\0'; in Curl_auth_decode_ntlm_type2_message() 219 ntlm->input_token_len = Curl_bufref_len(type2); in Curl_auth_decode_ntlm_type2_message()
|
D | ntlm.c | 170 const unsigned char *type2 = Curl_bufref_ptr(type2ref); in ntlm_decode_type2_target() local 178 target_info_len = Curl_read16_le(&type2[40]); in ntlm_decode_type2_target() 179 target_info_offset = Curl_read32_le(&type2[44]); in ntlm_decode_type2_target() 194 memcpy(ntlm->target_info, &type2[target_info_offset], target_info_len); in ntlm_decode_type2_target() 271 const unsigned char *type2 = Curl_bufref_ptr(type2ref); in Curl_auth_decode_ntlm_type2_message() local 286 (memcmp(type2, NTLMSSP_SIGNATURE, 8) != 0) || in Curl_auth_decode_ntlm_type2_message() 287 (memcmp(type2 + 8, type2_marker, sizeof(type2_marker)) != 0)) { in Curl_auth_decode_ntlm_type2_message() 293 ntlm->flags = Curl_read32_le(&type2[20]); in Curl_auth_decode_ntlm_type2_message() 294 memcpy(ntlm->nonce, &type2[24], 8); in Curl_auth_decode_ntlm_type2_message()
|
/third_party/boost/libs/geometry/doc/src/docutils/tools/implementation_status/ |
D | implementation_status.cpp | 211 int type2 = -1) in report_library() argument 217 if (type2 != -1) in report_library() 219 out << "_" << geometry_string(type2); in report_library() 277 << " " << typedef_string(type2, clockwise, open) << " geometry2;" << std::endl in report_library() 278 << " bg::read_wkt(\"" << wkt_string(type2) << "\", geometry2);" << std::endl; in report_library() 345 for (int type2 = point; type2 < geometry_count; ++type2) in report() local 347 …sult.push_back(report_library(compile_policy, type, algo, clockwise, open, dimensions, cs, type2)); in report()
|
/third_party/boost/libs/serialization/test/ |
D | test_unregistered.cpp | 64 struct type2 { struct 72 BOOST_CLASS_VERSION(type2, 2); argument 253 oa.register_type(static_cast<type2 *>(NULL)); in save_unregistered_pointer() 256 type2 *pointer2 = new type2; in save_unregistered_pointer() 276 type2 *pointer2(NULL); in load_unregistered_pointer()
|
/third_party/boost/boost/sort/common/util/ |
D | merge.hpp | 154 typedef value_iter<Iter2_t> type2; in merge_construct() typedef 157 static_assert (std::is_same< Value_t, type2 >::value, in merge_construct() 344 typedef value_iter<Iter2_t> type2; in merge_uncontiguous() typedef 346 static_assert (std::is_same< type1, type2 >::value, in merge_uncontiguous() 348 static_assert (std::is_same< type3, type2 >::value, in merge_uncontiguous() 404 typedef value_iter<Iter2_t> type2; in merge_contiguous() typedef 405 static_assert (std::is_same< type1, type2 >::value, in merge_contiguous() 448 typedef value_iter<Iter2_t> type2; in merge_circular() typedef 449 static_assert (std::is_same< type1, type2 >::value, in merge_circular()
|
/third_party/boost/boost/container_hash/detail/ |
D | float_functions.hpp | 193 #define BOOST_HASH_CALL_FLOAT_FUNC(cpp_func, c99_func, type1, type2) \ argument 196 boost::hash_detail::not_found c99_func(Float, type2); \ 207 static type2 y; \ 259 #define BOOST_HASH_CALL_FLOAT_MACRO(cpp_func, c99_func, type1, type2) \ argument 266 inline type1 operator()(type1 x, type2 y) const { \
|
/third_party/typescript/tests/baselines/reference/ |
D | contextualTypeShouldBeLiteral.types | 71 type2: 'y'; 72 >type2 : "y" 86 >foo2({ type2: 'y', value: 'done', method() { this; this.value; }}) : void 88 >{ type2: 'y', value: 'done', method() { this; this.value; }} : { type2: … 90 type2: 'y', 91 >type2 : "y"
|
D | contextualTypeShouldBeLiteral.js | 33 type2: 'y'; 41 type2: 'y', property 139 type2: 'y', property
|
D | contextualTypeShouldBeLiteral.symbols | 77 type2: 'y'; 78 >type2 : Symbol(Y2.type2, Decl(contextualTypeShouldBeLiteral.ts, 30, 14)) 96 type2: 'y', 97 >type2 : Symbol(type2, Decl(contextualTypeShouldBeLiteral.ts, 38, 6))
|
/third_party/boost/boost/sort/common/ |
D | range.hpp | 204 typedef util::value_iter<Iter2_t> type2; in is_mergeable() typedef 205 static_assert (std::is_same< type1, type2 >::value, in is_mergeable() 230 typedef util::value_iter<Iter2_t> type2; in is_mergeable_stable() typedef 231 static_assert (std::is_same< type1, type2 >::value, in is_mergeable_stable() 372 typedef util::value_iter<Iter2_t> type2; in merge_flow() typedef 373 static_assert (std::is_same< type1, type2 >::value, in merge_flow()
|
D | merge_vector.hpp | 58 typedef util::value_iter<Iter2_t> type2; in merge_level4() typedef 59 static_assert (std::is_same< type1, type2 >::value, in merge_level4() 156 typedef util::value_iter<Iter2_t> type2; in merge_vector4() typedef 157 static_assert (std::is_same< type1, type2 >::value, in merge_vector4()
|
/third_party/typescript/tests/cases/fourslash/ |
D | referencesForMergedDeclarations.ts | 17 const [type1Def, type1, namespace1Def, namespace1, value1Def, value1, namespace2, type2, value2] = … constant 18 verify.singleReferenceGroup("interface Foo\nnamespace Foo", [type1, type2]);
|
/third_party/boost/libs/numeric/odeint/test/ |
D | is_pair.cpp | 35 typedef std::pair< int& , int > type2; in BOOST_AUTO_TEST_CASE() typedef 42 BOOST_STATIC_ASSERT(( is_pair< type2 >::value )); in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/boost/mpi/ |
D | skeleton_and_content.hpp | 34 …:forward_skeleton_iarchive<boost::mpi::packed_skeleton_iarchive,boost::mpi::packed_iarchive> type2; typedef 59 BOOST_SERIALIZATION_REGISTER_ARCHIVE(boost::mpi::detail::type2)
|
/third_party/typescript/tests/cases/compiler/ |
D | contextualTypeShouldBeLiteral.ts | 33 type2: 'y'; property 41 type2: 'y',
|
/third_party/gettext/gnulib-local/lib/libxml/ |
D | xmlregexp.c | 2283 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { in xmlFACompareAtomTypes() argument 2291 if ((type2 == XML_REGEXP_EPSILON) || in xmlFACompareAtomTypes() 2292 (type2 == XML_REGEXP_CHARVAL) || in xmlFACompareAtomTypes() 2293 (type2 == XML_REGEXP_RANGES) || in xmlFACompareAtomTypes() 2294 (type2 == XML_REGEXP_SUBREG) || in xmlFACompareAtomTypes() 2295 (type2 == XML_REGEXP_STRING) || in xmlFACompareAtomTypes() 2296 (type2 == XML_REGEXP_ANYCHAR)) in xmlFACompareAtomTypes() 2299 if (type1 == type2) return(1); in xmlFACompareAtomTypes() 2302 if (type1 > type2) { in xmlFACompareAtomTypes() 2304 type1 = type2; in xmlFACompareAtomTypes() [all …]
|
/third_party/libxml2/ |
D | xmlregexp.c | 2286 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { in xmlFACompareAtomTypes() argument 2294 if ((type2 == XML_REGEXP_EPSILON) || in xmlFACompareAtomTypes() 2295 (type2 == XML_REGEXP_CHARVAL) || in xmlFACompareAtomTypes() 2296 (type2 == XML_REGEXP_RANGES) || in xmlFACompareAtomTypes() 2297 (type2 == XML_REGEXP_SUBREG) || in xmlFACompareAtomTypes() 2298 (type2 == XML_REGEXP_STRING) || in xmlFACompareAtomTypes() 2299 (type2 == XML_REGEXP_ANYCHAR)) in xmlFACompareAtomTypes() 2302 if (type1 == type2) return(1); in xmlFACompareAtomTypes() 2305 if (type1 > type2) { in xmlFACompareAtomTypes() 2307 type1 = type2; in xmlFACompareAtomTypes() [all …]
|