HomeSort by: relevance | last modified time | path
    Searched defs:halfway (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.bin/error/
filter.c 142 int halfway; local
148 halfway = (ub + lb)/2;
149 if ( (order = strcmp(key, names_ignored[halfway])) == 0)
150 return halfway;
152 ub = halfway - 1;
154 lb = halfway + 1;
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/fast_float/
fast_float.h 2517 // get the extended precision value of the halfway point between b and b+u.
2519 // halfway between b and b+u.
2563 uint64_t halfway; variable
2570 halfway = 0;
2572 halfway = uint64_t(1) << (shift - 1);
2575 uint64_t is_above = truncated_bits > halfway;
2576 uint64_t is_halfway = truncated_bits == halfway;
2665 // ....9999 to ...10000, which could cause a false halfway point.
2822 // an extended float representation close to `b+h`, halfway between `b`
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/fast_float/
fast_float.h 2509 // get the extended precision value of the halfway point between b and b+u.
2511 // halfway between b and b+u.
2555 uint64_t halfway; variable
2562 halfway = 0;
2564 halfway = uint64_t(1) << (shift - 1);
2567 uint64_t is_above = truncated_bits > halfway;
2568 uint64_t is_halfway = truncated_bits == halfway;
2657 // ....9999 to ...10000, which could cause a false halfway point.
2814 // an extended float representation close to `b+h`, halfway between `b`

Completed in 31 milliseconds