Home
last modified time | relevance | path

Searched refs:version_str (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/usr.bin/lex/
H A Dtables.c80 int yytbl_hdr_init (struct yytbl_hdr *th, const char *version_str, in yytbl_hdr_init() argument
86 th->th_hsize = 14 + strlen (version_str) + 1 + strlen (name) + 1; in yytbl_hdr_init()
90 th->th_version = copy_string (version_str); in yytbl_hdr_init()
H A Dtables.h69 int yytbl_hdr_init (struct yytbl_hdr *th, const char *version_str,
/openbsd-src/sys/dev/pci/drm/apple/
H A Ddcp.c711 char *version_str) in dcp_read_fw_version() argument
723 len_str = scnprintf(version_str, DCP_FW_VERSION_STR_LEN, in dcp_read_fw_version()
727 len_str = scnprintf(version_str, DCP_FW_VERSION_STR_LEN, in dcp_read_fw_version()
732 len_str = scnprintf(version_str, DCP_FW_VERSION_STR_LEN, in dcp_read_fw_version()
737 len_str = strscpy(version_str, "UNKNOWN", in dcp_read_fw_version()
745 dev_warn(dev, "'%s' truncated: '%s'\n", name, version_str); in dcp_read_fw_version()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp427 std::string version_str; in CreateModule() local
432 if (!version_str.empty()) in CreateModule()
433 version_str += "."; in CreateModule()
434 version_str += std::to_string(version_nums[i]); in CreateModule()
436 if (!version_str.empty()) in CreateModule()
437 object.try_emplace("version", version_str); in CreateModule()
/openbsd-src/gnu/llvm/libcxx/utils/
H A Dgenerate_feature_test_macro_components.py971 version_str = template.format(
976 f.write(version_str)
/openbsd-src/gnu/llvm/llvm/utils/release/
H A Dbump-version.py42 def version_str( member in Processor
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp844 llvm::StringRef version_str; in ParseVersionBuildDir() local
846 std::tie(version_str, build_str) = dir.split(' '); in ParseVersionBuildDir()
848 if (!version.tryParse(version_str) || in ParseVersionBuildDir()
/openbsd-src/gnu/llvm/lldb/source/Host/macosx/objcxx/
H A DHostInfoMacOSX.mm81 const char *version_str = [version_value UTF8String];
82 version.tryParse(version_str);
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp2185 char version_str[7]; in GetSharedCacheUUID() local
2187 memcpy(version_str, dsc_header_data.GetData(&offset, 6), 6); in GetSharedCacheUUID()
2188 version_str[6] = '\0'; in GetSharedCacheUUID()
2189 if (strcmp(version_str, "dyld_v") == 0) { in GetSharedCacheUUID()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm2832 if (const char *version_str = [version_value UTF8String])
2833 return version_str;