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

/freebsd-11.0-release/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.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h126 // stores up to 'path_size' items of the path into 'path',
127 // returns the path length, or 0 if there is no path of size 'path_size'.
128 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { argument
129 if (path_size == 0)
138 if (uptr res = findPath(idx, targets, path + 1, path_size - 1))
146 uptr path_size) {
147 for (uptr p = 1; p <= path_size; p++)
145 findShortestPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
H A Dsanitizer_deadlock_detector.h317 uptr path_size) {
321 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size);
316 findPathToLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, uptr *path, uptr path_size) argument
/freebsd-11.0-release/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.0-release/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.0-release/sys/dev/xen/netfront/
H A Dnetfront.c490 size_t path_size; local
498 path_size = strlen(node) + 10;
499 path = malloc(path_size, M_DEVBUF, M_WAITOK|M_ZERO);
500 snprintf(path, path_size, "%s/queue-%u", node, rxq->id);
502 path_size = strlen(node) + 1;
503 path = malloc(path_size, M_DEVBUF, M_WAITOK|M_ZERO);
504 snprintf(path, path_size, "%s", node);
/freebsd-11.0-release/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.0-release/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.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h2677 unsigned path_size() const { return CastExprBits.BasePathSize; } function in class:clang::StringLiteral::final::CallExpr::CastExpr
2679 path_iterator path_end() { return path_buffer() + path_size(); }
2681 path_const_iterator path_end() const { return path_buffer() + path_size(); }
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterStmt.cpp621 Record.push_back(E->path_size());
673 if (E->path_size() == 0)
H A DASTReaderStmt.cpp667 assert(NumBaseSpecs == E->path_size());
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp3258 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) {
3266 unsigned NewEntriesSize = D.Entries.size() - E->path_size();

Completed in 184 milliseconds