/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | pbutils.c | 812 const gchar *profile, *level; in GST_START_TEST() local 818 profile = gst_codec_utils_aac_get_profile (aac_config, sizeof (aac_config)); in GST_START_TEST() 819 fail_unless (profile != NULL); in GST_START_TEST() 820 fail_unless_equals_string (profile, "lc"); in GST_START_TEST() 834 profile = in GST_START_TEST() 836 fail_unless (profile != NULL); in GST_START_TEST() 837 fail_unless_equals_string (profile, "lc"); in GST_START_TEST() 857 profile = gst_codec_utils_aac_get_profile (buf, buf_len); in GST_START_TEST() 858 fail_unless (profile != NULL); in GST_START_TEST() 859 fail_unless_equals_string (profile, "lc"); in GST_START_TEST() [all …]
|
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/gstreamer/gstplugins_base/gst-libs/gst/pbutils/ |
D | encoding-profile.c | 324 #define PROFILE_LOCK(profile) (g_mutex_lock(&((GstEncodingProfile*)profile)->lock)) argument 325 #define PROFILE_UNLOCK(profile) (g_mutex_unlock(&((GstEncodingProfile*)profile)->lock)) argument 521 gst_encoding_profile_get_name (GstEncodingProfile * profile) in gst_encoding_profile_get_name() argument 523 g_return_val_if_fail (GST_IS_ENCODING_PROFILE (profile), NULL); in gst_encoding_profile_get_name() 525 return profile->name; in gst_encoding_profile_get_name() 535 gst_encoding_profile_get_description (GstEncodingProfile * profile) in gst_encoding_profile_get_description() argument 537 g_return_val_if_fail (GST_IS_ENCODING_PROFILE (profile), NULL); in gst_encoding_profile_get_description() 539 return profile->description; in gst_encoding_profile_get_description() 550 gst_encoding_profile_get_format (GstEncodingProfile * profile) in gst_encoding_profile_get_format() argument 552 g_return_val_if_fail (GST_IS_ENCODING_PROFILE (profile), NULL); in gst_encoding_profile_get_format() [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 | 286 const gchar *profile = NULL; in gst_codec_utils_aac_get_profile() local 303 profile = "main"; in gst_codec_utils_aac_get_profile() 306 profile = "lc"; in gst_codec_utils_aac_get_profile() 309 profile = "ssr"; in gst_codec_utils_aac_get_profile() 312 profile = "ltp"; in gst_codec_utils_aac_get_profile() 319 return profile; in gst_codec_utils_aac_get_profile() 532 const gchar *level, *profile; in gst_codec_utils_aac_caps_set_level_and_profile() local 551 profile = gst_codec_utils_aac_get_profile (audio_config, len); in gst_codec_utils_aac_caps_set_level_and_profile() 553 if (profile != NULL) { in gst_codec_utils_aac_caps_set_level_and_profile() 555 gst_structure_set (s, "base-profile", G_TYPE_STRING, profile, in gst_codec_utils_aac_caps_set_level_and_profile() [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/ |
D | gstglsl.c | 91 GstGLSLProfile profile; member 160 gst_glsl_profile_to_string (GstGLSLProfile profile) in gst_glsl_profile_to_string() argument 164 if (profile == GST_GLSL_PROFILE_NONE) in gst_glsl_profile_to_string() 168 if ((profile & (profile - 1)) != 0) in gst_glsl_profile_to_string() 172 if (profile == glsl_profiles[i].profile) in gst_glsl_profile_to_string() 200 return glsl_profiles[i].profile; in gst_glsl_profile_from_string() 209 _is_valid_version_profile (GstGLSLVersion version, GstGLSLProfile profile) in _is_valid_version_profile() argument 215 if (version <= GST_GLSL_VERSION_150 && profile == GST_GLSL_PROFILE_NONE) in _is_valid_version_profile() 221 return profile == GST_GLSL_PROFILE_ES; in _is_valid_version_profile() 225 return profile == GST_GLSL_PROFILE_NONE || profile == GST_GLSL_PROFILE_CORE in _is_valid_version_profile() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | h265_profile_level.c | 131 const H265ProfileDescriptor *profile = &h265_profiles[i]; in ff_h265_get_profile() local 134 ptl->general_profile_idc != profile->profile_idc) in ff_h265_get_profile() 136 if (!ptl->general_profile_compatibility_flag[profile->profile_idc]) in ff_h265_get_profile() 140 if (profile->name < 2) { \ in ff_h265_get_profile() 141 if (profile->name != ptl->general_ ## name ## _constraint_flag) \ in ff_h265_get_profile() 156 return profile; in ff_h265_get_profile() 169 const H265ProfileDescriptor *profile; in ff_h265_guess_level() local 174 profile = ff_h265_get_profile(ptl); in ff_h265_guess_level() 176 profile = NULL; in ff_h265_guess_level() 177 if (!profile) { in ff_h265_guess_level() [all …]
|
/third_party/gstreamer/gstplugins_bad/tools/ |
D | utils.c | 113 GstEncodingProfile *profile = tmpprof->data; local 116 gst_encoding_profile_set_presence (profile, 1); 117 if (GST_IS_ENCODING_CONTAINER_PROFILE (profile)) { 121 (GST_ENCODING_CONTAINER_PROFILE (profile)); tmpsubprof; 126 g_object_set (tmpencodebin, "profile", gst_object_ref (profile), NULL); 128 GST_DEBUG_GRAPH_SHOW_ALL, gst_encoding_profile_get_name (profile)); 132 usable_profiles = g_list_prepend (usable_profiles, profile); 143 GstEncodingProfile *profile; local 154 profile = g_value_dup_object (&value); 157 return profile; [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/gstreamer/gstplugins_good/sys/v4l2/ |
D | gstv4l2h264codec.c | 33 v4l2_profile_from_string (const gchar * profile) in v4l2_profile_from_string() argument 37 if (g_str_equal (profile, "baseline")) { in v4l2_profile_from_string() 39 } else if (g_str_equal (profile, "constrained-baseline")) { in v4l2_profile_from_string() 41 } else if (g_str_equal (profile, "main")) { in v4l2_profile_from_string() 43 } else if (g_str_equal (profile, "extended")) { in v4l2_profile_from_string() 45 } else if (g_str_equal (profile, "high")) { in v4l2_profile_from_string() 47 } else if (g_str_equal (profile, "high-10")) { in v4l2_profile_from_string() 49 } else if (g_str_equal (profile, "high-4:2:2")) { in v4l2_profile_from_string() 51 } else if (g_str_equal (profile, "high-4:4:4")) { in v4l2_profile_from_string() 53 } else if (g_str_equal (profile, "high-10-intra")) { in v4l2_profile_from_string() [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/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/glslang/glslang/MachineIndependent/ |
D | Initialize.cpp | 420 bool ValidVersion(const BuiltInFunction& function, int version, EProfile profile, const SpvVersion&… in ValidVersion() argument 433 if ((v->profiles & profile) != 0) { in ValidVersion() 459 void TBuiltIns::addTabledBuiltins(int version, EProfile profile, const SpvVersion& spvVersion) in addTabledBuiltins() argument 463 if (ValidVersion(*function, version, profile, spvVersion)) in addTabledBuiltins() 472 if ((profile == EEsProfile && version >= 320) || (profile != EEsProfile && version >= 450)) in addTabledBuiltins() 484 inline bool IncludeLegacy(int version, EProfile profile, const SpvVersion& spvVersion) in IncludeLegacy() argument 486 …return profile != EEsProfile && (version <= 130 || (spvVersion.spv == 0 && ARBCompatibility) || pr… in IncludeLegacy() 545 void TBuiltIns::initialize(int version, EProfile profile, const SpvVersion& spvVersion) in initialize() argument 549 profile = EEsProfile; in initialize() 552 profile = ECoreProfile; in initialize() [all …]
|
D | ShaderLang.cpp | 103 int version, EProfile profile, EShSource source, in CreateParseContext() argument 113 … return new TParseContext(symbolTable, intermediate, parsingBuiltIns, version, profile, spvVersion, in CreateParseContext() 118 …return new HlslParseContext(symbolTable, intermediate, parsingBuiltIns, version, profile, spvVersi… in CreateParseContext() 180 int MapProfileToIndex(EProfile profile) in MapProfileToIndex() argument 184 switch (profile) { in MapProfileToIndex() 237 bool InitializeSymbolTable(const TString& builtIns, int version, EProfile profile, const SpvVersion… in InitializeSymbolTable() argument 240 TIntermediate intermediate(language, version, profile); in InitializeSymbolTable() 244 …seContextBase> parseContext(CreateParseContext(symbolTable, intermediate, version, profile, source, in InitializeSymbolTable() 282 int CommonIndex(EProfile profile, EShLanguage language) in CommonIndex() argument 284 return (profile == EEsProfile && language == EShLangFragment) ? EPcFragment : EPcGeneral; in CommonIndex() [all …]
|
D | Initialize.h | 69 …virtual void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLang… 70 …virtual void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLang… 90 …void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage lan… 91 …void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage lan… 94 void addTabledBuiltins(int version, EProfile profile, const SpvVersion& spvVersion); 95 …void relateTabledBuiltins(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage… 96 … void add2ndGenerationSamplingImaging(int version, EProfile profile, const SpvVersion& spvVersion); 97 void addSubpassSampling(TSampler, const TString& typeName, int version, EProfile profile); 98 void addQueryFunctions(TSampler, const TString& typeName, int version, EProfile profile); 99 void addImageFunctions(TSampler, const TString& typeName, int version, EProfile profile); [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/msdk/ |
D | gstmsdkmpeg2enc.c | 77 thiz->profile = 0; in gst_msdkmpeg2enc_set_format() 88 const gchar *profile; in gst_msdkmpeg2enc_set_format() local 100 profile = gst_structure_get_string (s, "profile"); in gst_msdkmpeg2enc_set_format() 101 if (profile) { in gst_msdkmpeg2enc_set_format() 102 if (!strcmp (profile, "high")) { in gst_msdkmpeg2enc_set_format() 103 thiz->profile = MFX_PROFILE_MPEG2_HIGH; in gst_msdkmpeg2enc_set_format() 104 } else if (!strcmp (profile, "main")) { in gst_msdkmpeg2enc_set_format() 105 thiz->profile = MFX_PROFILE_MPEG2_MAIN; in gst_msdkmpeg2enc_set_format() 106 } else if (!strcmp (profile, "simple")) { in gst_msdkmpeg2enc_set_format() 107 thiz->profile = MFX_PROFILE_MPEG2_SIMPLE; in gst_msdkmpeg2enc_set_format() [all …]
|
D | gstmsdkvp9enc.c | 95 thiz->profile = MFX_PROFILE_VP9_0; in gst_msdkvp9enc_set_format() 105 const gchar *profile; in gst_msdkvp9enc_set_format() local 116 profile = gst_structure_get_string (s, "profile"); in gst_msdkvp9enc_set_format() 118 if (profile) { in gst_msdkvp9enc_set_format() 119 if (!strcmp (profile, "3")) { in gst_msdkvp9enc_set_format() 120 thiz->profile = MFX_PROFILE_VP9_3; in gst_msdkvp9enc_set_format() 121 } else if (!strcmp (profile, "2")) { in gst_msdkvp9enc_set_format() 122 thiz->profile = MFX_PROFILE_VP9_2; in gst_msdkvp9enc_set_format() 123 } else if (!strcmp (profile, "1")) { in gst_msdkvp9enc_set_format() 124 thiz->profile = MFX_PROFILE_VP9_1; in gst_msdkvp9enc_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/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/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/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/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/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 …]
|