Lines Matching defs:val

2170                 low = mid + 1;  // Neither val is NaN, thisVal is smaller
2172 high = mid - 1; // Neither val is NaN, thisVal is larger
2261 low = mid + 1; // Neither val is NaN, thisVal is smaller
2263 high = mid - 1; // Neither val is NaN, thisVal is larger
2771 * @param val the value to be stored in all elements of the array
2773 public static void fill(long[] a, long val) {
2775 a[i] = val;
2790 * @param val the value to be stored in all elements of the array
2795 public static void fill(long[] a, int fromIndex, int toIndex, long val) {
2798 a[i] = val;
2806 * @param val the value to be stored in all elements of the array
2808 public static void fill(int[] a, int val) {
2810 a[i] = val;
2825 * @param val the value to be stored in all elements of the array
2830 public static void fill(int[] a, int fromIndex, int toIndex, int val) {
2833 a[i] = val;
2841 * @param val the value to be stored in all elements of the array
2843 public static void fill(short[] a, short val) {
2845 a[i] = val;
2860 * @param val the value to be stored in all elements of the array
2865 public static void fill(short[] a, int fromIndex, int toIndex, short val) {
2868 a[i] = val;
2876 * @param val the value to be stored in all elements of the array
2878 public static void fill(char[] a, char val) {
2880 a[i] = val;
2895 * @param val the value to be stored in all elements of the array
2900 public static void fill(char[] a, int fromIndex, int toIndex, char val) {
2903 a[i] = val;
2911 * @param val the value to be stored in all elements of the array
2913 public static void fill(byte[] a, byte val) {
2915 a[i] = val;
2930 * @param val the value to be stored in all elements of the array
2935 public static void fill(byte[] a, int fromIndex, int toIndex, byte val) {
2938 a[i] = val;
2946 * @param val the value to be stored in all elements of the array
2948 public static void fill(boolean[] a, boolean val) {
2950 a[i] = val;
2965 * @param val the value to be stored in all elements of the array
2971 boolean val) {
2974 a[i] = val;
2982 * @param val the value to be stored in all elements of the array
2984 public static void fill(double[] a, double val) {
2986 a[i] = val;
3001 * @param val the value to be stored in all elements of the array
3006 public static void fill(double[] a, int fromIndex, int toIndex,double val){
3009 a[i] = val;
3017 * @param val the value to be stored in all elements of the array
3019 public static void fill(float[] a, float val) {
3021 a[i] = val;
3036 * @param val the value to be stored in all elements of the array
3041 public static void fill(float[] a, int fromIndex, int toIndex, float val) {
3044 a[i] = val;
3052 * @param val the value to be stored in all elements of the array
3056 public static void fill(Object[] a, Object val) {
3058 a[i] = val;
3073 * @param val the value to be stored in all elements of the array
3080 public static void fill(Object[] a, int fromIndex, int toIndex, Object val) {
3083 a[i] = val;