HomeSort by: relevance | last modified time | path
    Searched refs:path_size (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_bvgraph.h 126 // 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) {
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++)
sanitizer_deadlock_detector.h 317 uptr path_size) {
321 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_bvgraph.h 125 // 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) {
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++)
sanitizer_deadlock_detector.h 311 uptr path_size) {
315 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_bvgraph.h 125 // 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) {
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++)
sanitizer_deadlock_detector.h 311 uptr path_size) {
315 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size);
  /src/external/mit/libuv/dist/docs/code/multi-echo-server/
main.c 52 size_t path_size = 500; local
53 uv_exepath(worker_path, &path_size);
  /src/external/gpl3/gcc/dist/gcc/
cse.cc 493 int path_size; member in struct:cse_basic_block_data
6317 int path_size;
6322 path_size = data->path_size;
6325 if (path_size)
6330 if (path_size == 1)
6332 path_size = 0;
6337 if (path_size == 0)
6338 data->path[path_size++].bb = first_bb;
6341 /* Otherwise, path_size must be equal to or greater than 2, becaus
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
cse.cc 511 int path_size; member in struct:cse_basic_block_data
6309 int path_size;
6314 path_size = data->path_size;
6317 if (path_size)
6322 if (path_size == 1)
6324 path_size = 0;
6329 if (path_size == 0)
6330 data->path[path_size++].bb = first_bb;
6333 /* Otherwise, path_size must be equal to or greater than 2, becaus
    [all...]
  /src/external/gpl2/gmake/dist/
job.c 255 unsigned path_size = GetTempPath(sizeof temp_path, temp_path);
260 if (path_size == 0)
262 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
266 while (path_size > 0 &&
267 path_size + sizemax < sizeof temp_path &&
270 unsigned size = sprintf (temp_path + path_size,
272 temp_path[path_size - 1] == '\\' ? "" : "\\",
293 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
305 const unsigned final_size = path_size + size + 1;
253 unsigned path_size = GetTempPath(sizeof temp_path, temp_path); local
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_atombios.c 310 int i, j, k, path_size, device_support; local
339 path_size = 0;
343 addr += path_size;
345 path_size += le16_to_cpu(path->usSize);
  /src/external/mpl/bind/dist/lib/isc/netmgr/
http.c 2030 size_t path_size = 0; local
2058 path_size = cstream->pathlen + base64url_data_len + 5 + 1;
2059 cstream->GET_path = isc_mem_allocate(mctx, path_size);
2061 cstream->GET_path, path_size, "%.*s?dns=%s",
2064 INSIST(cstream->GET_path_len == (path_size - 1));
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 3468 bool path_empty() const { return path_size() == 0; }
3469 unsigned path_size() const { return CastExprBits.BasePathSize; } function in class:clang::final::CastExpr
3471 path_iterator path_end() { return path_buffer() + path_size(); }
3473 path_const_iterator path_end() const { return path_buffer() + path_size(); }
3564 return path_size();
3680 return path_size();
ExprCXX.h 452 return path_size();
1751 return path_size();
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_atombios.c 540 int i, j, k, path_size, device_support; local
569 path_size = 0;
573 addr += path_size;
575 path_size += le16_to_cpu(path->usSize);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterStmt.cpp 949 Record.push_back(E->path_size());
1011 if (E->path_size() == 0 && !E->hasStoredFPFeatures())
ASTReaderStmt.cpp 1086 assert(NumBaseSpecs == E->path_size());
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 4708 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) {
4716 unsigned NewEntriesSize = D.Entries.size() - E->path_size();

Completed in 73 milliseconds