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

/freebsd-11-stable/contrib/apr/file_io/unix/
H A Dfilepath_util.c71 apr_size_t path_size = 0; local
82 path_size += strlen(((char**)pathelts->elts)[i]);
84 if (path_size == 0)
91 path_size += (i - 1);
94 path = *liststr = apr_palloc(p, path_size + 1);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h125 // stores up to 'path_size' items of the path into 'path',
126 // returns the path length, or 0 if there is no path of size 'path_size'.
127 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { argument
128 if (path_size == 0)
137 if (uptr res = findPath(idx, targets, path + 1, path_size - 1))
145 uptr path_size) {
146 for (uptr p = 1; p <= path_size; p++)
144 findShortestPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
H A Dsanitizer_deadlock_detector.h311 uptr path_size) {
315 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size);
310 findPathToLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, uptr *path, uptr path_size) argument
/freebsd-11-stable/gnu/usr.bin/gdb/kgdb/
H A Dkld.c87 check_kld_path (char *path, size_t path_size) argument
95 if (strlcat(path, *suffix, path_size) < path_size) {
112 find_kld_path (char *filename, char *path, size_t path_size) argument
121 snprintf(path, path_size, "%s/%s", kernel_dir,
123 if (check_kld_path(path, path_size))
134 snprintf(path, path_size, "%s/%s", module_dir,
136 if (check_kld_path(path, path_size))
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Denv.c289 apr_size_t path_size, path_bdb_size;
301 path_size = strlen(path) + 1;
305 bdb = calloc(1, sizeof(*bdb) + path_size + path_bdb_size);
313 bdb->path_bdb = tmp_path_bdb = tmp_path + path_size;
314 apr_cpystrn(tmp_path, path, path_size);
288 apr_size_t path_size, path_bdb_size; local
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dz_Windows_NT_util.cpp642 UINT path_size; local
709 path_size = GetSystemDirectory(path.str, path.size);
710 KMP_DEBUG_ASSERT(path_size > 0);
711 if (path_size >= path.size) {
713 __kmp_str_buf_reserve(&path, path_size);
714 path_size = GetSystemDirectory(path.str, path.size);
715 KMP_DEBUG_ASSERT(path_size > 0);
717 if (path_size > 0 && path_size < path.size) {
720 path.used = path_size;
[all...]
/freebsd-11-stable/sys/dev/xen/netfront/
H A Dnetfront.c471 size_t path_size; local
479 path_size = strlen(node) + 10;
480 path = malloc(path_size, M_DEVBUF, M_WAITOK|M_ZERO);
481 snprintf(path, path_size, "%s/queue-%u", node, rxq->id);
483 path_size = strlen(node) + 1;
484 path = malloc(path_size, M_DEVBUF, M_WAITOK|M_ZERO);
485 snprintf(path, path_size, "%s", node);
/freebsd-11-stable/contrib/gcc/
H A Dcse.c561 int path_size; member in struct:cse_basic_block_data
6771 int path_size = data->path_size;
6780 while (path_size > 0)
6782 if (data->path[path_size - 1].status != PATH_NOT_TAKEN)
6784 data->path[path_size - 1].status = PATH_NOT_TAKEN;
6788 path_size--;
6827 if (path_entry < path_size && data->path[path_entry].branch == p)
6846 else if ((follow_jumps || skip_blocks) && path_size < PARAM_VALUE (PARAM_MAX_CSE_PATH_LENGTH) - 1
6888 path_size
6745 int path_size = data->path_size; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_repos/
H A Dauthz_parse.c651 const apr_size_t path_size = nseg * sizeof(*segment); local
652 SVN_ERR_ASSERT(path_size <= cb->rule_path_buffer.size);
655 rule->path = apr_palloc(cb->authz->pool, path_size);
656 memcpy(rule->path, cb->rule_path_buffer.data, path_size);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp861 size_t path_size = path.size(); local
864 if (path_size > buffer_size)
865 buffer_size = path_size;
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_atombios.c551 int i, j, k, path_size, device_support; local
580 path_size = 0;
584 addr += path_size;
586 path_size += le16_to_cpu(path->usSize);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3220 bool path_empty() const { return path_size() == 0; }
3221 unsigned path_size() const { return CastExprBits.BasePathSize; } function in class:clang::final::final::CastExpr
3223 path_iterator path_end() { return path_buffer() + path_size(); }
3225 path_const_iterator path_end() const { return path_buffer() + path_size(); }
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp860 Record.push_back(E->path_size());
913 if (E->path_size() == 0)
H A DASTReaderStmt.cpp980 assert(NumBaseSpecs == E->path_size());
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp4207 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) {
4215 unsigned NewEntriesSize = D.Entries.size() - E->path_size();

Completed in 343 milliseconds