/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/node/deps/npm/test/lib/commands/ |
D | profile.js | 60 const { profile } = await mockProfile(t) 61 await t.rejects(profile.exec([]), await profile.usage) 72 const { profile, result } = await mockProfile(t, { npmProfile: defaultNpmProfile }) 73 await profile.exec(['get']) 79 const { profile, result } = await mockProfile(t, { 84 await profile.exec(['get']) 90 const { profile, result } = await mockProfile(t, { 95 await profile.exec(['get']) 100 const { profile, result } = await mockProfile(t, { 105 await profile.exec(['get']) [all …]
|
/third_party/node/deps/v8/tools/wasm/ |
D | wasm-import-profiler.js | 10 function instrument(imports, profile) { argument 22 profile[full_name] = {name: full_name, count: 0, total: 0}; variable 27 var data = profile[full_name]; 40 function dumpProfile(profile) { argument 42 for (let key in profile) { 44 let data = profile[key]; 48 print(`--- Import profile for instance ${profile.instanceNum} ---`); 77 let profile = {}; variable 78 let promise = orig_instantiate(m, instrument(imports, profile), ...args); 80 instanceMap.set(instance, 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/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/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 …]
|
/third_party/pulseaudio/src/modules/ |
D | module-card-restore.c | 75 char *profile; member 79 char *profile; member 111 pa_xfree(p_info->profile); in port_info_free() 130 p_info->profile = pa_xstrdup(port->preferred_profile); in port_info_new() 142 pa_xfree(e->profile); in entry_free() 159 entry->profile = pa_xstrdup(card->active_profile->name); in entry_from_card() 181 if (!pa_streq(a->profile, b->profile) || in entrys_equal() 218 pa_tagstruct_puts(t, e->profile); in entry_write() 224 pa_tagstruct_puts(t, p_info->profile); in entry_write() 250 char profile[PA_NAME_MAX]; in legacy_entry_read() member [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/node/deps/npm/tap-snapshots/test/lib/commands/ |
D | profile.js.test.cjs | 8 exports[`test/lib/commands/profile.js TAP enable-2fa from token and set otp, retries on pending and… 18 exports[`test/lib/commands/profile.js TAP profile get <key> --parseable > should output parseable r… 22 exports[`test/lib/commands/profile.js TAP profile get multiple args --parseable > should output par… 26 exports[`test/lib/commands/profile.js TAP profile get multiple args comma separated > should output… 30 exports[`test/lib/commands/profile.js TAP profile get multiple args default output > should output … 34 exports[`test/lib/commands/profile.js TAP profile get no args --color > should output all profile i… 47 exports[`test/lib/commands/profile.js TAP profile get no args --parseable > should output all profi… 61 exports[`test/lib/commands/profile.js TAP profile get no args default output > should output table … 74 exports[`test/lib/commands/profile.js TAP profile get no args no tfa enabled > should output expect… 87 exports[`test/lib/commands/profile.js TAP profile get no args profile has cidr_whitelist item > sho… [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/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 = nullptr; 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==nullptr) { 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/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 …]
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_codec.c | 32 enum pipe_video_profile profile, in vl_codec_supported() argument 35 if (profile == PIPE_VIDEO_PROFILE_VC1_SIMPLE || in vl_codec_supported() 36 profile == PIPE_VIDEO_PROFILE_VC1_MAIN || in vl_codec_supported() 37 profile == PIPE_VIDEO_PROFILE_VC1_ADVANCED) { in vl_codec_supported() 41 if (profile >= PIPE_VIDEO_PROFILE_MPEG4_AVC_BASELINE && in vl_codec_supported() 42 profile <= PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH444) { in vl_codec_supported() 50 if (profile >= PIPE_VIDEO_PROFILE_HEVC_MAIN && in vl_codec_supported() 51 profile <= PIPE_VIDEO_PROFILE_HEVC_MAIN_444) { in vl_codec_supported() 60 …return screen->get_video_param(screen, profile, encode ? PIPE_VIDEO_ENTRYPOINT_ENCODE : PIPE_VIDEO… in vl_codec_supported()
|
/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") && !pa_streq(profile->name, "handsfree_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/mesa3d/src/gallium/frontends/va/ |
D | config.c | 75 vlVaQueryConfigEntrypoints(VADriverContextP ctx, VAProfile profile, in vlVaQueryConfigEntrypoints() argument 86 if (profile == VAProfileNone) { in vlVaQueryConfigEntrypoints() 91 p = ProfileToPipe(profile); in vlVaQueryConfigEntrypoints() 113 vlVaGetConfigAttributes(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, in vlVaGetConfigAttributes() argument 127 (vl_codec_supported(pscreen, ProfileToPipe(profile), false))) { in vlVaGetConfigAttributes() 132 ProfileToPipe(profile), in vlVaGetConfigAttributes() 135 ProfileToPipe(profile), in vlVaGetConfigAttributes() 144 (vl_codec_supported(pscreen, ProfileToPipe(profile), true))) { in vlVaGetConfigAttributes() 149 ProfileToPipe(profile), in vlVaGetConfigAttributes() 152 ProfileToPipe(profile), in vlVaGetConfigAttributes() [all …]
|