/external/boringssl/src/ssl/ |
D | d1_srtp.cc | 164 UniquePtr<STACK_OF(SRTP_PROTECTION_PROFILE)> profiles( in ssl_ctx_make_profiles() local 166 if (profiles == nullptr) { in ssl_ctx_make_profiles() 183 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles.get(), profile)) { in ssl_ctx_make_profiles() 192 *out = std::move(profiles); in ssl_ctx_make_profiles() 196 int SSL_CTX_set_srtp_profiles(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_srtp_profiles() argument 197 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_srtp_profiles() 200 int SSL_set_srtp_profiles(SSL *ssl, const char *profiles) { in SSL_set_srtp_profiles() argument 202 ssl_ctx_make_profiles(profiles, &ssl->config->srtp_profiles); in SSL_set_srtp_profiles() 224 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_tlsext_use_srtp() argument 226 return !SSL_CTX_set_srtp_profiles(ctx, profiles); in SSL_CTX_set_tlsext_use_srtp() [all …]
|
/external/tensorflow/tensorflow/python/profiler/ |
D | pprof_profiler_test.py | 42 profiles = pprof_profiler.get_profiles(graph, run_metadata) 43 self.assertEquals(0, len(profiles)) 58 profiles = pprof_profiler.get_profiles(graph, run_metadata) 59 self.assertEquals(0, len(profiles)) 125 profiles = pprof_profiler.get_profiles(graph, run_metadata) 126 self.assertEquals(1, len(profiles)) 127 self.assertTrue('deviceA' in profiles) 128 self.assertEquals(expected_proto, str(profiles['deviceA'])) 152 profiles = pprof_profiler.get_profiles(sess.graph, run_metadata) 153 self.assertEquals(1, len(profiles)) [all …]
|
D | pprof_profiler.py | 281 profiles = {} 300 profiles[device_stats.device] = pprof_proto 301 return profiles 423 profiles = get_profiles(graph, run_metadata) 433 for device, pprof_proto in profiles.items():
|
/external/dynamic_depth/internal/dynamic_depth/ |
D | profiles.cc | 28 std::unique_ptr<Profiles> profiles(new Profiles()); in FromProfileArray() local 29 profiles->profile_list_ = std::move(*profile_list); in FromProfileArray() 30 return profiles; in FromProfileArray() 35 std::unique_ptr<Profiles> profiles(new Profiles()); in FromDeserializer() local 47 profiles->profile_list_.emplace_back(std::move(profile)); in FromDeserializer() 51 if (profiles->profile_list_.empty()) { in FromDeserializer() 54 return profiles; in FromDeserializer()
|
D | device.cc | 59 auto profiles = Profiles::FromDeserializer(deserializer); in ParseFields() local 71 params->profiles = std::move(profiles); in ParseFields() 146 const Profiles* Device::GetProfiles() const { return params_->profiles.get(); } in GetProfiles() 226 if (params_->profiles && !params_->profiles->Serialize(&device_serializer)) { in Serialize() 274 if (params_->profiles) { in GetNamespaces() 275 params_->profiles->GetNamespaces(ns_name_href_map); in GetNamespaces()
|
D | depth_jpeg.cc | 33 const Profiles* profiles = device->GetProfiles(); in ValidateAndroidDynamicDepthBuffer() local 34 if (profiles == nullptr) { in ValidateAndroidDynamicDepthBuffer() 39 const std::vector<const Profile*> profile_list = profiles->GetProfiles(); in ValidateAndroidDynamicDepthBuffer()
|
/external/ImageMagick/coders/ |
D | mpc.c | 166 *profiles; in ReadMPCImage() local 225 profiles=(LinkedListInfo *) NULL; in ReadMPCImage() 576 if (profiles != (LinkedListInfo *) NULL) in ReadMPCImage() 577 profiles=DestroyLinkedList(profiles, in ReadMPCImage() 632 if (profiles == (LinkedListInfo *) NULL) in ReadMPCImage() 633 profiles=NewLinkedList(0); in ReadMPCImage() 634 (void) AppendValueToLinkedList(profiles, in ReadMPCImage() 795 if (profiles != (LinkedListInfo *) NULL) in ReadMPCImage() 796 profiles=DestroyLinkedList(profiles,RelinquishMagickMemory); in ReadMPCImage() 801 if (profiles != (LinkedListInfo *) NULL) in ReadMPCImage() [all …]
|
D | gif.c | 960 if (profiles != (LinkedListInfo *) NULL) \ in ReadGIFImage() 961 profiles=DestroyLinkedList(profiles,DestroyGIFProfile); \ in ReadGIFImage() 974 *profiles; in ReadGIFImage() local 1032 profiles=(LinkedListInfo *) NULL; in ReadGIFImage() 1224 if (profiles == (LinkedListInfo *) NULL) in ReadGIFImage() 1225 profiles=NewLinkedList(0); in ReadGIFImage() 1227 (void) AppendValueToLinkedList(profiles,profile); in ReadGIFImage() 1352 if (profiles != (LinkedListInfo *) NULL) in ReadGIFImage() 1353 profiles=DestroyLinkedList(profiles,DestroyGIFProfile); in ReadGIFImage() 1368 if (profiles != (LinkedListInfo *) NULL) in ReadGIFImage() [all …]
|
/external/v4l2_codec2/vda/ |
D | v4l2_device.cc | 101 std::vector<VideoCodecProfile> profiles; in V4L2PixFmtToVideoCodecProfiles() local 128 return profiles; in V4L2PixFmtToVideoCodecProfiles() 132 profiles.push_back(static_cast<VideoCodecProfile>(profile)); in V4L2PixFmtToVideoCodecProfiles() 134 return profiles; in V4L2PixFmtToVideoCodecProfiles() 272 const auto& profiles = in GetSupportedDecodeProfiles() local 274 supported_profiles.insert(supported_profiles.end(), profiles.begin(), in GetSupportedDecodeProfiles() 275 profiles.end()); in GetSupportedDecodeProfiles() 350 VideoDecodeAccelerator::SupportedProfiles profiles; in EnumerateSupportedDecodeProfiles() local 369 profiles.push_back(profile); in EnumerateSupportedDecodeProfiles() 377 return profiles; in EnumerateSupportedDecodeProfiles()
|
/external/toolchain-utils/cwp/ |
D | demo_pipeline.sh | 8 RECORD_FILE=/tmp/profiles.rio 9 COLUMN_FILE=/tmp/profiles.cio 32 rm /tmp/profiles.* 51 fileutil cp -f /tmp/profiles.cio-* ${CNS_LOC}
|
/external/autotest/server/cros/ |
D | camerabox_utils.py | 99 profiles = root.findall('CamcorderProfiles') 101 len(profiles)) 102 assert 1 <= len(profiles) <= 2 103 if len(profiles) == 2: 105 for p in profiles: 119 root.remove(profiles[0])
|
/external/python/google-api-python-client/samples/analytics/ |
D | hello_analytics_api_v3.py | 110 profiles = service.management().profiles().list( 114 if profiles.get('items'): 115 return profiles.get('items')[0].get('id')
|
D | management_v3_reference.py | 117 profiles = service.management().profiles().list( 121 print_profiles(profiles) 123 if profiles.get('items'): 124 firstProfileId = profiles.get('items')[0].get('id')
|
/external/perf_data_converter/src/ |
D | perf_to_profile.cc | 25 const auto profiles = perftools::RawPerfDataToProfiles( in main() local 30 if (profiles.size() != 1) { in main() 33 const auto& profile = profiles[0]->data; in main()
|
D | builder.h | 18 namespace profiles { 29 namespace profiles {
|
/external/ImageMagick/tests/ |
D | wandtest.c | 5169 **profiles, in main() local 5477 profiles=MagickGetImageProfiles(magick_wand,"*",&number_profiles); in main() 5478 if (profiles != (char **) NULL) in main() 5482 (void) FormatLocaleFile(stdout," %s\n",profiles[i]); in main() 5483 profiles[i]=(char *) MagickRelinquishMemory(profiles[i]); in main() 5485 profiles=(char **) MagickRelinquishMemory(profiles); in main()
|
/external/dynamic_depth/includes/dynamic_depth/ |
D | device.h | 34 std::unique_ptr<Profiles> profiles; member 43 profiles(nullptr), in DeviceParams() 55 profiles.get() == other.profiles.get() &&
|
/external/ImageMagick/MagickCore/ |
D | profile.c | 186 if (clone_image->profiles != (void *) NULL) in CloneImageProfiles() 188 if (image->profiles != (void *) NULL) in CloneImageProfiles() 190 image->profiles=CloneSplayTree((SplayTreeInfo *) clone_image->profiles, in CloneImageProfiles() 226 if (image->profiles == (SplayTreeInfo *) NULL) in DeleteImageProfile() 229 return(DeleteNodeFromSplayTree((SplayTreeInfo *) image->profiles,name)); in DeleteImageProfile() 256 if (image->profiles != (SplayTreeInfo *) NULL) in DestroyImageProfiles() 257 image->profiles=DestroySplayTree((SplayTreeInfo *) image->profiles); in DestroyImageProfiles() 294 if (image->profiles == (SplayTreeInfo *) NULL) in GetImageProfile() 297 image->profiles,name); in GetImageProfile() 329 if (image->profiles == (SplayTreeInfo *) NULL) in GetNextImageProfile() [all …]
|
/external/perfetto/tools/trace_to_text/ |
D | trace_to_profile.cc | 64 using GLine = ::perftools::profiles::Line; 65 using GMapping = ::perftools::profiles::Mapping; 66 using GLocation = ::perftools::profiles::Location; 67 using GProfile = ::perftools::profiles::Profile; 68 using GValueType = ::perftools::profiles::ValueType; 69 using GFunction = ::perftools::profiles::Function; 70 using GSample = ::perftools::profiles::Sample;
|
/external/autotest/client/site_tests/network_BasicProfileProperties/ |
D | network_BasicProfileProperties.py | 47 profiles = shill.get_profiles() 48 logging.info('Got profiles %r', profiles) 50 profile = profiles[-1]
|
/external/v4l2_codec2/ |
D | C2VDAAdaptorProxy.cpp | 152 media::VideoDecodeAccelerator::SupportedProfiles profiles(1); in GetSupportedProfiles() local 153 profiles[0].min_resolution = media::Size(16, 16); in GetSupportedProfiles() 154 profiles[0].max_resolution = media::Size(4096, 4096); in GetSupportedProfiles() 157 profiles[0].profile = media::H264PROFILE_MAIN; in GetSupportedProfiles() 160 profiles[0].profile = media::VP8PROFILE_ANY; in GetSupportedProfiles() 163 profiles[0].profile = media::VP9PROFILE_PROFILE0; in GetSupportedProfiles() 169 return profiles; in GetSupportedProfiles()
|
/external/adhd/cras/src/server/ |
D | cras_bt_profile.c | 44 static struct cras_bt_profile *profiles; variable 385 DL_FOREACH(profiles, profile) { in cras_bt_register_profiles() 417 DL_APPEND(profiles, profile); in cras_bt_add_profile() 426 DL_FOREACH(profiles, profile) in cras_bt_profile_reset() 433 DL_FOREACH(profiles, profile) { in cras_bt_profile_get() 444 DL_FOREACH(profiles, profile) in cras_bt_profile_on_device_disconnected()
|
/external/clang/docs/ |
D | SourceBasedCodeCoverage.rst | 82 is specified, the runtime creates a pool of N raw profiles which are used for 97 Raw profiles have to be **indexed** before they can be used to generate 99 named because it can combine and index profiles at the same time: 164 indexed profiles. This option should not be used if the indexed profile will 167 * Raw profiles can be discarded after they are indexed. Advanced use of the 173 indexed profiles. To combine profiling data from multiple runs of a program, 184 profile format. Raw profiles may be dependent on the specific compiler 185 revision used to generate them. It's inadvisable to store raw profiles for 200 profile output path and to register a writer function. To collect profiles
|
/external/harfbuzz_ng/test/subset/ |
D | subset_test_suite.py | 46 self.profiles = set() 65 for profile in self.profiles: 78 "PROFILES:": self.profiles,
|
/external/freetype/docs/ |
D | raster.txt | 247 `decomposition' which converts the glyph into *profiles*. 261 | | profiles | | 276 | | \ \ profiles | \ | 286 A more general contour can be made of more than two profiles: 301 Successive profiles are always joined by horizontal segments 302 that are not part of the profiles themselves. 307 profile. Note that profiles are *oriented* up or down along the 310 In other graphics libraries, profiles are also called `edges' or 327 dealing with profiles too large and numerous to lie all at once 369 pixel units, but its profiles' heights are computed in [all …]
|