HomeSort by relevance Sort by last modified time
    Searched defs:floatValues (Results 1 - 24 of 24) sorted by null

  /packages/services/Car/tests/CarDiagnosticVerifier/src/com/google/android/car/diagnosticverifier/
DiagnosticJsonConverter.java 76 for (int i = 0; i < diagnosticJson.floatValues.size(); i++) {
77 builder.withFloatValue(diagnosticJson.floatValues.keyAt(i),
78 diagnosticJson.floatValues.valueAt(i));
  /frameworks/base/core/java/android/hardware/
SensorAdditionalInfo.java 57 public final float[] floatValues;
98 * floatValues[0]: delay estimation in seconds
99 * floatValues[1]: delay estimation standard deviation
107 * floatValues[0]: internal temperature in Celsius.
116 * floatValues[0..11]: First 3 rows of a homogeneous matrix in row major order that captures
125 * floatValues[0..11]: First 3 rows of homogeneous matrix in row major order that describes
136 * floatValues[0]: raw sample period in seconds.
137 * floatValues[1]: standard deviation of sampling period.
215 floatValues = aFloatValues;
  /frameworks/base/core/jni/
android_animation_PropertyValuesHolder.cpp 105 jfloat *floatValues = env->GetFloatArrayElements(arg, NULL);
108 values[i].f = floatValues[i];
112 env->ReleaseFloatArrayElements(arg, floatValues, JNI_ABORT);
  /packages/services/Car/service/src/com/android/car/hal/
CarPropertyUtils.java 98 v.floatValues.add((Float) o);
100 Collections.addAll(v.floatValues, (Float[]) o);
224 return value.floatValues;
  /packages/services/Car/tools/emulator/
obd2_to_diagjson.py 132 if 'floatValues' not in self.store:
133 self.store.floatValues = []
137 self.store.floatValues.append(d)
140 def floatValues(self):
141 if 'floatValues' not in self.store:
143 for value in self.store.floatValues:
153 for floatValue in json.floatValues:
167 for id, value in self.floatValues():
  /packages/services/Car/car-lib/src/android/car/diagnostic/
CarDiagnosticEvent.java 58 private final SparseArray<Float> floatValues;
70 floatValues = new SparseArray<>(len);
74 floatValues.put(key, value);
96 dest.writeInt(floatValues.size());
97 for (int i = 0; i < floatValues.size(); ++i) {
98 int key = floatValues.keyAt(i);
100 dest.writeFloat(floatValues.get(key));
120 * floatValues: an array of objects each of which has two elements:
151 jsonWriter.name("floatValues").beginArray();
152 for (int i = 0; i < floatValues.size(); ++i)
    [all...]
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
TensorFlowImageClassifier.java 51 private float[] floatValues;
120 c.floatValues = new float[inputSize * inputSize * 3];
137 floatValues[i * 3 + 0] = (((val >> 16) & 0xFF) - imageMean) / imageStd;
138 floatValues[i * 3 + 1] = (((val >> 8) & 0xFF) - imageMean) / imageStd;
139 floatValues[i * 3 + 2] = ((val & 0xFF) - imageMean) / imageStd;
145 inferenceInterface.feed(inputName, floatValues, 1, inputSize, inputSize, 3);
TensorFlowYoloDetector.java 80 private float[] floatValues;
104 d.floatValues = new float[inputSize * inputSize * 3];
146 floatValues[i * 3 + 0] = ((intValues[i] >> 16) & 0xFF) / 255.0f;
147 floatValues[i * 3 + 1] = ((intValues[i] >> 8) & 0xFF) / 255.0f;
148 floatValues[i * 3 + 2] = (intValues[i] & 0xFF) / 255.0f;
154 inferenceInterface.feed(inputName, floatValues, 1, inputSize, inputSize, 3);
TensorFlowMultiBoxDetector.java 55 private float[] floatValues;
125 d.floatValues = new float[d.inputSize * d.inputSize * 3];
213 floatValues[i * 3 + 0] = (((intValues[i] >> 16) & 0xFF) - imageMean) / imageStd;
214 floatValues[i * 3 + 1] = (((intValues[i] >> 8) & 0xFF) - imageMean) / imageStd;
215 floatValues[i * 3 + 2] = ((intValues[i] & 0xFF) - imageMean) / imageStd;
221 inferenceInterface.feed(inputName, floatValues, 1, inputSize, inputSize, 3);
StylizeActivity.java 101 private float[] floatValues;
456 floatValues = new float[desiredSize * desiredSize * 3];
477 floatValues = new float[desiredSize * desiredSize * 3];
521 floatValues[i * 3] = val;
522 floatValues[i * 3 + 1] = val;
523 floatValues[i * 3 + 2] = val;
528 floatValues[i * 3] = ((val >> 16) & 0xFF) / 255.0f;
529 floatValues[i * 3 + 1] = ((val >> 8) & 0xFF) / 255.0f;
530 floatValues[i * 3 + 2] = (val & 0xFF) / 255.0f;
537 INPUT_NODE, floatValues, 1, bitmap.getWidth(), bitmap.getHeight(), 3)
    [all...]
  /packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/
DiagnosticJson.java 32 public final SparseArray<Float> floatValues;
39 SparseArray<Float> floatValues,
44 this.floatValues = Objects.requireNonNull(floatValues);
53 new SparseArrayIterator<>(floatValues)
136 case "floatValues":
  /packages/services/Car/car-lib/src/android/car/hardware/
CarSensorEvent.java 95 * Index for {@link CarSensorManager#SENSOR_TYPE_ENVIRONMENT} in floatValues.
100 * Index for {@link CarSensorManager#SENSOR_TYPE_ENVIRONMENT} in floatValues.
127 * array holding float type of sensor data. If the sensor has single value, only floatValues[0]
129 public final float[] floatValues;
140 floatValues = new float[len];
141 in.readFloatArray(floatValues);
160 dest.writeInt(floatValues.length);
161 dest.writeFloatArray(floatValues);
184 floatValues = new float[floatValueSize];
190 CarSensorEvent(int sensorType, long timestamp, float[] floatValues, int[] intValues
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/hardware/
CarSensorEvent.java 77 * Indices for {@link CarSensorManager#SENSOR_TYPE_COMPASS} in floatValues.
82 * Indices for {@link CarSensorManager#SENSOR_TYPE_COMPASS} in floatValues.
87 * Indices for {@link CarSensorManager#SENSOR_TYPE_COMPASS} in floatValues.
113 * Array holding float type of sensor data. If the sensor has single value, only floatValues[0]
115 public final float[] floatValues;
136 floatValues = new float[floatValueSize];
145 * @param floatValues {@code null} will be converted to an empty array
151 public CarSensorEvent(int sensorType, long timestamp, float[] floatValues, int[] intValues,
155 this.floatValues = (floatValues == null) ? EMPTY_FLOAT_ARRAY : floatValues
    [all...]
  /frameworks/support/car/car-stubs/
android.car.jar 
  /prebuilts/sdk/current/optional/
android.car.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/6.1.1/
asm-6.1.1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-stubs.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/28/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_28/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 264 milliseconds