/aosp_15_r20/libcore/jsr166-tests/src/test/java/jsr166/ |
H A D | ThreadLocalRandomTest.java | 32 * calls, up to NCALLS tries, produce at least one different 60 * Repeated calls to nextInt produce at least two distinct results 71 * Repeated calls to nextLong produce at least two distinct results 82 * Repeated calls to nextBoolean produce at least two distinct results 93 * Repeated calls to nextFloat produce at least two distinct results 104 * Repeated calls to nextDouble produce at least two distinct results 115 * Repeated calls to nextGaussian produce at least two distinct results 139 * nextInt(least >= bound) throws IllegalArgumentException 158 * repeated calls produce at least two distinct results 177 * nextInt(least, bound) returns least <= value < bound; [all …]
|
H A D | ThreadLocalRandom8Test.java | 124 for (int least = -15485867; least < MAX_INT_BOUND; least += 524959) { in testBoundedInts() 125 for (int bound = least + 2; bound > least && bound < MAX_INT_BOUND; bound += 67867967) { in testBoundedInts() 126 final int lo = least, hi = bound; in testBoundedInts() 143 for (long least = -86028121; least < MAX_LONG_BOUND; least += 1982451653L) { in testBoundedLongs() 144 …for (long bound = least + 2; bound > least && bound < MAX_LONG_BOUND; bound += Math.abs(bound * 79… in testBoundedLongs() 145 final long lo = least, hi = bound; in testBoundedLongs() 162 for (double least = 0.00011; least < 1.0e20; least *= 9) { in testBoundedDoubles() 163 for (double bound = least * 1.0011; bound < 1.0e20; bound *= 17) { in testBoundedDoubles() 164 final double lo = least, hi = bound; in testBoundedDoubles() 175 * A parallel unsized stream of ints generates at least 100 values [all …]
|
/aosp_15_r20/libcore/ojluni/src/test/java/util/concurrent/tck/ |
H A D | SplittableRandomTest.java | 83 * least two distinct results. (In some possible universe, a 105 * Repeated calls to nextInt produce at least two distinct results 118 * Repeated calls to nextLong produce at least two distinct results 131 * Repeated calls to nextDouble produce at least two distinct results 203 * nextInt(least >= bound) throws IllegalArgumentException 217 * repeated calls produce at least two distinct results 239 * nextInt(least, bound) returns least <= value < bound; 240 * repeated calls produce at least two distinct results 245 for (int least = -15485863; least < MAX_INT_BOUND; least += 524959) { 246 for (int bound = least + 2; bound > least && bound < MAX_INT_BOUND; bound += 49979687) { [all …]
|
H A D | ThreadLocalRandomTest.java | 69 * calls, up to NCALLS tries, produce at least one different 99 * at least two distinct results, and repeated calls produce all 143 * Repeated calls to nextInt produce at least two distinct results 155 * Repeated calls to nextLong produce at least two distinct results 167 * Repeated calls to nextBoolean produce at least two distinct results 179 * Repeated calls to nextFloat produce at least two distinct results 191 * Repeated calls to nextDouble produce at least two distinct results 203 * Repeated calls to nextGaussian produce at least two distinct results 229 * nextInt(least >= bound) throws IllegalArgumentException 249 * repeated calls produce at least two distinct results [all …]
|
H A D | ThreadLocalRandom8Test.java | 167 for (int least = -15485867; least < MAX_INT_BOUND; least += 524959) { in testBoundedInts() 168 for (int bound = least + 2; bound > least && bound < MAX_INT_BOUND; bound += 67867967) { in testBoundedInts() 169 final int lo = least, hi = bound; in testBoundedInts() 187 for (long least = -86028121; least < MAX_LONG_BOUND; least += 1982451653L) { in testBoundedLongs() 188 …for (long bound = least + 2; bound > least && bound < MAX_LONG_BOUND; bound += Math.abs(bound * 79… in testBoundedLongs() 189 final long lo = least, hi = bound; in testBoundedLongs() 207 for (double least = 0.00011; least < 1.0e20; least *= 9) { in testBoundedDoubles() 208 for (double bound = least * 1.0011; bound < 1.0e20; bound *= 17) { in testBoundedDoubles() 209 final double lo = least, hi = bound; in testBoundedDoubles() 220 * A parallel unsized stream of ints generates at least 100 values [all …]
|
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/Library/ |
H A D | SafeIntLib.h | 74 least as large as the Result type. 101 least as large as the Result type. 128 least as large as the Result type. 155 least as large as the Result type. 182 least as large as the Result type. 209 least as large as the Result type. 236 least as large as the Result type. 263 least as large as the Result type. 290 least as large as the Result type. 317 least as large as the Result type. [all …]
|
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/Library/ |
H A D | SafeIntLib.h | 73 least as large as the Result type. 100 least as large as the Result type. 127 least as large as the Result type. 154 least as large as the Result type. 181 least as large as the Result type. 208 least as large as the Result type. 235 least as large as the Result type. 262 least as large as the Result type. 289 least as large as the Result type. 316 least as large as the Result type. [all …]
|
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Library/ |
H A D | SafeIntLib.h | 73 least as large as the Result type. 100 least as large as the Result type. 127 least as large as the Result type. 154 least as large as the Result type. 181 least as large as the Result type. 208 least as large as the Result type. 235 least as large as the Result type. 262 least as large as the Result type. 289 least as large as the Result type. 316 least as large as the Result type. [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/integer/include/boost/ |
D | integer.hpp | 42 // fast integers from least integers 61 template<> struct int_least_helper<1> { typedef boost::long_long_type least; }; typedef 63 template<> struct int_least_helper<1> { typedef __int64 least; }; typedef 65 template<> struct int_least_helper<2> { typedef long least; }; typedef 66 template<> struct int_least_helper<3> { typedef int least; }; typedef 67 template<> struct int_least_helper<4> { typedef short least; }; typedef 68 template<> struct int_least_helper<5> { typedef signed char least; }; typedef 70 template<> struct uint_least_helper<1> { typedef boost::ulong_long_type least; }; typedef 72 template<> struct uint_least_helper<1> { typedef unsigned __int64 least; }; typedef 74 template<> struct uint_least_helper<2> { typedef unsigned long least; }; typedef [all …]
|
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/ |
H A D | 1-1.c | 38 puts("Test Failed: \%a doesn't equal at least 3 bytes"); in main() 76 * puts("Test Failed: \%c doesn't equal at least 30 bytes"); in main() 85 puts("Test Failed: \%C doesn't equal at least 2 bytes"); in main() 94 puts("Test Failed: \%d doesn't equal at least 2 bytes"); in main() 105 * puts("Test Failed: \%D doesn't equal at least 2 bytes"); in main() 115 puts("Test Failed: \%e doesn't equal at least 2 bytes"); in main() 124 puts("Test Failed: \%F doesn't equal at least 10 bytes"); in main() 133 puts("Test Failed: \%H doesn't equal at least 2 bytes"); in main() 144 * puts("Test Failed: \%g doesn't equal at least 2 bytes"); in main() 154 puts("Test Failed: \%G doesn't equal at least 4 bytes"); in main() [all …]
|
/aosp_15_r20/frameworks/rs/support/java/src/androidx/renderscript/ |
H A D | Allocation.java | 290 * The array must have at least 8 integers, with the first 4 integers copied 295 * The array just needs to have at least 6 integers, with the first 3 integers 302 * The array must have at least 32 bytes, with the first 16 bytes copied 308 * The array just needs to have at least 24 bytes, with the first 12 bytes copied 695 * array in bytes must be at least the size of the Allocation {@link 699 * is disabled, then the size of the array in bytes must be at least the size 704 * is enabled, then the size of the array in bytes must be at least 3/4 the size 721 * array in bytes must be at least the size of the Allocation {@link 725 * is disabled, then the size of the array in bytes must be at least the size 730 * is enabled, then the size of the array in bytes must be at least 3/4 the size [all …]
|
/aosp_15_r20/frameworks/base/rs/java/android/renderscript/ |
H A D | Allocation.java | 321 * The array must have at least 8 integers, with the first 4 integers copied 326 * The array just needs to have at least 6 integers, with the first 3 integers 333 * The array must have at least 32 bytes, with the first 16 bytes copied 339 * The array just needs to have at least 24 bytes, with the first 12 bytes copied 714 * array in bytes must be at least the size of the Allocation {@link 718 * is disabled, then the size of the array in bytes must be at least the size 723 * is enabled, then the size of the array in bytes must be at least 3/4 the size 745 * array in bytes must be at least the size of the Allocation {@link 749 * is disabled, then the size of the array in bytes must be at least the size 754 * is enabled, then the size of the array in bytes must be at least 3/4 the size [all …]
|
/aosp_15_r20/libcore/ojluni/src/test/java/util/Random/ |
H A D | RandomTest.java | 55 * calls, up to NCALLS tries, produce at least one different 75 * Repeated calls to nextInt produce at least two distinct results 87 * Repeated calls to nextLong produce at least two distinct results 99 * Repeated calls to nextBoolean produce at least two distinct results 111 * Repeated calls to nextFloat produce at least two distinct results 123 * Repeated calls to nextDouble produce at least two distinct results 135 * Repeated calls to nextGaussian produce at least two distinct results 157 * least two distinct results 290 for (int least = -15485867; least < MAX_INT_BOUND; least += 524959) { in testBoundedInts() 291 for (int bound = least + 2; bound > least && bound < MAX_INT_BOUND; bound += 67867967) { in testBoundedInts() [all …]
|
/aosp_15_r20/external/google-cloud-java/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ |
H A D | BatchPredictRequestOrBuilder.java | 150 * that have at least this confidence score. The default is 0.5. 155 * have at least this confidence score. The default is 0.5. 159 * it will only produce bounding boxes which have at least this 169 * have at least this confidence score. The default is 0.5. 199 * it will only produce bounding boxes which have at least this 207 * at least that long as a relative value of video frame size are 224 * that have at least this confidence score. The default is 0.5. 229 * have at least this confidence score. The default is 0.5. 233 * it will only produce bounding boxes which have at least this 243 * have at least this confidence score. The default is 0.5. [all …]
|
/aosp_15_r20/external/google-cloud-java/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ |
H A D | BatchPredictRequestOrBuilder.java | 149 * that have at least this confidence score. The default is 0.5. 153 * have at least this confidence score. The default is 0.5. 156 * it will only produce bounding boxes which have at least this 164 * have at least this confidence score. The default is 0.5. 194 * it will only produce bounding boxes which have at least this 200 * at least that long as a relative value of video frame size will be 216 * that have at least this confidence score. The default is 0.5. 220 * have at least this confidence score. The default is 0.5. 223 * it will only produce bounding boxes which have at least this 231 * have at least this confidence score. The default is 0.5. [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/integer/doc/ |
D | integer.qbk | 45 [[link boost_integer.gcd_lcm Greatest Common Divisor and Least Common Multiple].] 169 // fast integers from least integers 182 typedef ``['implementation-defined-type]`` least; 183 typedef int_fast_t<least>::fast fast; 192 typedef ``['implementation-defined-type]`` least; 193 typedef int_fast_t<least>::fast fast; 200 typedef ``['implementation-defined-type]`` least; 201 typedef int_fast_t<least>::fast fast; 207 typedef ``['implementation-defined-type]`` least; 208 typedef int_fast_t<least>::fast fast; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/lib/clang/19/include/ |
D | bmiintrin.h | 212 /// in the least significant bits of the result. 222 /// specify the index of the least significant bit. Bits [15:8] specify the 224 /// \returns An unsigned integer whose least significant bits contain the 235 /// in the least significant bits of the result. 244 /// An unsigned integer used to specify the index of the least significant 249 /// \returns An unsigned integer whose least significant bits contain the 260 /// in the least significant bits of the result. 270 /// specify the index of the least significant bit. Bits [15:8] specify the 272 /// \returns An unsigned integer whose least significant bits contain the 280 /// Clears all bits in the source except for the least significant bit [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/lib/clang/19/include/ |
D | bmiintrin.h | 211 /// in the least significant bits of the result. 221 /// specify the index of the least significant bit. Bits [15:8] specify the 223 /// \returns An unsigned integer whose least significant bits contain the 234 /// in the least significant bits of the result. 243 /// An unsigned integer used to specify the index of the least significant 248 /// \returns An unsigned integer whose least significant bits contain the 259 /// in the least significant bits of the result. 269 /// specify the index of the least significant bit. Bits [15:8] specify the 271 /// \returns An unsigned integer whose least significant bits contain the 279 /// Clears all bits in the source except for the least significant bit [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/lib/clang/19/include/ |
D | bmiintrin.h | 212 /// in the least significant bits of the result. 222 /// specify the index of the least significant bit. Bits [15:8] specify the 224 /// \returns An unsigned integer whose least significant bits contain the 235 /// in the least significant bits of the result. 244 /// An unsigned integer used to specify the index of the least significant 249 /// \returns An unsigned integer whose least significant bits contain the 260 /// in the least significant bits of the result. 270 /// specify the index of the least significant bit. Bits [15:8] specify the 272 /// \returns An unsigned integer whose least significant bits contain the 280 /// Clears all bits in the source except for the least significant bit [all …]
|
/aosp_15_r20/prebuilts/clang-tools/linux-x86/lib64/clang/19/include/ |
H A D | bmiintrin.h | 212 /// in the least significant bits of the result. 222 /// specify the index of the least significant bit. Bits [15:8] specify the 224 /// \returns An unsigned integer whose least significant bits contain the 235 /// in the least significant bits of the result. 244 /// An unsigned integer used to specify the index of the least significant 249 /// \returns An unsigned integer whose least significant bits contain the 260 /// in the least significant bits of the result. 270 /// specify the index of the least significant bit. Bits [15:8] specify the 272 /// \returns An unsigned integer whose least significant bits contain the 280 /// Clears all bits in the source except for the least significant bit [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/ |
H A D | tbm.rs | 29 /// the least significant bits of the result. 37 /// the least significant bits of the result. 45 /// the least significant bits of the result. 56 /// the least significant bits of the result. 67 /// Clears all bits below the least significant zero bit of `x`. 78 /// Clears all bits below the least significant zero bit of `x`. 90 /// Sets all bits of `x` to 1 except for the least significant zero bit. 101 /// Sets all bits of `x` to 1 except for the least significant zero bit. 113 /// Sets the least significant zero bit of `x` and clears all other bits. 124 /// Sets the least significant zero bit of `x` and clears all other bits. [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/ |
H A D | tbm.rs | 29 /// the least significant bits of the result. 37 /// the least significant bits of the result. 45 /// the least significant bits of the result. 56 /// the least significant bits of the result. 67 /// Clears all bits below the least significant zero bit of `x`. 78 /// Clears all bits below the least significant zero bit of `x`. 90 /// Sets all bits of `x` to 1 except for the least significant zero bit. 101 /// Sets all bits of `x` to 1 except for the least significant zero bit. 113 /// Sets the least significant zero bit of `x` and clears all other bits. 124 /// Sets the least significant zero bit of `x` and clears all other bits. [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/ |
H A D | tbm.rs | 29 /// the least significant bits of the result. 37 /// the least significant bits of the result. 45 /// the least significant bits of the result. 56 /// the least significant bits of the result. 67 /// Clears all bits below the least significant zero bit of `x`. 78 /// Clears all bits below the least significant zero bit of `x`. 90 /// Sets all bits of `x` to 1 except for the least significant zero bit. 101 /// Sets all bits of `x` to 1 except for the least significant zero bit. 113 /// Sets the least significant zero bit of `x` and clears all other bits. 124 /// Sets the least significant zero bit of `x` and clears all other bits. [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/ |
H A D | tbm.rs | 29 /// the least significant bits of the result. 37 /// the least significant bits of the result. 45 /// the least significant bits of the result. 56 /// the least significant bits of the result. 67 /// Clears all bits below the least significant zero bit of `x`. 78 /// Clears all bits below the least significant zero bit of `x`. 90 /// Sets all bits of `x` to 1 except for the least significant zero bit. 101 /// Sets all bits of `x` to 1 except for the least significant zero bit. 113 /// Sets the least significant zero bit of `x` and clears all other bits. 124 /// Sets the least significant zero bit of `x` and clears all other bits. [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/ |
H A D | tbm.rs | 29 /// the least significant bits of the result. 37 /// the least significant bits of the result. 45 /// the least significant bits of the result. 56 /// the least significant bits of the result. 67 /// Clears all bits below the least significant zero bit of `x`. 78 /// Clears all bits below the least significant zero bit of `x`. 90 /// Sets all bits of `x` to 1 except for the least significant zero bit. 101 /// Sets all bits of `x` to 1 except for the least significant zero bit. 113 /// Sets the least significant zero bit of `x` and clears all other bits. 124 /// Sets the least significant zero bit of `x` and clears all other bits. [all …]
|