/third_party/glslang/SPIRV/ |
H A D | SpvBuilder.h | 54 #include "GLSL.ext.KHR.h" 116 void addSourceExtension(const char* ext) { sourceExtensions.push_back(ext); } in addSourceExtension() argument 132 void addExtension(const char* ext) { extensions.insert(ext); } in addExtension() argument 133 void removeExtension(const char* ext) in removeExtension() argument 135 extensions.erase(ext); in removeExtension() 137 void addIncorporatedExtension(const char* ext, SpvVersion incorporatedVersion) in addIncorporatedExtension() argument 140 addExtension(ext); in addIncorporatedExtension()
|
/third_party/lame/libmp3lame/ |
H A D | bitstream.c | 576 unsigned int ext = 0; in Huffmancode() local 585 ext++; in Huffmancode() 594 ext |= linbits_x1 << 1u; in Huffmancode() 602 ext <<= linbits; in Huffmancode() 603 ext |= linbits_x2; in Huffmancode() 611 ext <<= 1; in Huffmancode() 613 ext++; in Huffmancode() 627 putbits2(gfc, (int)ext, xbits); in Huffmancode()
|
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_device.c | 660 vk_foreach_struct (ext, pFeatures->pNext) { in pvr_GetPhysicalDeviceFeatures2() 661 pvr_debug_ignored_stype(ext->sType); in pvr_GetPhysicalDeviceFeatures2() 1023 vk_foreach_struct (ext, pProperties->pNext) { in pvr_GetPhysicalDeviceProperties2() 1024 pvr_debug_ignored_stype(ext->sType); in pvr_GetPhysicalDeviceProperties2() 1064 vk_foreach_struct (ext, p->pNext) { in pvr_GetPhysicalDeviceQueueFamilyProperties2() 1065 pvr_debug_ignored_stype(ext->sType); in pvr_GetPhysicalDeviceQueueFamilyProperties2() 1078 vk_foreach_struct (ext, pMemoryProperties->pNext) { in pvr_GetPhysicalDeviceMemoryProperties2() 1079 pvr_debug_ignored_stype(ext->sType); in pvr_GetPhysicalDeviceMemoryProperties2() 1757 vk_foreach_struct_const (ext, pAllocateInfo->pNext) { in pvr_AllocateMemory() 1758 switch ((unsigned)ext in pvr_AllocateMemory() [all...] |
/third_party/node/src/crypto/ |
H A D | crypto_common.cc | 817 bool SafeX509SubjectAltNamePrint(const BIOPointer& out, X509_EXTENSION* ext) { in SafeX509SubjectAltNamePrint() argument 818 const X509V3_EXT_METHOD* method = X509V3_EXT_get(ext); in SafeX509SubjectAltNamePrint() 821 GENERAL_NAMES* names = static_cast<GENERAL_NAMES*>(X509V3_EXT_d2i(ext)); in SafeX509SubjectAltNamePrint() 842 bool SafeX509InfoAccessPrint(const BIOPointer& out, X509_EXTENSION* ext) { in SafeX509InfoAccessPrint() argument 843 const X509V3_EXT_METHOD* method = X509V3_EXT_get(ext); in SafeX509InfoAccessPrint() 847 static_cast<AUTHORITY_INFO_ACCESS*>(X509V3_EXT_d2i(ext)); in SafeX509InfoAccessPrint() 882 X509_EXTENSION* ext = X509_get_ext(cert, index); in GetSubjectAltNameString() 883 CHECK_NOT_NULL(ext); in GetSubjectAltNameString() 885 if (!SafeX509SubjectAltNamePrint(bio, ext)) { in GetSubjectAltNameString() 900 X509_EXTENSION* ext in GetInfoAccessString() [all...] |
/third_party/lwip/src/apps/http/ |
H A D | httpd.c | 846 char *ext; local 896 ext = NULL; 899 ext = tmp + 1; 900 tmp = strchr(ext, '.'); 902 if (ext != NULL) { 906 if (!lwip_stricmp(g_psHTTPHeaders[content_type].extension, ext)) { 923 if (!ext) { 934 } else if (!ext) { 2156 const char *ext = NULL, *sub; local 2163 ext [all...] |
/third_party/mbedtls/library/ |
H A D | ssl_tls12_client.c | 1185 unsigned char *buf, *ext; in ssl_parse_server_hello() local 1443 ext = buf + 40 + n; in ssl_parse_server_hello() 1450 unsigned int ext_id = MBEDTLS_GET_UINT16_BE(ext, 0); in ssl_parse_server_hello() 1451 unsigned int ext_size = MBEDTLS_GET_UINT16_BE(ext, 2); in ssl_parse_server_hello() 1468 if ((ret = ssl_parse_renegotiation_info(ssl, ext + 4, in ssl_parse_server_hello() 1481 ext + 4, ext_size)) != 0) { in ssl_parse_server_hello() 1493 ext + 4, in ssl_parse_server_hello() 1506 ext + 4, ext_size)) != 0) { in ssl_parse_server_hello() 1519 ext + 4, ext_size)) != 0) { in ssl_parse_server_hello() 1531 ext in ssl_parse_server_hello() [all...] |
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | xcodeproj_file.py | 1622 (root, ext) = posixpath.splitext(basename) 1627 if ext != "": 1628 ext = ext[1:].lower() 1633 file_type = extension_map.get(ext, "text") 1634 prop_name = prop_map.get(ext, "lastKnownFileType") 2020 (root, ext) = posixpath.splitext(path) 2021 if ext != "": 2022 ext = ext[ [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | xcodeproj_file.py | 1622 (root, ext) = posixpath.splitext(basename) 1627 if ext != "": 1628 ext = ext[1:].lower() 1633 file_type = extension_map.get(ext, "text") 1634 prop_name = prop_map.get(ext, "lastKnownFileType") 2020 (root, ext) = posixpath.splitext(path) 2021 if ext != "": 2022 ext = ext[ [all...] |
/foundation/multimedia/media_library/frameworks/innerkitsimpl/media_library_helper/src/ |
H A D | media_file_uri.cpp | 592 string ext = MediaFileUtils::GetExtensionFromPath(uri); in GetPathFromUri() local 593 if (ext.empty()) { in GetPathFromUri() 594 MEDIA_ERR_LOG("invalid ext %{public}s", uri.c_str()); in GetPathFromUri() 600 path += PHOTO_BUCKET + "/" + to_string(bucketNum) + "/" + realTitle + "." + ext; in GetPathFromUri() 602 path += AUDIO_BUCKET + "/" + to_string(bucketNum) + "/" + realTitle + "." + ext; in GetPathFromUri()
|
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/ |
H A D | wifi_hdi_common.c | 701 const uint8_t* HdiGetIeExt(const uint8_t *ies, size_t len, uint8_t ext) in HdiGetIeExt() argument 708 HDI_CHECK_ELEMENT_BY_EXTID(elem, ext, ies, len) in HdiGetIeExt() 714 const uint8_t* HdiBssGetIeExt(const uint8_t *ies, size_t len, uint8_t ext) in HdiBssGetIeExt() argument 716 return HdiGetIeExt(ies, len, ext); in HdiBssGetIeExt()
|
/third_party/mesa3d/src/glx/ |
H A D | dri_common.c | 758 __DRIconfigOptionsExtension *ext = in get_driver_config() local 761 if (ext->base.version >= 2) in get_driver_config() 762 config = ext->getXml(driverName); in get_driver_config() 764 config = strdup(ext->xml); in get_driver_config()
|
/third_party/python/Lib/idlelib/ |
H A D | tree.py | 107 file, ext = os.path.splitext(name) 108 ext = ext or ".gif" 109 fullname = os.path.join(ICONDIR, file + ext)
|
/third_party/skia/tools/fm/ |
H A D | fm.cpp | 601 const char* ext = ".png"; in main() 608 ext = ".skp"; in main() 612 ext = ".pdf"; in main() 656 FLAGS_writePath[0], source.name.c_str(), ext); in main()
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_images.py | 165 def check_create_from_file(self, ext): 166 testfile = support.findfile('python.' + ext, subdir='imghdrdata') 180 def check_create_from_data(self, ext): 181 testfile = support.findfile('python.' + ext, subdir='imghdrdata')
|
/third_party/protobuf/ |
H A D | tests.sh | 540 php -dextension=./ext/google/protobuf/modules/protobuf.so ./vendor/bin/phpunit 637 php -dextension=./ext/google/protobuf/modules/protobuf.so ./vendor/bin/phpunit 686 php -dextension=./ext/google/protobuf/modules/protobuf.so ./vendor/bin/phpunit 739 php -dextension=./ext/google/protobuf/modules/protobuf.so ./vendor/bin/phpunit
|
/third_party/mesa3d/src/nouveau/codegen/lib/ |
H A D | gk104.asm | 192 ext u32 $r1 $r0 0x0a0a label 194 ext u32 $r2 $r0 0x0a14 label 210 ext u32 $r1 $r0 0x0a0a label 212 ext u32 $r2 $r0 0x0a14 label 275 ext u32 $r1 $r0 0x0605 label 278 ext u32 $r2 $r0 0x050b label 294 ext u32 $r1 $r0 0x0505 label 295 ext u32 $r2 $r0 0x050a label 562 ext u32 $r2 $r1 0xb14 608 ext u3 871 ext u32 $r3 $r2 0x0814 // MP id global() label 872 ext u32 $r2 $r2 0x0608 // warp id global() label [all...] |
/applications/standard/calendardata/calendarmanager/test/unittest/src/ |
H A D | event_location_test.cpp | 50 HWTEST_F(EventLocationTest, AddEventWithLocation, testing::ext::TestSize.Level1) in HWTEST_F()
|
/base/account/os_account/frameworks/test/unittest/ |
H A D | account_ohosaccount_proxy_mock_test.cpp | 28 using namespace testing::ext;
|
/base/account/os_account/services/accountmgr/test/unittest/common/ability_manager_adapter/ |
H A D | ability_manager_adapter_mock_test.cpp | 24 using namespace testing::ext;
|
/base/customization/enterprise_device_management/test/unittest/services/edm_plugin/src/network/rule/ |
H A D | domain_chain_rule_test.cpp | 24 using namespace testing::ext;
|
/base/customization/enterprise_device_management/test/unittest/services/edm_plugin/src/network/executer/ |
H A D | executer_utils_test.cpp | 23 using namespace testing::ext;
|
/base/hiviewdfx/faultloggerd/test/unittest/sigdump_handler/ |
H A D | sigdump_handler_test.cpp | 32 using namespace testing::ext;
|
/base/hiviewdfx/hidumper/test/unittest/common/ |
H A D | hidumper_zidl_test.cpp | 20 using namespace testing::ext;
|
/base/hiviewdfx/hiview/base/event_store/test/unittest/common/ |
H A D | sys_event_backup_test.cpp | 26 using namespace testing::ext;
|
/base/hiviewdfx/hiview/plugins/sysevent_source/test/unittest/common/ |
H A D | event_json_parser_test.cpp | 47 HWTEST_F(EventJsonParserTest, EventJsonParserTest001, testing::ext::TestSize.Level0) in HWTEST_F()
|