Home
last modified time | relevance | path

Searched defs:max (Results 1 – 25 of 7768) sorted by relevance

12345678910>>...311

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container/test/
Dalloc_full_test.cpp52 for(int j = 0, max = (int)buffers.size() in test_allocation() local
70 for(int j = 0, max = (int)buffers.size() in test_allocation() local
110 for(int i = 0, max = (int)buffers.size() in test_allocation_shrink() local
140 for(int j = 0, max = (int)buffers.size() in test_allocation_shrink() local
169 for(int i = 0, max = (int)buffers.size() in test_allocation_expand() local
190 for(int j = 0, max = (int)buffers.size() in test_allocation_expand() local
226 for(int i = 0, max = (int)buffers.size() in test_allocation_shrink_and_expand() local
246 for(int i = 0, max = (int)buffers.size() in test_allocation_shrink_and_expand() local
265 for(int j = 0, max = (int)buffers.size() in test_allocation_shrink_and_expand() local
296 for(int i = 0, max = (int)buffers.size() in test_allocation_deallocation_expand() local
[all …]
/aosp_15_r20/frameworks/rs/driver/runtime/arch/
H A Dgeneric.c231 extern char __attribute__((overloadable)) max(char v1, char v2) { in max() function
235 extern char2 __attribute__((overloadable)) max(char2 v1, char2 v2) { in max() function
242 extern char3 __attribute__((overloadable)) max(char3 v1, char3 v2) { in max() function
250 extern char4 __attribute__((overloadable)) max(char4 v1, char4 v2) { in max() function
259 extern short __attribute__((overloadable)) max(short v1, short v2) { in max() function
263 extern short2 __attribute__((overloadable)) max(short2 v1, short2 v2) { in max() function
270 extern short3 __attribute__((overloadable)) max(short3 v1, short3 v2) { in max() function
278 extern short4 __attribute__((overloadable)) max(short4 v1, short4 v2) { in max() function
287 extern int __attribute__((overloadable)) max(int v1, int v2) { in max() function
291 extern int2 __attribute__((overloadable)) max(int2 v1, int2 v2) { in max() function
[all …]
/aosp_15_r20/external/fhir/spec/r4/json_definitions/
Dprofiles-resources.json21010 "max" : "1", string
21018 "max" : "*", string
21027 "max" : "1", string
21036 "max" : "1", string
21045 "max" : "1", string
21054 "max" : "1", string
21062 "max" : "1", string
21070 "max" : "1", string
21078 "max" : "1", string
21086 "max" : "1", string
[all …]
Dprofiles-others.json70 "max" : "1", string
74 "max" : "*" string
158 "max" : "1", string
162 "max" : "1" string
180 "max" : "1", string
184 "max" : "1" string
207 "max" : "1", string
211 "max" : "1" string
235 "max" : "1", string
239 "max" : "1" string
[all …]
Dextension-definitions.json51 "max" : "1", string
55 "max" : "*" string
83 "max" : "1", string
87 "max" : "1" string
117 "max" : "0", string
121 "max" : "*" string
153 "max" : "1", string
157 "max" : "1" string
180 "max" : "1", string
184 "max" : "1" string
[all …]
Dprofiles-types.json65 "max" : "*", string
69 "max" : "*" string
92 "max" : "1", string
96 "max" : "1" string
129 "max" : "*", string
133 "max" : "*" string
177 "max" : "*", string
198 "max" : "1", string
228 "max" : "*", string
299 "max" : "*", string
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/test/sdk-benchmarks/src/main/resources/software/amazon/awssdk/benchmark/
H A Dbaseline.json16 "max": 11201.90868543306, number
36 "max": 3168.0172510726, number
56 "max": 9457.777847805768, number
76 "max": 10172.340399895851, number
96 "max": 2362.020636579015, number
116 "max": 2787.7737717880227, number
136 "max": 6499.658012694073, number
156 "max": 7377.236551369815, number
176 "max": 2277.64629879439, number
196 "max": 2387.296816018288, number
[all …]
/aosp_15_r20/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/driver/
H A DFuzzedDataProviderImpl.java146 public byte consumeByte(byte min, byte max) { in consumeByte()
157 public short consumeShort(short min, short max) { in consumeShort()
170 public int consumeInt(int min, int max) { in consumeInt()
183 public long consumeLong(long min, long max) { in consumeLong()
198 public float consumeRegularFloat(float min, float max) { in consumeRegularFloat()
211 public double consumeRegularDouble(double min, double max) { in consumeRegularDouble()
226 public char consumeChar(char min, char max) { in consumeChar()
250 private native byte consumeByteUnchecked(byte min, byte max); in consumeByteUnchecked()
251 private native short consumeShortUnchecked(short min, short max); in consumeShortUnchecked()
252 private native char consumeCharUnchecked(char min, char max); in consumeCharUnchecked()
[all …]
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/math/
H A DNumberUtils.java1191 public static long max(final long... array) { in max() method in NumberUtils
1196 long max = array[0]; in max() local
1215 public static int max(final int... array) { in max() method in NumberUtils
1220 int max = array[0]; in max() local
1239 public static short max(final short... array) { in max() method in NumberUtils
1244 short max = array[0]; in max() local
1263 public static byte max(final byte... array) { in max() method in NumberUtils
1288 public static double max(final double... array) { in max() method in NumberUtils
1293 double max = array[0]; in max() local
1316 public static float max(final float... array) { in max() method in NumberUtils
[all …]
H A DIEEE754rUtils.java151 public static double max(final double... array) { in max() method in IEEE754rUtils
156 double max = array[0]; in max() local
173 public static float max(final float... array) { in max() method in IEEE754rUtils
178 float max = array[0]; in max() local
196 public static double max(final double a, final double b, final double c) { in max() method in IEEE754rUtils
209 public static double max(final double a, final double b) { in max() method in IEEE754rUtils
229 public static float max(final float a, final float b, final float c) { in max() method in IEEE754rUtils
242 public static float max(final float a, final float b) { in max() method in IEEE754rUtils
/aosp_15_r20/external/igt-gpu-tools/tools/
H A Dintel_display_poller.c154 static void poll_pixel_pipestat(int pipe, int bit, uint32_t *min, uint32_t *max, const int count) in poll_pixel_pipestat()
191 static void poll_pixel_iir_gen3(int pipe, int bit, uint32_t *min, uint32_t *max, const int count) in poll_pixel_iir_gen3()
234 static void poll_pixel_framecount_gen3(int pipe, uint32_t *min, uint32_t *max, const int count) in poll_pixel_framecount_gen3()
262 uint32_t *min, uint32_t *max, const int count) in poll_pixel_pan()
300 uint32_t *min, uint32_t *max, const int count) in poll_pixel_flip()
337 static void poll_pixel_wrap(int pipe, uint32_t *min, uint32_t *max, const int count) in poll_pixel_wrap()
362 uint32_t *min, uint32_t *max, const int count) in poll_dsl_pipestat()
407 uint32_t *min, uint32_t *max, const int count) in poll_dsl_iir_gen2()
458 uint32_t *min, uint32_t *max, const int count) in poll_dsl_iir_gen3()
509 uint32_t *min, uint32_t *max, const int count) in poll_dsl_deiir()
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/elasticinference/src/main/resources/codegen-resources/
H A Dservice-2.json108 "max":256, number
113 "max":256, number
120 "max":1000, number
144 "max":100, number
149 "max":256, number
156 "max":100, number
180 "max":100, number
185 "max":256, number
325 "max":100, number
330 "max":128, number
[all …]
/aosp_15_r20/external/pytorch/aten/src/ATen/cuda/
H A DNumericLimits.cuh37 static inline __host__ __device__ bool max() { return true; } in max() function
45 static inline __host__ __device__ uint8_t max() { return UINT8_MAX; } in max() function
53 static inline __host__ __device__ int8_t max() { return INT8_MAX; } in max() function
61 static inline __host__ __device__ int16_t max() { return INT16_MAX; } in max() function
69 static inline __host__ __device__ int32_t max() { return INT32_MAX; } in max() function
78 static inline __host__ __device__ int64_t max() { return _I64_MAX; } in max() function
92 …static inline __host__ __device__ at::Half max() { return at::Half(0x7BFF, at::Half::from_bits());… in max() function
100 …static inline __host__ __device__ at::BFloat16 max() { return at::BFloat16(0x7F7F, at::BFloat16::f… in max() function
108 static inline __host__ __device__ float max() { return FLT_MAX; } in max() function
116 static inline __host__ __device__ double max() { return DBL_MAX; } in max() function
/aosp_15_r20/external/aws-sdk-java-v2/services/marketplacecatalog/src/main/resources/codegen-resources/
H A Dservice-2.json243 "max":2048, number
270 "max":10, number
275 "max":255, number
379 "max":10, number
384 "max":255, number
401 "max":10, number
438 "max":72, number
458 "max":2048, number
498 "max":64, number
538 "max":72, number
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/personalizeruntime/src/main/resources/codegen-resources/
H A Dservice-2.json64 "max":256 number
72 "max":256, number
77 "max":150, number
82 "max":1000, number
87 "max":150 number
92 "max":99 number
96 "max":20000 number
102 "max":150 number
106 "max":256 number
111 "max":50, number
[all …]
/aosp_15_r20/frameworks/base/graphics/java/android/graphics/
H A DColorSpace.java1410 @NonNull @Size(min = 2, max = 3) float[] whitePoint) { in adapt() argument
1439 @NonNull @Size(min = 2, max = 3) float[] whitePoint, in adapt() argument
2789 @NonNull @Size(min = 6, max = 9) float[] primaries, in Rgb() argument
2794 float max) { in Rgb()
2863 @NonNull @Size(min = 6, max = 9) float[] primaries, in Rgb() argument
2907 @NonNull @Size(min = 6, max = 9) float[] primaries, in Rgb() argument
2979 @NonNull @Size(min = 6, max = 9) float[] primaries, in Rgb() argument
3024 @NonNull @Size(min = 6, max = 9) float[] primaries, in Rgb() argument
3028 float max, in Rgb()
3081 @NonNull @Size(min = 6, max = 9) float[] primaries, in Rgb() argument
[all …]
/aosp_15_r20/external/libvpx/test/
H A Dminmax_test.cc46 int max = 0; in reference_minmax() local
66 int min, max; in TEST_P() local
80 int min, max; in TEST_P() local
94 int min_ref, max_ref, min, max; in TEST_P() local
109 int min_ref, max_ref, min, max; in TEST_P() local
127 int max = 0; in highbd_reference_minmax() local
152 int min, max; in TEST_P() local
171 int min, max; in TEST_P() local
190 int min_ref, max_ref, min, max; in TEST_P() local
210 int min_ref, max_ref, min, max; in TEST_P() local
/aosp_15_r20/external/libaom/test/
H A Dminmax_test.cc47 int max = 0; in reference_minmax() local
67 int min, max; in TEST_P() local
81 int min, max; in TEST_P() local
95 int min_ref, max_ref, min, max; in TEST_P() local
110 int min_ref, max_ref, min, max; in TEST_P() local
128 int max = 0; in highbd_reference_minmax() local
153 int min, max; in TEST_P() local
172 int min, max; in TEST_P() local
191 int min_ref, max_ref, min, max; in TEST_P() local
211 int min_ref, max_ref, min, max; in TEST_P() local
/aosp_15_r20/external/aws-sdk-java-v2/services/dlm/src/main/resources/codegen-resources/
H A Dservice-2.json161 "max":1, number
166 "max":120, number
194 "max":16, number
201 "max":10, number
206 "max":12, number
212 "max":2048, number
220 "max":1000, number
326 "max":106, number
352 "max":3, number
421 "max":3, number
[all …]
/aosp_15_r20/external/cronet/base/android/java/src/org/chromium/base/metrics/
H A DCachingUmaRecorder.java104 Histogram(@Type int type, String name, int min, int max, int numBuckets) { in Histogram()
133 @Type int type, String name, int sample, int min, int max, int numBuckets) { in addSample()
137 assert mMax == max; in addSample() local
363 @Histogram.Type int type, String name, int sample, int min, int max, int numBuckets) { in cacheOrRecordHistogramSample()
403 @Histogram.Type int type, String name, int sample, int min, int max, int numBuckets) { in tryAppendOrRecordSample()
436 @Histogram.Type int type, String name, int sample, int min, int max, int numBuckets) { in cacheHistogramSampleAlreadyWriteLocked()
467 @Histogram.Type int type, String name, int sample, int min, int max, int numBuckets) { in recordHistogramSampleAlreadyLocked()
493 final int max = 0; in recordBooleanHistogram() local
500 String name, int sample, int min, int max, int numBuckets) { in recordExponentialHistogram()
506 public void recordLinearHistogram(String name, int sample, int min, int max, int numBuckets) { in recordLinearHistogram()
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/personalizeevents/src/main/resources/codegen-resources/
H A Dservice-2.json103 "max":256, number
110 "max":25, number
164 "max":1024, number
171 "max":10, number
177 "max":10, number
182 "max":32000, number
188 "max":256, number
243 "max":1024, number
249 "max":10, number
254 "max":1024, number
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/lang/Math/
H A DClamp.java72 int max = Math.toIntExact(test[2]); in testIntClamp() local
80 int max = Math.toIntExact(test[2]); in testIntClamp() local
112 long max = test[2]; in testLongClamp() local
120 long max = test[2]; in testLongClamp() local
176 double max = test[2]; in testDoubleClamp() local
184 double max = test[2]; in testDoubleClamp() local
240 float max = test[2]; in testFloatClamp() local
248 float max = test[2]; in testFloatClamp() local
/aosp_15_r20/external/rust/android-crates-io/crates/num-integer/tests/
Daverage.rs15 let max = $crate::std::$I::MAX; localVariable
26 let max = $crate::std::$I::MAX; localVariable
39 let max = $crate::std::$I::MAX; localVariable
50 let max = $crate::std::$I::MAX; localVariable
68 let max = $crate::std::$U::MAX; localVariable
85 let max = $crate::std::$U::MAX; localVariable
/aosp_15_r20/external/aws-sdk-java-v2/services/scheduler/src/main/resources/codegen-resources/
H A Dservice-2.json269 "max":255, number
275 "max":6, number
299 "max":100000, number
304 "max":1000, number
309 "max":64, number
446 "max":1600, number
506 "max":512, number
511 "max":128, number
748 "max":255, number
775 "max":2048, number
[all …]
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DMullerSolver.java66 public double solve(final double min, final double max) in solve()
73 public double solve(final double min, final double max, final double initial) in solve()
96 final double min, final double max, final double initial) in solve()
120 final double min, final double max, final double initial) in solve()
164 final double min, final double max) in solve()
197 final double min, final double max) in solve()
308 public double solve2(final double min, final double max) in solve2()
341 final double min, final double max) in solve2()

12345678910>>...311