Home
last modified time | relevance | path

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

/NextBSD/contrib/apr/file_io/unix/
HDfilepath_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()
/NextBSD/gnu/usr.bin/gdb/kgdb/
HDkld.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()
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_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()
HDsanitizer_deadlock_detector.h317 uptr path_size) { in findPathToLock() argument
321 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size); in findPathToLock()
/NextBSD/contrib/subversion/subversion/libsvn_fs_base/bdb/
HDenv.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()
/NextBSD/contrib/gcc/
HDcse.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()
6756 if (data->path[path_size - 1].status != PATH_NOT_TAKEN) in cse_end_of_basic_block()
6758 data->path[path_size - 1].status = PATH_NOT_TAKEN; in cse_end_of_basic_block()
6762 path_size--; in cse_end_of_basic_block()
6801 if (path_entry < path_size && data->path[path_entry].branch == p) in cse_end_of_basic_block()
6820 … else if ((follow_jumps || skip_blocks) && path_size < PARAM_VALUE (PARAM_MAX_CSE_PATH_LENGTH) - 1 in cse_end_of_basic_block()
6862 path_size = path_entry; in cse_end_of_basic_block()
6897 path_size = path_entry; in cse_end_of_basic_block()
[all …]
/NextBSD/sys/dev/drm2/radeon/
HDradeon_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()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDExpr.h2728 unsigned path_size() const { return CastExprBits.BasePathSize; } in path_size() function
2730 path_iterator path_end() { return path_buffer() + path_size(); } in path_end()
2732 path_const_iterator path_end() const { return path_buffer() + path_size(); } in path_end()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTWriterStmt.cpp589 Record.push_back(E->path_size()); in VisitCastExpr()
641 if (E->path_size() == 0) in VisitImplicitCastExpr()
HDASTReaderStmt.cpp636 assert(NumBaseSpecs == E->path_size()); in VisitCastExpr()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDExpr.cpp1733 assert(Path.size() == path_size()); in setCastPath()
HDExprConstant.cpp3173 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) { in HandleBaseToDerivedCast()
3181 unsigned NewEntriesSize = D.Entries.size() - E->path_size(); in HandleBaseToDerivedCast()