HomeSort by relevance Sort by last modified time
    Searched refs:mResolution (Results 1 - 10 of 10) sorted by null

  /device/google/cuttlefish_common/guest/hals/camera/fake-pipeline2/
Sensor.cpp 97 mResolution{width, height},
392 for (unsigned int y = 0; y < mResolution[1]; y++) {
395 for (unsigned int x = 0; x < mResolution[0]; x++) {
430 uint32_t inc = ceil((float)mResolution[0] / stride);
432 for (unsigned int y = 0, outY = 0; y < mResolution[1]; y += inc, outY++) {
435 for (unsigned int x = 0; x < mResolution[0]; x += inc) {
459 uint32_t inc = ceil((float)mResolution[0] / stride);
461 for (unsigned int y = 0, outY = 0; y < mResolution[1]; y += inc, outY++) {
464 for (unsigned int x = 0; x < mResolution[0]; x += inc) {
502 uint32_t inc = ceil((float)mResolution[0] / stride)
    [all...]
Sensor.h 160 const uint32_t mResolution[2];
  /device/generic/goldfish/camera/fake-pipeline2/
Sensor.cpp 100 mResolution{width, height},
274 mRowReadoutTime * mResolution[1];
398 for (unsigned int y = 0; y < mResolution[1]; y++ ) {
401 for (unsigned int x = 0; x < mResolution[0]; x++) {
435 unsigned int DivH= (float)mResolution[1]/height * (0x1 << 10);
436 unsigned int DivW = (float)mResolution[0]/width * (0x1 << 10);
473 unsigned int DivH= (float)mResolution[1]/height * (0x1 << 10);
474 unsigned int DivW = (float)mResolution[0]/width * (0x1 << 10);
521 unsigned int DivH= (float)mResolution[1]/height * (0x1 << 10);
522 unsigned int DivW = (float)mResolution[0]/width * (0x1 << 10)
    [all...]
Sensor.h 162 const uint32_t mResolution[2];
  /frameworks/base/core/java/android/hardware/
Sensor.java     [all...]
  /frameworks/base/core/java/android/print/
PrintAttributes.java 86 private @Nullable Resolution mResolution;
98 mResolution = (parcel.readInt() == 1) ? Resolution.createFromParcel(parcel) : null;
136 return mResolution;
147 mResolution = resolution;
339 if (mResolution != null) {
341 mResolution.writeToParcel(parcel);
368 result = prime * result + ((mResolution == null) ? 0 : mResolution.hashCode());
404 if (mResolution == null) {
405 if (other.mResolution != null)
    [all...]
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
IPControls.java 89 private Resolutions mResolution;
129 mResolution = Resolutions.values()[pos];
204 intent.putExtra("resolution X", mResolution.width);
205 intent.putExtra("resolution Y", mResolution.height);
241 float pr = (1920.f / mResolution.width) * (1080.f / mResolution.height);
  /frameworks/base/core/java/android/view/
InputDevice.java 849 private float mResolution;
859 mResolution = resolution;
    [all...]
  /frameworks/native/libs/sensor/
Sensor.cpp 31 mMinValue(0), mMaxValue(0), mResolution(0),
50 mResolution = hwSensor.resolution;
357 return mResolution;
459 sizeof(mMinValue) + sizeof(mMaxValue) + sizeof(mResolution) +
485 FlattenableUtils::write(buffer, size, mResolution);
521 sizeof(mMaxValue) + sizeof(mResolution) + sizeof(mPower) + sizeof(mMinDelay) +
532 FlattenableUtils::read(buffer, size, mResolution);
  /frameworks/native/libs/sensor/include/sensor/
Sensor.h 120 float mResolution;

Completed in 159 milliseconds