/third_party/gstreamer/gstplugins_base/gst-libs/gst/pbutils/ |
D | encoding-profile.c | 493 gst_encoding_profile_get_name (GstEncodingProfile * profile) in gst_encoding_profile_get_name() argument 495 g_return_val_if_fail (GST_IS_ENCODING_PROFILE (profile), NULL); in gst_encoding_profile_get_name() 497 return profile->name; in gst_encoding_profile_get_name() 507 gst_encoding_profile_get_description (GstEncodingProfile * profile) in gst_encoding_profile_get_description() argument 509 g_return_val_if_fail (GST_IS_ENCODING_PROFILE (profile), NULL); in gst_encoding_profile_get_description() 511 return profile->description; in gst_encoding_profile_get_description() 522 gst_encoding_profile_get_format (GstEncodingProfile * profile) in gst_encoding_profile_get_format() argument 524 g_return_val_if_fail (GST_IS_ENCODING_PROFILE (profile), NULL); in gst_encoding_profile_get_format() 526 return (profile->format ? gst_caps_ref (profile->format) : NULL); in gst_encoding_profile_get_format() 537 gst_encoding_profile_get_preset (GstEncodingProfile * profile) in gst_encoding_profile_get_preset() argument [all …]
|
D | encoding-profile.h | 117 #define gst_encoding_profile_unref(profile) (g_object_unref ((GObject*) profile)) argument 125 #define gst_encoding_profile_ref(profile) (g_object_ref ((GObject*) profile)) argument 128 const gchar * gst_encoding_profile_get_name (GstEncodingProfile *profile); 131 void gst_encoding_profile_set_name (GstEncodingProfile *profile, 135 const gchar * gst_encoding_profile_get_description (GstEncodingProfile *profile); 138 void gst_encoding_profile_set_description (GstEncodingProfile *profile, 142 GstCaps * gst_encoding_profile_get_format (GstEncodingProfile *profile); 145 void gst_encoding_profile_set_format (GstEncodingProfile *profile, 149 gboolean gst_encoding_profile_get_allow_dynamic_output (GstEncodingProfile *profile); 152 void gst_encoding_profile_set_allow_dynamic_output (GstEncodingProfile *profile, [all …]
|
D | codec-utils.c | 265 const gchar *profile = NULL; in gst_codec_utils_aac_get_profile() local 282 profile = "main"; in gst_codec_utils_aac_get_profile() 285 profile = "lc"; in gst_codec_utils_aac_get_profile() 288 profile = "ssr"; in gst_codec_utils_aac_get_profile() 291 profile = "ltp"; in gst_codec_utils_aac_get_profile() 298 return profile; in gst_codec_utils_aac_get_profile() 511 const gchar *level, *profile; in gst_codec_utils_aac_caps_set_level_and_profile() local 530 profile = gst_codec_utils_aac_get_profile (audio_config, len); in gst_codec_utils_aac_caps_set_level_and_profile() 532 if (profile != NULL) { in gst_codec_utils_aac_caps_set_level_and_profile() 534 gst_structure_set (s, "base-profile", G_TYPE_STRING, profile, in gst_codec_utils_aac_caps_set_level_and_profile() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | h265_profile_level.c | 143 const H265ProfileDescriptor *profile = &h265_profiles[i]; in ff_h265_get_profile() local 146 ptl->general_profile_idc != profile->profile_idc) in ff_h265_get_profile() 148 if (!ptl->general_profile_compatibility_flag[profile->profile_idc]) in ff_h265_get_profile() 152 if (profile->name < 2) { \ in ff_h265_get_profile() 153 if (profile->name != ptl->general_ ## name ## _constraint_flag) \ in ff_h265_get_profile() 168 return profile; in ff_h265_get_profile() 181 const H265ProfileDescriptor *profile; in ff_h265_guess_level() local 186 profile = ff_h265_get_profile(ptl); in ff_h265_guess_level() 188 profile = NULL; in ff_h265_guess_level() 189 if (!profile) { in ff_h265_guess_level() [all …]
|
D | vp9_parser.c | 34 int res, profile, keyframe; in parse() local 42 profile = get_bits1(&gb); in parse() 43 profile |= get_bits1(&gb) << 1; in parse() 44 if (profile == 3) profile += get_bits1(&gb); in parse() 45 if (profile > 3) in parse() 48 avctx->profile = profile; in parse()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/ |
D | gstglsl.c | 86 GstGLSLProfile profile; member 155 gst_glsl_profile_to_string (GstGLSLProfile profile) in gst_glsl_profile_to_string() argument 159 if (profile == GST_GLSL_PROFILE_NONE) in gst_glsl_profile_to_string() 163 if ((profile & (profile - 1)) != 0) in gst_glsl_profile_to_string() 167 if (profile == glsl_profiles[i].profile) in gst_glsl_profile_to_string() 195 return glsl_profiles[i].profile; in gst_glsl_profile_from_string() 204 _is_valid_version_profile (GstGLSLVersion version, GstGLSLProfile profile) in _is_valid_version_profile() argument 210 if (version <= GST_GLSL_VERSION_150 && profile == GST_GLSL_PROFILE_NONE) in _is_valid_version_profile() 216 return profile == GST_GLSL_PROFILE_ES; in _is_valid_version_profile() 220 return profile == GST_GLSL_PROFILE_NONE || profile == GST_GLSL_PROFILE_CORE in _is_valid_version_profile() [all …]
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | gstglsl.c | 60 static const struct {GstGLSLProfile profile; const gchar * name;} glsl_profiles[] = { member 69 GstGLSLProfile profile; member 154 static const struct {GstGLSLVersion version; GstGLSLProfile profile;} invalid_serialize_glsl[] = { member 184 …st gchar *name; gboolean succeed; GstGLSLVersion version; GstGLSLProfile profile;} glsl_str_map[] … member 219 GstGLSLProfile profile; in GST_START_TEST() local 222 profile_s = gst_glsl_profile_to_string (glsl_profiles[i].profile); in GST_START_TEST() 225 profile = gst_glsl_profile_from_string (glsl_profiles[i].name); in GST_START_TEST() 226 fail_unless (profile == glsl_profiles[i].profile, "%s != %s", in GST_START_TEST() 227 gst_glsl_profile_to_string (glsl_profiles[i].profile), in GST_START_TEST() 228 gst_glsl_profile_to_string (profile)); in GST_START_TEST() [all …]
|
/third_party/typescript_eslint/ |
D | .all-contributorsrc | 16 "profile": "https://github.com/JamesHenry", 23 "profile": "https://github.com/bradzacher", 30 "profile": "https://github.com/armano2", 37 "profile": "https://github.com/a-tarasyuk", 44 "profile": "https://github.com/soda0289", 51 "profile": "https://github.com/weirdpattern", 58 "profile": "https://github.com/G-Rath", 65 "profile": "https://github.com/nzakas", 72 "profile": "https://github.com/j-f1", 79 "profile": "https://github.com/uniqueiniquity", [all …]
|
/third_party/python/Tools/scripts/ |
D | analyze_dxp.py | 39 def has_pairs(profile): argument 43 return len(profile) > 0 and isinstance(profile[0], list) 78 def common_instructions(profile): argument 85 if has_pairs(profile) and profile: 86 inst_list = profile[-1] 88 inst_list = profile 96 def common_pairs(profile): argument 105 if not has_pairs(profile): 109 for op1, op1profile in enumerate(profile[:-1]) 116 def render_common_pairs(profile=None): argument [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/msdk/ |
D | gstmsdkvp8enc.c | 63 thiz->profile = 0; in gst_msdkvp8enc_set_format() 74 const gchar *profile; in gst_msdkvp8enc_set_format() local 86 profile = gst_structure_get_string (s, "profile"); in gst_msdkvp8enc_set_format() 87 if (profile) { in gst_msdkvp8enc_set_format() 88 if (!strcmp (profile, "3")) { in gst_msdkvp8enc_set_format() 89 thiz->profile = MFX_PROFILE_VP8_3; in gst_msdkvp8enc_set_format() 90 } else if (!strcmp (profile, "2")) { in gst_msdkvp8enc_set_format() 91 thiz->profile = MFX_PROFILE_VP8_2; in gst_msdkvp8enc_set_format() 92 } else if (!strcmp (profile, "1")) { in gst_msdkvp8enc_set_format() 93 thiz->profile = MFX_PROFILE_VP8_1; in gst_msdkvp8enc_set_format() [all …]
|
D | gstmsdkmpeg2enc.c | 61 thiz->profile = 0; in gst_msdkmpeg2enc_set_format() 72 const gchar *profile; in gst_msdkmpeg2enc_set_format() local 84 profile = gst_structure_get_string (s, "profile"); in gst_msdkmpeg2enc_set_format() 85 if (profile) { in gst_msdkmpeg2enc_set_format() 86 if (!strcmp (profile, "high")) { in gst_msdkmpeg2enc_set_format() 87 thiz->profile = MFX_PROFILE_MPEG2_HIGH; in gst_msdkmpeg2enc_set_format() 88 } else if (!strcmp (profile, "main")) { in gst_msdkmpeg2enc_set_format() 89 thiz->profile = MFX_PROFILE_MPEG2_MAIN; in gst_msdkmpeg2enc_set_format() 90 } else if (!strcmp (profile, "simple")) { in gst_msdkmpeg2enc_set_format() 91 thiz->profile = MFX_PROFILE_MPEG2_SIMPLE; in gst_msdkmpeg2enc_set_format() [all …]
|
/third_party/cef/patch/patches/ |
D | chrome_browser_profiles.patch | 7 if (!profile) 8 profile = std::make_unique<OffTheRecordProfileImpl>(parent, otr_profile_id); 9 - profile->Init(); 12 + profile->Init(); 13 return std::move(profile); 16 diff --git chrome/browser/profiles/profile.cc chrome/browser/profiles/profile.cc 18 --- chrome/browser/profiles/profile.cc 19 +++ chrome/browser/profiles/profile.cc 54 diff --git chrome/browser/profiles/profile.h chrome/browser/profiles/profile.h 56 --- chrome/browser/profiles/profile.h [all …]
|
D | chrome_browser_profile_menu.patch | 9 - *bubble_view_mode = profile->IsIncognitoProfile() 10 + *bubble_view_mode = profile->IsIncognitoProfile() || 11 + (profile->IsOffTheRecord() && 12 + profile->GetOTRProfileID().IsUniqueForCEF()) 24 - DCHECK(browser->profile()->IsIncognitoProfile()); 25 + DCHECK(browser->profile()->IsIncognitoProfile() || 26 + (browser->profile()->IsOffTheRecord() && 27 + browser->profile()->GetOTRProfileID().IsUniqueForCEF())); 39 - DCHECK(browser->profile()->IsIncognitoProfile()); 40 + DCHECK(browser->profile()->IsIncognitoProfile() || [all …]
|
/third_party/pulseaudio/src/modules/ |
D | module-card-restore.c | 75 char *profile; member 79 char *profile; member 110 pa_xfree(p_info->profile); in port_info_free() 129 p_info->profile = pa_xstrdup(port->preferred_profile); in port_info_new() 141 pa_xfree(e->profile); in entry_free() 157 entry->profile = pa_xstrdup(card->active_profile->name); in entry_from_card() 174 if (!pa_streq(a->profile, b->profile) || in entrys_equal() 208 pa_tagstruct_puts(t, e->profile); in entry_write() 214 pa_tagstruct_puts(t, p_info->profile); in entry_write() 238 char profile[PA_NAME_MAX]; in legacy_entry_read() member [all …]
|
/third_party/gstreamer/gstplugins_good/sys/v4l2/ |
D | gstv4l2h264enc.c | 92 v4l2_profile_from_string (const gchar * profile) in v4l2_profile_from_string() argument 96 if (g_str_equal (profile, "baseline")) { in v4l2_profile_from_string() 98 } else if (g_str_equal (profile, "constrained-baseline")) { in v4l2_profile_from_string() 100 } else if (g_str_equal (profile, "main")) { in v4l2_profile_from_string() 102 } else if (g_str_equal (profile, "extended")) { in v4l2_profile_from_string() 104 } else if (g_str_equal (profile, "high")) { in v4l2_profile_from_string() 106 } else if (g_str_equal (profile, "high-10")) { in v4l2_profile_from_string() 108 } else if (g_str_equal (profile, "high-4:2:2")) { in v4l2_profile_from_string() 110 } else if (g_str_equal (profile, "high-4:4:4")) { in v4l2_profile_from_string() 112 } else if (g_str_equal (profile, "high-10-intra")) { in v4l2_profile_from_string() [all …]
|
/third_party/node/deps/npm/docs/content/cli-commands/ |
D | npm-profile.md | 3 title: npm-profile 4 description: Change settings on your registry profile 7 # npm-profile(1) 8 ## Change settings on your registry profile 13 npm profile get [--json|--parseable] [<property>] 14 npm profile set [--json|--parseable] <property> <value> 15 npm profile set password 16 npm profile enable-2fa [auth-and-writes|auth-only] 17 npm profile disable-2fa 22 Change your profile information on the registry. This not be available if [all …]
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | usprep.cpp | 140 UStringPrepProfile *profile = NULL; in usprep_internal_flushCache() local 159 profile = (UStringPrepProfile *) e->value.pointer; in usprep_internal_flushCache() 162 if ((noRefCount== FALSE && profile->refCount == 0) || in usprep_internal_flushCache() 168 usprep_unload(profile); in usprep_internal_flushCache() 178 uprv_free(profile); in usprep_internal_flushCache() 225 loadData(UStringPrepProfile* profile, in loadData() argument 262 if(profile->sprepData==NULL) { in loadData() 263 profile->sprepData=dataMemory; in loadData() 265 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes)); in loadData() 266 uprv_memcpy(&profile->sprepTrie, &_sprepTrie, sizeof(UTrie)); in loadData() [all …]
|
/third_party/icu/icu4c/source/common/ |
D | usprep.cpp | 140 UStringPrepProfile *profile = NULL; in usprep_internal_flushCache() local 159 profile = (UStringPrepProfile *) e->value.pointer; in usprep_internal_flushCache() 162 if ((noRefCount== FALSE && profile->refCount == 0) || in usprep_internal_flushCache() 168 usprep_unload(profile); in usprep_internal_flushCache() 178 uprv_free(profile); in usprep_internal_flushCache() 225 loadData(UStringPrepProfile* profile, in loadData() argument 262 if(profile->sprepData==NULL) { in loadData() 263 profile->sprepData=dataMemory; in loadData() 265 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes)); in loadData() 266 uprv_memcpy(&profile->sprepTrie, &_sprepTrie, sizeof(UTrie)); in loadData() [all …]
|
/third_party/node/deps/icu-small/source/common/ |
D | usprep.cpp | 140 UStringPrepProfile *profile = NULL; in usprep_internal_flushCache() local 159 profile = (UStringPrepProfile *) e->value.pointer; in usprep_internal_flushCache() 162 if ((noRefCount== FALSE && profile->refCount == 0) || in usprep_internal_flushCache() 168 usprep_unload(profile); in usprep_internal_flushCache() 178 uprv_free(profile); in usprep_internal_flushCache() 225 loadData(UStringPrepProfile* profile, in loadData() argument 262 if(profile->sprepData==NULL) { in loadData() 263 profile->sprepData=dataMemory; in loadData() 265 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes)); in loadData() 266 uprv_memcpy(&profile->sprepTrie, &_sprepTrie, sizeof(UTrie)); in loadData() [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | usprep.cpp | 141 UStringPrepProfile *profile = NULL; in usprep_internal_flushCache() local 160 profile = (UStringPrepProfile *) e->value.pointer; in usprep_internal_flushCache() 163 if ((noRefCount== FALSE && profile->refCount == 0) || in usprep_internal_flushCache() 169 usprep_unload(profile); in usprep_internal_flushCache() 179 uprv_free(profile); in usprep_internal_flushCache() 226 loadData(UStringPrepProfile* profile, in loadData() argument 263 if(profile->sprepData==NULL) { in loadData() 264 profile->sprepData=dataMemory; in loadData() 266 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes)); in loadData() 267 uprv_memcpy(&profile->sprepTrie, &_sprepTrie, sizeof(UTrie)); in loadData() [all …]
|
/third_party/pulseaudio/src/modules/bluetooth/ |
D | module-bluetooth-policy.c | 146 pa_card_profile *profile; in card_set_profile() local 150 PA_HASHMAP_FOREACH(profile, card->profiles, state) { in card_set_profile() 151 if (profile->available == PA_AVAILABLE_NO) in card_set_profile() 156 if (!pa_streq(profile->name, "a2dp_sink")) in card_set_profile() 159 if (!pa_streq(profile->name, "headset_head_unit")) in card_set_profile() 163 pa_log_debug("Setting card '%s' to profile '%s'", card->name, profile->name); in card_set_profile() 165 if (pa_card_set_profile(card, profile, false) != 0) { in card_set_profile() 166 pa_log_warn("Could not set profile '%s'", profile->name); in card_set_profile() 329 pa_card_profile *profile; in find_best_profile() local 332 PA_HASHMAP_FOREACH(profile, card->profiles, state) { in find_best_profile() [all …]
|
/third_party/ltp/testcases/realtime/testcases/realtime/doc/ |
D | AUTOMATED_RUN | 1 This explains how the automatic testing works with profile support. 4 Each profile is defined in a file. 5 All profiles are stored in the <RT_TESTS_ROOT>/profile/ directory. 13 run_auto.sh can be invoked with an argument which is the profile to use. 14 profile/ dir holds a file for each defined profile. 15 A profile has a number of lines for which each test executable can be run 17 Invoking run_auto.sh with no arg uses the default profile. 18 Currently, the default profile does not alter the default values defined 24 $SCRIPTS_DIR/run_c_files.sh $profile prio-preempt 26 run_c_files.sh will look into profile/prf1 for lines like this: [all …]
|
/third_party/ltp/testcases/realtime/doc/ |
D | AUTOMATED_RUN | 1 This explains how the automatic testing works with profile support. 4 Each profile is defined in a file. 5 All profiles are stored in the <RT_TESTS_ROOT>/profile/ directory. 13 run_auto.sh can be invoked with an argument which is the profile to use. 14 profile/ dir holds a file for each defined profile. 15 A profile has a number of lines for which each test executable can be run 17 Invoking run_auto.sh with no arg uses the default profile. 18 Currently, the default profile does not alter the default values defined 24 $SCRIPTS_DIR/run_c_files.sh $profile prio-preempt 26 run_c_files.sh will look into profile/prf1 for lines like this: [all …]
|
/third_party/e2fsprogs/lib/support/ |
D | prof_err.et | 14 "A profile section header has a non-zero value" 15 error_code PROF_BAD_LINK_LIST, "Bad linked list in profile structures" 16 error_code PROF_BAD_GROUP_LVL, "Bad group level in profile structures" 18 "Bad parent pointer in profile structures" 19 error_code PROF_MAGIC_ITERATOR, "Bad magic value in profile iterator" 21 error_code PROF_EINVAL, "Invalid argument passed to profile library" 22 error_code PROF_READ_ONLY, "Attempt to modify read-only profile" 29 error_code PROF_SECTION_SYNTAX, "Syntax error in profile section header" 30 error_code PROF_RELATION_SYNTAX, "Syntax error in profile relation" 31 error_code PROF_EXTRA_CBRACE, "Extra closing brace in profile" [all …]
|
/third_party/ltp/testcases/realtime/func/pi-tests/ |
D | run_auto.sh | 3 profile=${1:-default} 14 $SCRIPTS_DIR/run_c_files.sh $profile testpi-0 17 $SCRIPTS_DIR/run_c_files.sh $profile testpi-1 21 $SCRIPTS_DIR/run_c_files.sh $profile testpi-2 25 $SCRIPTS_DIR/run_c_files.sh $profile testpi-4 30 $SCRIPTS_DIR/run_c_files.sh $profile testpi-5 31 $SCRIPTS_DIR/run_c_files.sh $profile testpi-6 32 $SCRIPTS_DIR/run_c_files.sh $profile sbrk_mutex
|