Home
last modified time | relevance | path

Searched refs:path_size (Results 1 – 15 of 15) sorted by relevance

/freebsd-12.1/contrib/apr/file_io/unix/
H A Dfilepath_util.c71 apr_size_t path_size = 0; in apr_filepath_list_merge_impl() local
82 path_size += strlen(((char**)pathelts->elts)[i]); in apr_filepath_list_merge_impl()
84 if (path_size == 0) in apr_filepath_list_merge_impl()
91 path_size += (i - 1); in apr_filepath_list_merge_impl()
94 path = *liststr = apr_palloc(p, path_size + 1); in apr_filepath_list_merge_impl()
/freebsd-12.1/gnu/usr.bin/gdb/kgdb/
H A Dkld.c87 check_kld_path (char *path, size_t path_size) in check_kld_path() argument
95 if (strlcat(path, *suffix, path_size) < path_size) { in check_kld_path()
112 find_kld_path (char *filename, char *path, size_t path_size) in find_kld_path() argument
121 snprintf(path, path_size, "%s/%s", kernel_dir, in find_kld_path()
123 if (check_kld_path(path, path_size)) in find_kld_path()
134 snprintf(path, path_size, "%s/%s", module_dir, in find_kld_path()
136 if (check_kld_path(path, path_size)) in find_kld_path()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h128 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { in findPath() argument
129 if (path_size == 0) in findPath()
138 if (uptr res = findPath(idx, targets, path + 1, path_size - 1)) in findPath()
146 uptr path_size) { in findShortestPath() argument
147 for (uptr p = 1; p <= path_size; p++) in findShortestPath()
H A Dsanitizer_deadlock_detector.h317 uptr path_size) { in findPathToLock() argument
321 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size); in findPathToLock()
/freebsd-12.1/contrib/openmp/runtime/src/
H A Dz_Windows_NT_util.cpp589 UINT path_size; in __kmp_runtime_initialize() local
656 path_size = GetSystemDirectory(path.str, path.size); in __kmp_runtime_initialize()
657 KMP_DEBUG_ASSERT(path_size > 0); in __kmp_runtime_initialize()
658 if (path_size >= path.size) { in __kmp_runtime_initialize()
660 __kmp_str_buf_reserve(&path, path_size); in __kmp_runtime_initialize()
661 path_size = GetSystemDirectory(path.str, path.size); in __kmp_runtime_initialize()
662 KMP_DEBUG_ASSERT(path_size > 0); in __kmp_runtime_initialize()
664 if (path_size > 0 && path_size < path.size) { in __kmp_runtime_initialize()
667 path.used = path_size; in __kmp_runtime_initialize()
684 if (path_size > 0 && path_size < path.size) { in __kmp_runtime_initialize()
[all …]
/freebsd-12.1/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Denv.c288 apr_size_t path_size, path_bdb_size; in create_env() local
300 path_size = strlen(path) + 1; in create_env()
304 bdb = calloc(1, sizeof(*bdb) + path_size + path_bdb_size); in create_env()
312 bdb->path_bdb = tmp_path_bdb = tmp_path + path_size; in create_env()
313 apr_cpystrn(tmp_path, path, path_size); in create_env()
/freebsd-12.1/sys/dev/xen/netfront/
H A Dnetfront.c473 size_t path_size; in write_queue_xenstore_keys() local
481 path_size = strlen(node) + 10; in write_queue_xenstore_keys()
482 path = malloc(path_size, M_DEVBUF, M_WAITOK|M_ZERO); in write_queue_xenstore_keys()
483 snprintf(path, path_size, "%s/queue-%u", node, rxq->id); in write_queue_xenstore_keys()
485 path_size = strlen(node) + 1; in write_queue_xenstore_keys()
486 path = malloc(path_size, M_DEVBUF, M_WAITOK|M_ZERO); in write_queue_xenstore_keys()
487 snprintf(path, path_size, "%s", node); in write_queue_xenstore_keys()
/freebsd-12.1/contrib/gcc/
H A Dcse.c561 int path_size; member
6745 int path_size = data->path_size; in cse_end_of_basic_block() local
6754 while (path_size > 0) in cse_end_of_basic_block()
6762 path_size--; in cse_end_of_basic_block()
6897 path_size = path_entry; in cse_end_of_basic_block()
6920 data->path_size = 0; in cse_end_of_basic_block()
6922 data->path_size = path_size; in cse_end_of_basic_block()
6950 val.path_size = 0; in cse_main()
6994 val.path_size = 0; in cse_main()
7015 if (val.path_size > 0) in cse_main()
[all …]
/freebsd-12.1/contrib/subversion/subversion/libsvn_repos/
H A Dauthz_parse.c618 const apr_size_t path_size = nseg * sizeof(*segment); in parse_rule_path() local
619 SVN_ERR_ASSERT(path_size <= cb->rule_path_buffer.size); in parse_rule_path()
622 rule->path = apr_palloc(cb->authz->pool, path_size); in parse_rule_path()
623 memcpy(rule->path, cb->rule_path_buffer.data, path_size); in parse_rule_path()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp1161 size_t path_size = path.size(); in DoLoadImage() local
1164 if (path_size > buffer_size) in DoLoadImage()
1165 buffer_size = path_size; in DoLoadImage()
/freebsd-12.1/sys/dev/drm2/radeon/
H A Dradeon_atombios.c551 int i, j, k, path_size, device_support; in radeon_get_atom_connector_info_from_object_table() local
580 path_size = 0; in radeon_get_atom_connector_info_from_object_table()
584 addr += path_size; in radeon_get_atom_connector_info_from_object_table()
586 path_size += le16_to_cpu(path->usSize); in radeon_get_atom_connector_info_from_object_table()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h3073 bool path_empty() const { return path_size() == 0; } in path_empty()
3074 unsigned path_size() const { return CastExprBits.BasePathSize; } in path_size() function
3076 path_iterator path_end() { return path_buffer() + path_size(); } in path_end()
3078 path_const_iterator path_end() const { return path_buffer() + path_size(); } in path_end()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterStmt.cpp722 Record.push_back(E->path_size()); in VisitCastExpr()
775 if (E->path_size() == 0) in VisitImplicitCastExpr()
H A DASTReaderStmt.cpp778 assert(NumBaseSpecs == E->path_size()); in VisitCastExpr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp3814 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) { in HandleBaseToDerivedCast()
3822 unsigned NewEntriesSize = D.Entries.size() - E->path_size(); in HandleBaseToDerivedCast()