/external/boringssl/src/ssl/ |
D | d1_srtp.cc | 163 UniquePtr<STACK_OF(SRTP_PROTECTION_PROFILE)> profiles( in ssl_ctx_make_profiles() local 165 if (profiles == nullptr) { in ssl_ctx_make_profiles() 182 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles.get(), profile)) { in ssl_ctx_make_profiles() 192 *out = profiles.release(); 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 201 return ssl_ctx_make_profiles(profiles, &ssl->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 | 41 profiles = pprof_profiler.get_profiles(graph, run_metadata) 42 self.assertEquals(0, len(profiles)) 57 profiles = pprof_profiler.get_profiles(graph, run_metadata) 58 self.assertEquals(0, len(profiles)) 124 profiles = pprof_profiler.get_profiles(graph, run_metadata) 125 self.assertEquals(1, len(profiles)) 126 self.assertTrue('deviceA' in profiles) 127 self.assertEquals(expected_proto, str(profiles['deviceA'])) 150 profiles = pprof_profiler.get_profiles(sess.graph, run_metadata) 151 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/v4l2_codec2/vda/ |
D | v4l2_device.cc | 111 std::vector<VideoCodecProfile> profiles; in V4L2PixFmtToVideoCodecProfiles() local 141 return profiles; in V4L2PixFmtToVideoCodecProfiles() 145 profiles.push_back(static_cast<VideoCodecProfile>(profile)); in V4L2PixFmtToVideoCodecProfiles() 147 return profiles; in V4L2PixFmtToVideoCodecProfiles() 285 const auto& profiles = in GetSupportedDecodeProfiles() local 287 supported_profiles.insert(supported_profiles.end(), profiles.begin(), in GetSupportedDecodeProfiles() 288 profiles.end()); in GetSupportedDecodeProfiles() 363 VideoDecodeAccelerator::SupportedProfiles profiles; in EnumerateSupportedDecodeProfiles() local 382 profiles.push_back(profile); in EnumerateSupportedDecodeProfiles() 390 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/ImageMagick/MagickCore/ |
D | profile.c | 150 if (clone_image->profiles != (void *) NULL) in CloneImageProfiles() 152 if (image->profiles != (void *) NULL) in CloneImageProfiles() 154 image->profiles=CloneSplayTree((SplayTreeInfo *) clone_image->profiles, in CloneImageProfiles() 190 if (image->profiles == (SplayTreeInfo *) NULL) in DeleteImageProfile() 193 return(DeleteNodeFromSplayTree((SplayTreeInfo *) image->profiles,name)); in DeleteImageProfile() 220 if (image->profiles != (SplayTreeInfo *) NULL) in DestroyImageProfiles() 221 image->profiles=DestroySplayTree((SplayTreeInfo *) image->profiles); in DestroyImageProfiles() 258 if (image->profiles == (SplayTreeInfo *) NULL) in GetImageProfile() 261 image->profiles,name); in GetImageProfile() 293 if (image->profiles == (SplayTreeInfo *) NULL) in GetNextImageProfile() [all …]
|
/external/ImageMagick/tests/ |
D | wandtest.c | 5169 **profiles, in main() local 5474 profiles=MagickGetImageProfiles(magick_wand,"*",&number_profiles); in main() 5475 if (profiles != (char **) NULL) in main() 5479 (void) FormatLocaleFile(stdout," %s\n",profiles[i]); in main() 5480 profiles[i]=(char *) MagickRelinquishMemory(profiles[i]); in main() 5482 profiles=(char **) MagickRelinquishMemory(profiles); in main()
|
/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 {
|
D | perf_data_converter.cc | 27 typedef perftools::profiles::Profile Profile; 28 typedef perftools::profiles::Builder ProfileBuilder; 149 typedef std::unordered_map<SampleKey, perftools::profiles::Sample*, 438 perftools::profiles::Sample* sample = per_pid_[pid].sample_map[sample_key]; in AddOrUpdateSample() 512 perftools::profiles::Location* loc = profile->add_location(); in AddOrGetLocation()
|
/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/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/v4l2_codec2/ |
D | C2VDAAdaptorProxy.cpp | 157 media::VideoDecodeAccelerator::SupportedProfiles profiles(1); in GetSupportedProfiles() local 158 profiles[0].min_resolution = media::Size(16, 16); in GetSupportedProfiles() 159 profiles[0].max_resolution = media::Size(4096, 4096); in GetSupportedProfiles() 163 profiles[0].profile = media::H264PROFILE_MAIN; in GetSupportedProfiles() 167 profiles[0].profile = media::VP8PROFILE_ANY; in GetSupportedProfiles() 171 profiles[0].profile = media::VP9PROFILE_PROFILE0; in GetSupportedProfiles() 177 return profiles; in GetSupportedProfiles()
|
/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/ImageMagick/coders/ |
D | mpc.c | 165 *profiles; in ReadMPCImage() local 225 profiles=(LinkedListInfo *) NULL; in ReadMPCImage() 605 if (profiles == (LinkedListInfo *) NULL) in ReadMPCImage() 606 profiles=NewLinkedList(0); in ReadMPCImage() 607 (void) AppendValueToLinkedList(profiles, in ReadMPCImage() 803 if (profiles != (LinkedListInfo *) NULL) in ReadMPCImage() 817 ResetLinkedListIterator(profiles); in ReadMPCImage() 818 name=(const char *) GetNextValueInLinkedList(profiles); in ReadMPCImage() 827 name=(const char *) GetNextValueInLinkedList(profiles); in ReadMPCImage() 829 profiles=DestroyLinkedList(profiles,RelinquishMagickMemory); in ReadMPCImage() [all …]
|
/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 …]
|
/external/ImageMagick/MagickWand/ |
D | magick-property.c | 715 if (wand->images->profiles == (SplayTreeInfo *) NULL) in MagickGetImageProfile() 764 **profiles; in MagickGetImageProfiles() local 788 profiles=(char **) AcquireQuantumMemory(length,sizeof(*profiles)); in MagickGetImageProfiles() 789 if (profiles == (char **) NULL) in MagickGetImageProfiles() 801 profiles=(char **) ResizeQuantumMemory(profiles,length, in MagickGetImageProfiles() 802 sizeof(*profiles)); in MagickGetImageProfiles() 803 if (profiles == (char **) NULL) in MagickGetImageProfiles() 811 profiles[i]=ConstantString(property); in MagickGetImageProfiles() 816 profiles[i]=(char *) NULL; in MagickGetImageProfiles() 818 return(profiles); in MagickGetImageProfiles()
|
/external/ltp/testcases/realtime/doc/ |
D | HOWTO_ADD_TESTS | 19 3. Modify tests profiles if to be run automatically 21 - other profiles if needed
|
/external/minijail/ |
D | minijail0_cli_unittest.cc | 194 const std::vector<std::string> profiles = { in TEST_F() local 199 for (const auto profile : profiles) { in TEST_F() 258 const std::vector<std::string> profiles = { in TEST_F() local 262 for (const auto profile : profiles) { in TEST_F()
|
/external/llvm/test/tools/llvm-profdata/ |
D | weight-sample.test | 1 Tests for weighted merge of sample profiles. 3 1- Merge the foo and bar profiles with unity weight and verify the combined output 23 2- Merge the foo and bar profiles with weight 3x and 5x respectively and verify the combined output
|
D | weight-instr.test | 1 Tests for weighted merge of instrumented profiles. 3 1- Merge the foo and bar profiles with unity weight and verify the combined output 38 2- Merge the foo and bar profiles with weight 3x and 5x respectively and verify the combined output
|
/external/valgrind/docs/internals/ |
D | howto_oprofile.txt | 35 w/ callgraph profiles are useless. (oprofile doesn't do CFI based 39 2. even at the best of times the callgraph profiles seem pretty
|
/external/ltp/testcases/realtime/scripts/ |
D | setenv.sh | 18 export PROFILES_DIR=$TESTS_DIR/profiles
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | public-description | 2 measurement tool. It uses customizable profiles to measure of different
|
/external/v8/src/profiler/ |
D | cpu-profiler.cc | 200 return profiles_->profiles()->length(); in GetProfilesCount() 205 return profiles_->profiles()->at(index); in GetProfile() 218 if (profiles_->profiles()->is_empty() && !is_profiling_) { in DeleteProfile()
|