| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_bvgraph.h | 127 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { in findPath() argument 128 if (path_size == 0) in findPath() 137 if (uptr res = findPath(idx, targets, path + 1, path_size - 1)) in findPath() 145 uptr path_size) { in findShortestPath() argument 146 for (uptr p = 1; p <= path_size; p++) in findShortestPath()
|
| H A D | sanitizer_deadlock_detector.h | 311 uptr path_size) { in findPathToLock() argument 315 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size); in findPathToLock()
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | cse.c | 561 int path_size; member 6735 int path_size = data->path_size; in cse_end_of_basic_block() local 6744 while (path_size > 0) in cse_end_of_basic_block() 6746 if (data->path[path_size - 1].status != PATH_NOT_TAKEN) in cse_end_of_basic_block() 6748 data->path[path_size - 1].status = PATH_NOT_TAKEN; in cse_end_of_basic_block() 6752 path_size--; in cse_end_of_basic_block() 6791 if (path_entry < path_size && data->path[path_entry].branch == p) in cse_end_of_basic_block() 6810 … else if ((follow_jumps || skip_blocks) && path_size < PARAM_VALUE (PARAM_MAX_CSE_PATH_LENGTH) - 1 in cse_end_of_basic_block() 6852 path_size = path_entry; in cse_end_of_basic_block() 6887 path_size = path_entry; in cse_end_of_basic_block() [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | cse.c | 582 int path_size; member 6937 int path_size = data->path_size; local 6945 while (path_size > 0) 6947 if (data->path[path_size - 1].status != NOT_TAKEN) 6949 data->path[path_size - 1].status = NOT_TAKEN; 6953 path_size--; 7009 if (path_entry < path_size && data->path[path_entry].branch == p) 7028 else if ((follow_jumps || skip_blocks) && path_size < PATHLENGTH - 1 7071 path_size = path_entry; 7106 path_size = path_entry; [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 786 size_t path_size = path.size(); in DoLoadImage() local 789 if (path_size > buffer_size) in DoLoadImage() 790 buffer_size = path_size; in DoLoadImage()
|
| /openbsd-src/sys/dev/pci/drm/amd/amdgpu/ |
| H A D | amdgpu_atombios.c | 303 int i, j, k, path_size, device_support; in amdgpu_atombios_get_connector_info_from_object_table() local 332 path_size = 0; in amdgpu_atombios_get_connector_info_from_object_table() 336 addr += path_size; in amdgpu_atombios_get_connector_info_from_object_table() 338 path_size += le16_to_cpu(path->usSize); in amdgpu_atombios_get_connector_info_from_object_table()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Expr.h | 3550 bool path_empty() const { return path_size() == 0; } in path_empty() 3551 unsigned path_size() const { return CastExprBits.BasePathSize; } in path_size() function 3553 path_iterator path_end() { return path_buffer() + path_size(); } in path_end() 3555 path_const_iterator path_end() const { return path_buffer() + path_size(); } in path_end() 3647 return path_size(); in numTrailingObjects() 3765 return path_size(); in numTrailingObjects()
|
| H A D | ExprCXX.h | 451 return path_size(); in numTrailingObjects() 1809 return path_size(); in numTrailingObjects()
|
| /openbsd-src/sys/dev/pci/drm/radeon/ |
| H A D | radeon_atombios.c | 533 int i, j, k, path_size, device_support; in radeon_get_atom_connector_info_from_object_table() local 562 path_size = 0; in radeon_get_atom_connector_info_from_object_table() 566 addr += path_size; in radeon_get_atom_connector_info_from_object_table() 568 path_size += le16_to_cpu(path->usSize); in radeon_get_atom_connector_info_from_object_table()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTWriterStmt.cpp | 956 Record.push_back(E->path_size()); in VisitCastExpr() 1018 if (E->path_size() == 0 && !E->hasStoredFPFeatures()) in VisitImplicitCastExpr()
|
| H A D | ASTReaderStmt.cpp | 1087 assert(NumBaseSpecs == E->path_size()); in VisitCastExpr()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 4761 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) { in HandleBaseToDerivedCast() 4769 unsigned NewEntriesSize = D.Entries.size() - E->path_size(); in HandleBaseToDerivedCast()
|