/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/ |
H A D | underflow.pass.cpp | 29 typename base::int_type underflow() {return base::underflow();} in underflow() function 38 assert(sb.underflow() == '1'); in main() 39 assert(sb.underflow() == '1'); in main() 41 assert(sb.underflow() == '2'); in main() 42 assert(sb.underflow() == '2'); in main() 44 assert(sb.underflow() == '3'); in main() 45 assert(sb.underflow() == '3'); in main() 47 assert(sb.underflow() == std::char_traits<char>::eof()); in main() 48 assert(sb.underflow() == std::char_traits<char>::eof()); in main() 50 assert(sb.underflow() == '4'); in main() [all …]
|
/aosp_15_r20/external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/ |
H A D | underflow.pass.cpp | 28 typename base::int_type underflow() {return base::underflow();} in underflow() function 37 assert(sb.underflow() == '1'); in main() 38 assert(sb.underflow() == '1'); in main() 40 assert(sb.underflow() == '2'); in main() 41 assert(sb.underflow() == '2'); in main() 43 assert(sb.underflow() == '3'); in main() 44 assert(sb.underflow() == '3'); in main() 46 assert(sb.underflow() == std::char_traits<char>::eof()); in main() 47 assert(sb.underflow() == std::char_traits<char>::eof()); in main() 49 assert(sb.underflow() == '4'); in main() [all …]
|
/aosp_15_r20/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/ |
H A D | underflow.pass.cpp | 28 base::int_type underflow() {return base::underflow();} in underflow() function 36 assert(sb.underflow() == '1'); in main() 37 assert(sb.underflow() == '1'); in main() 39 assert(sb.underflow() == '2'); in main() 40 assert(sb.underflow() == '2'); in main() 42 assert(sb.underflow() == '3'); in main() 43 assert(sb.underflow() == '3'); in main() 45 assert(sb.underflow() == EOF); in main() 46 assert(sb.underflow() == EOF); in main() 48 assert(sb.underflow() == '4'); in main() [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/ |
H A D | underflow.pass.cpp | 31 base::int_type underflow() {return base::underflow();} in underflow() function 39 assert(sb.underflow() == '1'); in main() 40 assert(sb.underflow() == '1'); in main() 42 assert(sb.underflow() == '2'); in main() 43 assert(sb.underflow() == '2'); in main() 45 assert(sb.underflow() == '3'); in main() 46 assert(sb.underflow() == '3'); in main() 48 assert(sb.underflow() == EOF); in main() 49 assert(sb.underflow() == EOF); in main() 51 assert(sb.underflow() == '4'); in main() [all …]
|
/aosp_15_r20/external/libgsm/add-test/ |
H A D | add_test.dta | 44 ' underflow 84 ' underflow 125 ' underflow 164 ' underflow 220 ' underflow 262 ' underflow 463 ' underflow 503 ' underflow 544 ' underflow 601 ' underflow [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/file.streams/fstreams/filebuf.virtuals/ |
H A D | underflow.pass.cpp | 38 virtual int_type underflow() {return base::underflow();} in underflow() function 50 assert(f.underflow() == '1'); in main() 64 assert(f.underflow() == '1'); in main() 87 assert(f.underflow() == L'1'); in main() 101 assert(f.underflow() == L'1'); in main()
|
/aosp_15_r20/external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/ |
H A D | underflow.pass.cpp | 37 virtual int_type underflow() {return base::underflow();} in underflow() function 49 assert(f.underflow() == '1'); in main() 63 assert(f.underflow() == '1'); in main() 85 assert(f.underflow() == L'1'); in main() 99 assert(f.underflow() == L'1'); in main()
|
/aosp_15_r20/art/compiler/optimizing/ |
H A D | bounds_check_elimination.cc | 238 ValueBound Add(int32_t c, /* out */ bool* overflow, /* out */ bool* underflow) const { in Add() 239 *overflow = *underflow = false; in Add() 261 *underflow = true; in Add() 272 *underflow = true; in Add() 337 bool overflow, underflow; in Add() local 338 ValueBound lower = lower_.Add(constant, &overflow, &underflow); in Add() 339 if (underflow) { in Add() 344 ValueBound upper = upper_.Add(constant, &overflow, &underflow); in Add() 682 bool underflow; in HandleIfBetweenTwoMonotonicValueRanges() local 686 right_range->GetBound().Add(left_compensation, &overflow, &underflow)); in HandleIfBetweenTwoMonotonicValueRanges() [all …]
|
/aosp_15_r20/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/ |
H A D | underflow.pass.cpp | 38 virtual int_type underflow() {return base::underflow();} in underflow() function 49 assert(f.underflow() == L'1'); in main() 61 assert(f.underflow() == L'1'); in main()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/ |
H A D | underflow.pass.cpp | 43 virtual int_type underflow() {return base::underflow();} in underflow() function 55 assert(f.underflow() == L'1'); in main() 68 assert(f.underflow() == L'1'); in main()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/date_time/include/boost/date_time/ |
D | wrapping_int.hpp | 65 IntT underflow = static_cast<IntT>(-(v / (wrap_val))); in subtract() local 67 return calculate_wrap(underflow) * -1; in subtract() 138 IntT underflow = static_cast<IntT>(-(v / (wrap_max - wrap_min + 1))); in subtract() local 140 return calculate_wrap(underflow); in subtract()
|
/aosp_15_r20/external/googleapis/google/api/servicecontrol/v1/ |
H A D | distribution.proto | 41 // The number of finite buckets. With the underflow and overflow buckets, 60 // The number of finite buckets. With the underflow and overflow buckets, 89 // underflow and overflow buckets. 92 // i == 0 (underflow) -inf bound[i] 121 // `bucket_counts[0]` is the number of samples in the underflow bucket. 137 // The first bucket is the underflow bucket which has a lower bound 149 // inclusive. The upper bound of the underflow bucket is equal to the
|
/aosp_15_r20/external/google-cloud-java/java-service-control/proto-google-cloud-service-control-v1/src/main/proto/google/api/servicecontrol/v1/ |
H A D | distribution.proto | 41 // The number of finite buckets. With the underflow and overflow buckets, 60 // The number of finite buckets. With the underflow and overflow buckets, 89 // underflow and overflow buckets. 92 // i == 0 (underflow) -inf bound[i] 121 // `bucket_counts[0]` is the number of samples in the underflow bucket. 137 // The first bucket is the underflow bucket which has a lower bound 149 // inclusive. The upper bound of the underflow bucket is equal to the
|
/aosp_15_r20/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
H A D | pb_bufmgr_debug.c | 187 bool underflow, overflow; in pb_debug_buffer_check() local 190 underflow = !check_random_pattern(map, buf->underflow_size, in pb_debug_buffer_check() 192 if(underflow) { in pb_debug_buffer_check() 210 if(underflow || overflow) in pb_debug_buffer_check() 213 assert(!underflow); in pb_debug_buffer_check() 217 if(underflow) in pb_debug_buffer_check()
|
/aosp_15_r20/external/trusty/musl/src/math/i386/ |
D | exp.s | 9 # subnormal x, return x with underflow 32 # subnormal x, return x with underflow 49 # x*log2e < -65, return -1 without underflow 125 fstps (%esp) # raise underflow
|
/aosp_15_r20/frameworks/proto_logging/stats/atoms/expresslog/ |
H A D | expresslog_extension_atoms.proto | 72 // 2 extra bins reserved to represent underflow/overflow 73 // dim[bins_count] - could be considered as an underflow bin 89 // 2 extra bins reserved to represent underflow/overflow 90 // dim[bins_count] - could be considered as an underflow bin
|
/aosp_15_r20/prebuilts/go/linux-x86/src/math/ |
D | exp_arm64.s | 35 BLT underflow // x < Underflow, return 0 99 underflow: label 121 BLT underflow // x < Underflow, return 0 176 underflow: label
|
/aosp_15_r20/external/oboe/samples/RhythmGame/third_party/glm/gtc/ |
H A D | ulp.inl | 88 if(t==x) return t; else return x; // raise underflow flag 105 if(hy<0x00800000) { // underflow 107 if(t!=x) { // raise underflow flag 134 if(t==x) return t; else return x; // raise underflow flag 155 if(hy<0x00100000) { // underflow 157 if(t!=x) { // raise underflow flag
|
/aosp_15_r20/hardware/google/gfxstream/third-party/glm/include/glm/gtc/ |
D | ulp.inl | 88 if(t==x) return t; else return x; // raise underflow flag 105 if(hy<0x00800000) { // underflow 107 if(t!=x) { // raise underflow flag 134 if(t==x) return t; else return x; // raise underflow flag 155 if(hy<0x00100000) { // underflow 157 if(t!=x) { // raise underflow flag
|
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/ |
D | histogram.go | 92 underflow atomic.Uint64 member 108 h.underflow.Add(1) 143 hist.counts[0] = h.underflow.Load()
|
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/doc/mpfr/ |
D | BUGS | 25 * The overflow/underflow exceptions may be badly handled in some functions; 28 CPU) or the exact result is close to an overflow/underflow threshold. 45 * Possible incorrect results due to internal underflow, which can lead to 47 account. If the underflow occurs at the last function call (just before
|
/aosp_15_r20/external/googleapis/google/api/ |
H A D | distribution.proto | 60 // distribution consists of an underflow bucket (number 0), zero or more 64 // of finite values: lower bound of the underflow bucket is -infinity and the 69 // (except overflow and underflow). Each bucket represents a constant 120 // element is the common boundary of the overflow and underflow buckets. 206 // count for the underflow bucket (number 0). The next N-2 values are the
|
/aosp_15_r20/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/proto/google/api/ |
H A D | distribution.proto | 60 // distribution consists of an underflow bucket (number 0), zero or more 64 // of finite values: lower bound of the underflow bucket is -infinity and the 69 // (except overflow and underflow). Each bucket represents a constant 120 // element is the common boundary of the overflow and underflow buckets. 206 // count for the underflow bucket (number 0). The next N-2 values are the
|
/aosp_15_r20/external/python/cpython2/Lib/test/ |
D | test_long_future.py | 82 for underflow in ["1 / huge", "2L / huge", "-1 / huge", "-2L / huge", 84 result = eval(underflow, namespace) 86 'from {!r}'.format(underflow))
|
/aosp_15_r20/prebuilts/vndk/v33/x86/include/external/libcxx/include/ |
D | streambuf | 96 virtual int_type underflow(); 196 return underflow(); 285 virtual int_type underflow(); 434 basic_streambuf<_CharT, _Traits>::underflow() 443 if (underflow() == traits_type::eof())
|