| /external/rust/crates/num-integer/tests/ | 
| D | average.rs | 15                     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
  | 
| /external/jazzer-api/agent/src/main/java/com/code_intelligence/jazzer/runtime/ | 
| D | FuzzedDataProviderImpl.java | 139   public byte consumeByte(byte min, byte max) {  in consumeByte() 150   public short consumeShort(short min, short max) {  in consumeShort() 163   public int consumeInt(int min, int max) {  in consumeInt() 176   public long consumeLong(long min, long max) {  in consumeLong() 191   public float consumeRegularFloat(float min, float max) {  in consumeRegularFloat() 204   public double consumeRegularDouble(double min, double max) {  in consumeRegularDouble() 219   public char consumeChar(char min, char max) {  in consumeChar() 243   private native byte consumeByteUnchecked(byte min, byte max);  in consumeByteUnchecked() 244   private native short consumeShortUnchecked(short min, short max);  in consumeShortUnchecked() 245   private native char consumeCharUnchecked(char min, char max);  in consumeCharUnchecked() [all …] 
 | 
| D | RecordingFuzzedDataProvider.java | 75   public byte consumeByte(byte min, byte max) {  in consumeByte() 95   public short consumeShort(short min, short max) {  in consumeShort() 110   public int consumeInt(int min, int max) {  in consumeInt() 125   public long consumeLong(long min, long max) {  in consumeLong() 145   public float consumeRegularFloat(float min, float max) {  in consumeRegularFloat() 165   public double consumeRegularDouble(double min, double max) {  in consumeRegularDouble() 180   public char consumeChar(char min, char max) {  in consumeChar()
  | 
| /external/apache-commons-lang/src/main/java/org/apache/commons/lang3/math/ | 
| D | IEEE754rUtils.java | 151     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
  | 
| D | NumberUtils.java | 1191     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 …] 
 | 
| /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ | 
| D | NewtonSolver.java | 62     public double solve(final double min, final double max)  in solve() 69     public double solve(final double min, final double max, final double startValue)  in solve() 88                         final double min, final double max)  in solve() 108                         final double min, final double max)  in solve() 129                         final double min, final double max, final double startValue)  in solve() 151                         final double min, final double max, final double startValue)  in solve()
  | 
| D | BisectionSolver.java | 58     public double solve(double min, double max, double initial)  in solve() 65     public double solve(double min, double max)  in solve() 75     public double solve(final UnivariateRealFunction f, double min, double max, double initial)  in solve() 82 …public double solve(int maxEval, final UnivariateRealFunction f, double min, double max, double in…  in solve() 89     public double solve(int maxEval, final UnivariateRealFunction f, double min, double max)  in solve() 100     public double solve(final UnivariateRealFunction f, double min, double max)  in solve()
  | 
| D | SecantSolver.java | 70     public double solve(final double min, final double max)  in solve() 77     public double solve(final double min, final double max, final double initial)  in solve() 98                         final double min, final double max, final double initial)  in solve() 120                         final double min, final double max, final double initial)  in solve() 139                         final double min, final double max)  in solve() 159                         final double min, final double max)  in solve()
  | 
| D | RiddersSolver.java | 65     public double solve(final double min, final double max)  in solve() 72     public double solve(final double min, final double max, final double initial)  in solve() 94                         final double min, final double max, final double initial)  in solve() 117                         final double min, final double max, final double initial)  in solve() 150                         final double min, final double max)  in solve() 172                         final double min, final double max)  in solve()
  | 
| D | MullerSolver.java | 66     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()
  | 
| D | UnivariateRealSolver.java | 79     double solve(double min, double max) throws ConvergenceException, FunctionEvaluationException;  in solve() 100     double solve(UnivariateRealFunction f, double min, double max)  in solve() 122     double solve(double min, double max, double startValue)  in solve() 145     double solve(UnivariateRealFunction f, double min, double max, double startValue)  in solve()
  | 
| D | LaguerreSolver.java | 92     public double solve(final double min, final double max)  in solve() 99     public double solve(final double min, final double max, final double initial)  in solve() 122                         final double min, final double max, final double initial)  in solve() 146                         final double min, final double max, final double initial)  in solve() 191                         final double min, final double max)  in solve() 218                         final double min, final double max)  in solve() 265     protected boolean isRootOK(double min, double max, Complex z) {  in isRootOK()
  | 
| D | BrentSolver.java | 97     public double solve(double min, double max)  in solve() 104     public double solve(double min, double max, double initial)  in solve() 130                         final double min, final double max, final double initial)  in solve() 197                         final double min, final double max, final double initial)  in solve() 222                         final double min, final double max)  in solve() 282                         final double min, final double max)  in solve()
  | 
| /external/cronet/buildtools/third_party/libc++/trunk/include/__algorithm/ | 
| D | max.h | 31 max(_LIBCPP_LIFETIMEBOUND const _Tp& __a, _LIBCPP_LIFETIMEBOUND const _Tp& __b, _Compare __comp)  in max()  function 40 max(_LIBCPP_LIFETIMEBOUND const _Tp& __a, _LIBCPP_LIFETIMEBOUND const _Tp& __b)  in max()  function 51 max(initializer_list<_Tp> __t, _Compare __comp)  in max()  function 60 max(initializer_list<_Tp> __t)  in max()  function
  | 
| /external/jazzer-api/agent/src/test/java/com/code_intelligence/jazzer/runtime/ | 
| D | RecordingFuzzedDataProviderTest.java | 75     public byte consumeByte(byte min, byte max) {  in consumeByte() 85     public short consumeShort(short min, short max) {  in consumeShort() 100     public int consumeInt(int min, int max) {  in consumeInt() 115     public long consumeLong(long min, long max) {  in consumeLong() 135     public float consumeRegularFloat(float min, float max) {  in consumeRegularFloat() 150     public double consumeRegularDouble(double min, double max) {  in consumeRegularDouble() 170     public char consumeChar(char min, char max) {  in consumeChar()
  | 
| /external/cronet/components/metrics/serialization/ | 
| D | metric_sample.cc | 22                            int max,  in MetricSample() 88 int MetricSample::max() const {  in max()  function in metrics::MetricSample 111     int max,  in HistogramSample() 125   int sample, min, max, bucket_count;  in ParseHistogram()  local 162     int max) {  in LinearHistogramSample() 172   int sample, max;  in ParseLinearHistogram()  local
  | 
| /external/jazzer-api/agent/src/main/java/com/code_intelligence/jazzer/api/ | 
| D | CannedFuzzedDataProvider.java | 73   public byte consumeByte(byte min, byte max) {  in consumeByte() 83   public short consumeShort(short min, short max) {  in consumeShort() 98   public int consumeInt(int min, int max) {  in consumeInt() 113   public long consumeLong(long min, long max) {  in consumeLong() 133   public float consumeRegularFloat(float min, float max) {  in consumeRegularFloat() 148   public double consumeRegularDouble(double min, double max) {  in consumeRegularDouble() 168   public char consumeChar(char min, char max) {  in consumeChar()
  | 
| /external/oboe/samples/RhythmGame/third_party/glm/gtx/ | 
| D | extended_min_max.inl | 74 	GLM_FUNC_QUALIFIER T max(  function 83 	GLM_FUNC_QUALIFIER C<T> max  function 94 	GLM_FUNC_QUALIFIER C<T> max  function 105 	GLM_FUNC_QUALIFIER T max  function 117 	GLM_FUNC_QUALIFIER C<T> max  function 129 	GLM_FUNC_QUALIFIER C<T> max  function
  | 
| /external/webrtc/sdk/android/src/java/org/webrtc/ | 
| D | Histogram.java | 29   static public Histogram createCounts(String name, int min, int max, int bucketCount) {  in createCounts() 33   static public Histogram createEnumeration(String name, int max) {  in createEnumeration() 41   private static native long nativeCreateCounts(String name, int min, int max, int bucketCount);  in nativeCreateCounts() 42   private static native long nativeCreateEnumeration(String name, int max);  in nativeCreateEnumeration()
  | 
| /external/clang/test/Analysis/ | 
| D | additive-folding-range-constraints.c | 165   int max = INT_MAX;  in mixedComparisons9()  local 176   unsigned max = UINT_MAX;  in mixedSignedness1()  local 183   unsigned max = UINT_MAX;  in mixedSignedness2()  local 190   int max = INT_MAX;  in mixedSignedness3()  local 197   int max = INT_MAX;  in mixedSignedness4()  local 260   unsigned max = INT_MAX;  in mixedSignedness13()  local 267   unsigned max = INT_MAX;  in mixedSignedness14()  local 288   unsigned max = INT_MAX;  in mixedSignedness17()  local
  | 
| /external/rust/crates/rand/src/distributions/ | 
| D | float.rs | 190                 let mut max = StepRng::new(!0, 0);  localVariable 198                 let mut max = StepRng::new(!0, 0);  localVariable 206                 let mut max = StepRng::new(!0, 0);  localVariable 230                 let mut max = StepRng::new(!0, 0);  localVariable 238                 let mut max = StepRng::new(!0, 0);  localVariable 246                 let mut max = StepRng::new(!0, 0);  localVariable
  | 
| /external/tagsoup/src/org/ccil/cowan/tagsoup/ | 
| D | AttributesImpl.java | 209 	int max = length * 5;  in getIndex()  local 228 	int max = length * 5;  in getIndex()  local 250 	int max = length * 5;  in getType()  local 270 	int max = length * 5;  in getType()  local 292 	int max = length * 5;  in getValue()  local 312 	int max = length * 5;  in getValue()  local 578         int max;  in ensureCapacity()  local
  | 
| /external/cronet/base/android/java/src/org/chromium/base/metrics/ | 
| D | CachingUmaRecorder.java | 116         Histogram(@Type int type, String name, int min, int max, int numBuckets) {  in Histogram() 144                 @Type int type, String name, int sample, int min, int max, int numBuckets) {  in addSample() 148             assert mMax == max;  in addSample()  local 377             @Histogram.Type int type, String name, int sample, int min, int max, int numBuckets) {  in cacheOrRecordHistogramSample() 417             @Histogram.Type int type, String name, int sample, int min, int max, int numBuckets) {  in tryAppendOrRecordSample() 450             @Histogram.Type int type, String name, int sample, int min, int max, int numBuckets) {  in cacheHistogramSampleAlreadyWriteLocked() 481             @Histogram.Type int type, String name, int sample, int min, int max, int numBuckets) {  in recordHistogramSampleAlreadyLocked() 507         final int max = 0;  in recordBooleanHistogram()  local 514             String name, int sample, int min, int max, int numBuckets) {  in recordExponentialHistogram() 520     public void recordLinearHistogram(String name, int sample, int min, int max, int numBuckets) {  in recordLinearHistogram() [all …] 
 | 
| /external/capstone/ | 
| D | utils.c | 31 unsigned short insn_find(const insn_map *insns, unsigned int max, unsigned int id, unsigned short *…  in insn_find() 42 int name2id(const name_map* map, int max, const char *name)  in name2id() 56 const char *id2name(const name_map* map, int max, const unsigned int id)  in id2name() 116 bool arr_exist8(unsigned char *arr, unsigned char max, unsigned int id)  in arr_exist8() 128 bool arr_exist(uint16_t *arr, unsigned char max, unsigned int id)  in arr_exist()
  | 
| /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/ | 
| D | NumberIsTooLargeException.java | 36     private final Number max;  field in NumberIsTooLargeException 50                                      Number max,  in NumberIsTooLargeException() 64                                      Number max,  in NumberIsTooLargeException()
  |