/third_party/ffmpeg/libavformat/ |
H A D | srtp.c | 203 int ext, csrc; in ff_srtp_decrypt() local 209 ext = buf[0] & 0x10; in ff_srtp_decrypt() 220 if (ext) { in ff_srtp_decrypt() 223 ext = (AV_RB16(buf + 2) + 1) * 4; in ff_srtp_decrypt() 224 if (len < ext) in ff_srtp_decrypt() 226 len -= ext; in ff_srtp_decrypt() 227 buf += ext; in ff_srtp_decrypt() 269 int ext, csrc; in ff_srtp_encrypt() local 283 ext = buf[0] & 0x10; in ff_srtp_encrypt() 293 if (ext) { in ff_srtp_encrypt() [all...] |
/third_party/python/Lib/distutils/ |
H A D | bcppcompiler.py | 97 src, ext = build[obj] 107 if ext == '.res': 110 if ext == '.rc': 119 if ext in self._c_extensions: 121 elif ext in self._cpp_extensions: 222 modname, ext = os.path.splitext (tail) 238 (base, ext) = os.path.splitext(os.path.normcase(file)) 239 if ext == '.res': 342 (base, ext) = os.path.splitext (os.path.normcase(src_name)) 343 if ext no [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | message_factory_test.py | 133 ext.full_name 134 for ext in factory_msg1.DESCRIPTOR.file.pool.FindAllExtensions( 184 ext = msg.extension.add() 185 ext.name = 'extension_field' 186 ext.number = 2 187 ext.label = descriptor_pb2.FieldDescriptorProto.LABEL_OPTIONAL 188 ext.type_name = 'Extension' 189 ext.extendee = 'Container' 201 ext = msg.extension.add() 202 ext [all...] |
/foundation/filemanagement/app_file_service/tests/unittests/backup_tools/backup_tool/ |
H A D | tools_op_restore_test.cpp | 60 HWTEST_F(ToolsOpRestoreTest, SUB_backup_tools_op_restore_0100, testing::ext::TestSize.Level1) in HWTEST_F() 111 HWTEST_F(ToolsOpRestoreTest, SUB_backup_tools_op_restore_0200, testing::ext::TestSize.Level1) in HWTEST_F() 160 HWTEST_F(ToolsOpRestoreTest, SUB_backup_tools_op_restore_0300, testing::ext::TestSize.Level1) in HWTEST_F() 220 HWTEST_F(ToolsOpRestoreTest, SUB_backup_tools_op_restore_0400, testing::ext::TestSize.Level1) in HWTEST_F() 272 HWTEST_F(ToolsOpRestoreTest, tools_op_restore_OnFileReady_0500, testing::ext::TestSize.Level1) in HWTEST_F() 302 HWTEST_F(ToolsOpRestoreTest, tools_op_restore_OnFileReady_0501, testing::ext::TestSize.Level1) in HWTEST_F() 333 HWTEST_F(ToolsOpRestoreTest, tools_op_restore_OnFileReady_0502, testing::ext::TestSize.Level1) in HWTEST_F() 363 HWTEST_F(ToolsOpRestoreTest, tools_op_restore_OnFileReady_0503, testing::ext::TestSize.Level1) in HWTEST_F() 393 HWTEST_F(ToolsOpRestoreTest, tools_op_restore_OnBundleStarted_0600, testing::ext::TestSize.Level1) in HWTEST_F() 418 HWTEST_F(ToolsOpRestoreTest, tools_op_restore_OnBundleStarted_0601, testing::ext [all...] |
/base/hiviewdfx/hiview/adapter/service/test/unittest/common/ |
H A D | adapter_loglibrary_ability_test.cpp | 65 HWTEST_F(AdapterLoglibraryAbilityTest, LoglibraryAbilityListTest001, testing::ext::TestSize.Level1) in HWTEST_F() 80 HWTEST_F(AdapterLoglibraryAbilityTest, LoglibraryAbilityListTest002, testing::ext::TestSize.Level1) in HWTEST_F() 93 HWTEST_F(AdapterLoglibraryAbilityTest, LoglibraryAbilityCopyTest001, testing::ext::TestSize.Level1) in HWTEST_F() 107 HWTEST_F(AdapterLoglibraryAbilityTest, LoglibraryAbilityCopyTest002, testing::ext::TestSize.Level1) in HWTEST_F() 120 HWTEST_F(AdapterLoglibraryAbilityTest, LoglibraryAbilityMoveTest001, testing::ext::TestSize.Level1) in HWTEST_F() 134 HWTEST_F(AdapterLoglibraryAbilityTest, LoglibraryAbilityMoveTest002, testing::ext::TestSize.Level1) in HWTEST_F() 147 HWTEST_F(AdapterLoglibraryAbilityTest, LoglibraryAbilityRemoveTest001, testing::ext::TestSize.Level1) in HWTEST_F() 161 HWTEST_F(AdapterLoglibraryAbilityTest, LoglibraryAbilityRemoveTest002, testing::ext::TestSize.Level1) in HWTEST_F() 174 HWTEST_F(AdapterLoglibraryAbilityTest, DumpTest001, testing::ext::TestSize.Level1) in HWTEST_F()
|
/kernel/linux/linux-5.10/scripts/ |
H A D | patch-kernel | 109 ext=".gz" 113 ext=".bz" 117 ext=".bz2" 121 ext=".xz" 125 ext=".zip" 129 ext=".Z" 133 ext="" 149 if $uncomp ${patchdir}/$1${ext} | patch -p1 -s -N -E -d $sourcedir 171 if $uncomp ${patchdir}/"$1"${ext} | patch -p1 -Rs -N -E -d $sourcedir
|
/kernel/linux/linux-6.6/scripts/ |
H A D | patch-kernel | 109 ext=".gz" 113 ext=".bz" 117 ext=".bz2" 121 ext=".xz" 125 ext=".zip" 129 ext=".Z" 133 ext="" 149 if $uncomp ${patchdir}/$1${ext} | patch -p1 -s -N -E -d $sourcedir 171 if $uncomp ${patchdir}/"$1"${ext} | patch -p1 -Rs -N -E -d $sourcedir
|
/third_party/f2fs-tools/fsck/ |
H A D | compress.c | 119 const char *ext; member 125 static bool ext_found(const char *ext) in ext_found() argument 129 while (p != NULL && strcmp(ext, p->ext)) in ext_found() 147 static void ext_filter_add(const char *ext) in ext_filter_add() argument 151 ASSERT(ext != NULL); in ext_filter_add() 152 if (ext_found(ext)) in ext_filter_add() 153 return; /* ext was already registered */ in ext_filter_add() 156 node->ext = ext; in ext_filter_add() [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/av_transport/av_trans_engine/filters/test/av_transport_output_filter_test/ |
H A D | av_transport_output_filter_test.cpp | 23 using namespace testing::ext; 48 HWTEST_F(AvTransportOutputFilterTest, SetParameter_001, testing::ext::TestSize.Level1) in HWTEST_F() 57 HWTEST_F(AvTransportOutputFilterTest, SetParameter_002, testing::ext::TestSize.Level1) in HWTEST_F() 71 HWTEST_F(AvTransportOutputFilterTest, GetParameter_001, testing::ext::TestSize.Level1) in HWTEST_F() 80 HWTEST_F(AvTransportOutputFilterTest, GetParameter_002, testing::ext::TestSize.Level1) in HWTEST_F() 89 HWTEST_F(AvTransportOutputFilterTest, Prepare_001, testing::ext::TestSize.Level1) in HWTEST_F() 96 HWTEST_F(AvTransportOutputFilterTest, Prepare_002, testing::ext::TestSize.Level1) in HWTEST_F() 104 HWTEST_F(AvTransportOutputFilterTest, Start_001, testing::ext::TestSize.Level1) in HWTEST_F() 119 HWTEST_F(AvTransportOutputFilterTest, Start_002, testing::ext::TestSize.Level1) in HWTEST_F() 129 HWTEST_F(AvTransportOutputFilterTest, Stop_001, testing::ext [all...] |
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/udp/stream/ |
H A D | trans_sdk_stream_test.cpp | 21 using namespace testing::ext; 55 const StreamData ext = {0}; in HWTEST_F() local 58 ret = SendStream(-1, &streamData, &ext, ¶m); in HWTEST_F() 61 ret = SendStream(sessionId, NULL, &ext, ¶m); in HWTEST_F() 67 ret = SendStream(sessionId, &streamData, &ext, NULL); in HWTEST_F()
|
/foundation/filemanagement/app_file_service/tests/unittests/backup_api/backup_impl/ |
H A D | service_proxy_test.cpp | 75 HWTEST_F(ServiceProxyTest, SUB_Service_proxy_InitRestoreSession_0100, testing::ext::TestSize.Level1) in HWTEST_F() 102 HWTEST_F(ServiceProxyTest, SUB_Service_proxy_InitBackupSession_0100, testing::ext::TestSize.Level1) in HWTEST_F() 130 HWTEST_F(ServiceProxyTest, SUB_Service_proxy_Start_0100, testing::ext::TestSize.Level1) in HWTEST_F() 158 HWTEST_F(ServiceProxyTest, SUB_Service_proxy_GetLocalCapabilities_0100, testing::ext::TestSize.Level1) in HWTEST_F() 185 HWTEST_F(ServiceProxyTest, SUB_Service_proxy_PublishFile_0100, testing::ext::TestSize.Level1) in HWTEST_F() 216 HWTEST_F(ServiceProxyTest, SUB_Service_proxy_AppFileReady_0100, testing::ext::TestSize.Level1) in HWTEST_F() 249 * @tc.desc: 测试 AppDone ext备份恢复流程结束调用成功和失败 255 HWTEST_F(ServiceProxyTest, SUB_Service_proxy_AppDone_0100, testing::ext::TestSize.Level1) in HWTEST_F() 283 HWTEST_F(ServiceProxyTest, SUB_Service_proxy_ServiceResultReport_0100, testing::ext::TestSize.Level1) in HWTEST_F() 313 HWTEST_F(ServiceProxyTest, SUB_Service_proxy_GetFileHandle_0100, testing::ext [all...] |
/third_party/alsa-utils/topology/nhlt/intel/ssp/ |
H A D | ssp-process.c | 565 struct ssp_intel_ext_ctl *ext; in ssp_calculate_intern_ext() local 688 ext = (struct ssp_intel_ext_ctl *)(aux_blob + aux_size); in ssp_calculate_intern_ext() 692 ext->ext_data |= SET_BIT(0, aux->ext.mclk_policy_override); in ssp_calculate_intern_ext() 693 ext->ext_data |= SET_BIT(1, aux->ext.mclk_always_running); in ssp_calculate_intern_ext() 694 ext->ext_data |= SET_BIT(2, aux->ext.mclk_starts_on_gtw_init); in ssp_calculate_intern_ext() 695 ext->ext_data |= SET_BIT(3, aux->ext in ssp_calculate_intern_ext() [all...] |
/foundation/distributedhardware/distributed_input/services/sink/sinkmanager/test/sinkmanagerunittest/ |
H A D | distributed_input_sinkmanager_test.cpp | 30 using namespace testing::ext; 92 HWTEST_F(DistributedInputSinkManagerTest, InitAuto, testing::ext::TestSize.Level0) in HWTEST_F() 99 HWTEST_F(DistributedInputSinkManagerTest, Init, testing::ext::TestSize.Level0) in HWTEST_F() 106 HWTEST_F(DistributedInputSinkManagerTest, Release, testing::ext::TestSize.Level0) in HWTEST_F() 114 HWTEST_F(DistributedInputSinkManagerTest, GetStartTransFlag, testing::ext::TestSize.Level0) in HWTEST_F() 123 HWTEST_F(DistributedInputSinkManagerTest, GetInputTypes, testing::ext::TestSize.Level0) in HWTEST_F() 132 HWTEST_F(DistributedInputSinkManagerTest, DeleteStopDhids01, testing::ext::TestSize.Level0) in HWTEST_F() 148 HWTEST_F(DistributedInputSinkManagerTest, GetSinkScreenInfosCbackSize01, testing::ext::TestSize.Level0) in HWTEST_F() 155 HWTEST_F(DistributedInputSinkManagerTest, RegisterGetSinkScreenInfosCallback_01, testing::ext::TestSize.Level1) in HWTEST_F() 163 HWTEST_F(DistributedInputSinkManagerTest, RegisterGetSinkScreenInfosCallback_02, testing::ext [all...] |
/foundation/filemanagement/app_file_service/tests/unittests/backup_ext/ |
H A D | ext_extension_test.cpp | 84 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0100, testing::ext::TestSize.Level1) in HWTEST_F() 106 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0101, testing::ext::TestSize.Level1) in HWTEST_F() 128 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0200, testing::ext::TestSize.Level1) in HWTEST_F() 151 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0300, testing::ext::TestSize.Level1) in HWTEST_F() 177 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0301, testing::ext::TestSize.Level1) in HWTEST_F() 203 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0302, testing::ext::TestSize.Level1) in HWTEST_F() 234 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0400, testing::ext::TestSize.Level1) in HWTEST_F() 258 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0500, testing::ext::TestSize.Level1) in HWTEST_F() 284 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0501, testing::ext::TestSize.Level1) in HWTEST_F() 310 HWTEST_F(ExtExtensionTest, Ext_Extension_Test_0502, testing::ext [all...] |
/kernel/linux/linux-5.10/sound/core/seq/ |
H A D | seq_memory.c | 38 * ext.data.len = length 39 * ext.data.ptr = buffer pointer 43 * ext.data.len = length | SNDRV_SEQ_EXT_USRPTR 44 * ext.data.ptr = userspace pointer 48 * ext.data.len = length | SNDRV_SEQ_EXT_CHAINED 49 * ext.data.ptr = the additiona cell head 63 return event->data.ext.len & ~SNDRV_SEQ_EXT_MASK; in get_var_len() 75 if (event->data.ext.len & SNDRV_SEQ_EXT_USRPTR) { in snd_seq_dump_var_event() 77 char __user *curptr = (char __force __user *)event->data.ext.ptr; in snd_seq_dump_var_event() 92 if (!(event->data.ext in snd_seq_dump_var_event() [all...] |
/kernel/linux/linux-6.6/sound/core/seq/ |
H A D | seq_memory.c | 38 * ext.data.len = length 39 * ext.data.ptr = buffer pointer 43 * ext.data.len = length | SNDRV_SEQ_EXT_USRPTR 44 * ext.data.ptr = userspace pointer 48 * ext.data.len = length | SNDRV_SEQ_EXT_CHAINED 49 * ext.data.ptr = the additiona cell head 63 return event->data.ext.len & ~SNDRV_SEQ_EXT_MASK; in get_var_len() 81 if (event->data.ext.len & SNDRV_SEQ_EXT_USRPTR) { in dump_var_event() 83 char __user *curptr = (char __force __user *)event->data.ext.ptr; in dump_var_event() 100 if (!(event->data.ext in dump_var_event() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | ambientExternalModuleInAnotherExternalModule.js | 5 declare module "ext" { 9 // Cannot resolve this ext module reference 10 import ext = require("ext"); 11 var x = ext;
14 define(["require", "exports", "ext"], function (require, exports, ext) {
21 var x = ext;
|
/third_party/openssl/ssl/statem/ |
H A D | extensions_srvr.c | 144 OPENSSL_free(s->ext.hostname); in tls_parse_ctos_server_name() 145 s->ext.hostname = NULL; in tls_parse_ctos_server_name() 146 if (!PACKET_strndup(&hostname, &s->ext.hostname)) { in tls_parse_ctos_server_name() 158 s->servername_done = (s->session->ext.hostname != NULL) in tls_parse_ctos_server_name() 159 && PACKET_equal(&hostname, s->session->ext.hostname, in tls_parse_ctos_server_name() 160 strlen(s->session->ext.hostname)); in tls_parse_ctos_server_name() 188 if (s->hit && s->session->ext.max_fragment_len_mode != value) { in tls_parse_ctos_maxfragmentlen() 198 s->session->ext.max_fragment_len_mode = value; in tls_parse_ctos_maxfragmentlen() 236 &s->ext.peer_ecpointformats, in tls_parse_ctos_ec_pt_formats() 237 &s->ext in tls_parse_ctos_ec_pt_formats() 990 unsigned int id, i, ext = 0; tls_parse_ctos_psk() local [all...] |
/third_party/mindspore/test/unittest/ |
H A D | mindspore_unit_test.cpp | 45 HWTEST(MSLiteTest, Context_Create, testing::ext::TestSize.Level0) { in HWTEST() 56 HWTEST(MSLiteTest, Context_Destroy, testing::ext::TestSize.Level0) { in HWTEST() 69 HWTEST(MSLiteTest, Context_Thread_Num, testing::ext::TestSize.Level0) { in HWTEST() 84 HWTEST(MSLiteTest, Context_Thread_Affinity, testing::ext::TestSize.Level0) { in HWTEST() 104 HWTEST(MSLiteTest, Context_Thread_Affinity_Corelist, testing::ext::TestSize.Level0) { in HWTEST() 131 HWTEST(MSLiteTest, Context_Enable_Parallel, testing::ext::TestSize.Level0) { in HWTEST() 157 HWTEST(MSLiteTest, Context_Enable_FP16, testing::ext::TestSize.Level0) { in HWTEST() 182 HWTEST(MSLiteTest, Context_Provider, testing::ext::TestSize.Level0) { in HWTEST() 205 HWTEST(MSLiteTest, Context_Provider_Device, testing::ext::TestSize.Level0) { in HWTEST() 228 HWTEST(MSLiteTest, Context_Device, testing::ext [all...] |
/foundation/multimedia/av_session/services/session/server/test/ |
H A D | session_listener_proxy_test.cpp | 55 static HWTEST_F(SessionListenerProxyTest, OnSessionCreate001, testing::ext::TestSize.Level1) in HWTEST_F() 68 static HWTEST_F(SessionListenerProxyTest, OnSessionRelease001, testing::ext::TestSize.Level1) in HWTEST_F() 81 static HWTEST_F(SessionListenerProxyTest, OnTopSessionChange001, testing::ext::TestSize.Level1) in HWTEST_F() 94 static HWTEST_F(SessionListenerProxyTest, OnAudioSessionChecked001, testing::ext::TestSize.Level1) in HWTEST_F() 107 static HWTEST_F(SessionListenerProxyTest, OnDeviceAvailable001, testing::ext::TestSize.Level1) in HWTEST_F() 120 static HWTEST_F(SessionListenerProxyTest, OnDeviceOffline001, testing::ext::TestSize.Level1) in HWTEST_F()
|
/third_party/mesa3d/bin/ |
H A D | install_megadrivers.py | 64 name, ext = os.path.splitext(driver) 65 while ext != '.so': 69 name, ext = os.path.splitext(name) 75 name, ext = os.path.splitext(master) 76 while ext != '.so': 79 name, ext = os.path.splitext(name)
|
/third_party/skia/infra/bots/recipe_modules/gold_upload/ |
H A D | api.py | 22 for ext in ['.png']: 24 'find %s images' % ext, 26 '*%s' % ext, 29 files_to_upload = [f for f in files_to_upload if str(f).endswith(ext)] 31 self.m.gsutil.cp('%s images' % ext, results_dir.join('*%s' % ext),
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ExtensionBehavior.cpp | 61 #define RETURN_EXTENSION_NAME_CASE(ext) \ 62 case TExtension::ext: \ 63 return "GL_" #ext; 76 #define RETURN_EXTENSION_IF_NAME_MATCHES(ext) \ 77 if (strcmp(extWithoutGLPrefix, #ext) == 0) \ 79 return TExtension::ext; \
|
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/EcsSerializer/src/ecs_serializer/ |
H A D | ecs_asset_manager.cpp | 38 ExtensionType GetExtensionType(string_view ext) const override; 94 EcsAssetManager::ExtensionType EcsAssetManager::GetExtensionType(string_view ext) const in GetExtensionType() 96 if (ext == "collection") { in GetExtensionType() 98 } else if (ext == "scene") { in GetExtensionType() 100 } else if (ext == "prefab") { in GetExtensionType() 102 } else if (ext == "animation") { in GetExtensionType() 104 } else if (ext == "material") { in GetExtensionType() 106 } else if (ext == "gltf") { in GetExtensionType() 108 } else if (ext == "glb") { in GetExtensionType() 110 } else if (ext in GetExtensionType() [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/ |
H A D | WireExtensionTests.cpp | 49 const auto* ext = reinterpret_cast<const WGPUPrimitiveDepthClampingState*>( in TEST_F() 51 EXPECT_EQ(ext->chain.sType, clientExt.chain.sType); in TEST_F() 52 EXPECT_EQ(ext->clampDepth, true); in TEST_F() 53 EXPECT_EQ(ext->chain.next, nullptr); in TEST_F() 210 const auto* ext = reinterpret_cast<const WGPUPrimitiveDepthClampingState*>( in TEST_F() 212 EXPECT_EQ(ext->chain.sType, clientExt1.chain.sType); in TEST_F() 213 EXPECT_EQ(ext->clampDepth, true); in TEST_F() 215 EXPECT_EQ(ext->chain.next->sType, WGPUSType_Invalid); in TEST_F() 216 EXPECT_EQ(ext->chain.next->next, nullptr); in TEST_F() 232 const auto* ext in TEST_F() [all...] |