HomeSort by relevance Sort by last modified time
    Searched refs:RESOLUTION (Results 1 - 25 of 42) sorted by null

1 2

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/
1-4.c 36 #define RESOLUTION 1000000
50 itsset.it_interval.tv_nsec = 2 * RESOLUTION;
78 (itsget.it_interval.tv_nsec / RESOLUTION !=
79 itsset.it_interval.tv_nsec / RESOLUTION)) {
  /external/tensorflow/tensorflow/core/kernels/
quantized_resize_bilinear_op.cc 51 const int resolution, InterpolationCache<T_SCALE>* interpolation) {
66 (in - interpolation->lower[i]) * (1 << resolution));
75 const int resolution) {
78 ComputeInterpolationWeights<T_SCALE>(out_size, in_size, scale, resolution,
115 template <int RESOLUTION, typename T, typename T_SCALE, typename T_CALC>
119 constexpr T_CALC RESOLUTION_MULT = (1 << RESOLUTION);
170 template <int RESOLUTION, bool X_LERP_SAME>
187 ComputeLerp32x2<RESOLUTION>(top_leftsx, top_rightsx, bottom_leftsx,
192 template <int RESOLUTION>
211 return ComputeLerp8x8<RESOLUTION>(tl8x8, tr8x8, bl8x8, br8x8, xs_lerpsx
    [all...]
quantization_utils.h 469 template <int RESOLUTION>
476 static_assert(RESOLUTION < 31, "RESOLUTION must be less than 31");
477 constexpr int32 RESOLUTION_MULT32 = (1 << RESOLUTION);
494 Divide64x2Pow<RESOLUTION>(bottom_sub_top_x_res);
499 Divide64x2PowRound<RESOLUTION>(top_add_bottom_sub_top_mul_ylerp_x_res);
505 template <int RESOLUTION>
512 static_assert(RESOLUTION < 8, "RESOLUTION must be less than 8");
513 constexpr uint8 RESOLUTION_MULT_VAL = (1 << RESOLUTION);
    [all...]
quantization_utils_test.cc     [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug068.go 7 // RESOLUTION: This program is illegal. We should reject all unnecessary backslashes.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug068.go 7 // RESOLUTION: This program is illegal. We should reject all unnecessary backslashes.
  /packages/apps/Settings/src/com/android/settings/datausage/
ChartDataUsagePreference.java 37 // The resolution we show on the graph so that we can squash things down to ints.
39 private static final long RESOLUTION = TrafficStats.MB_IN_BYTES / 2;
90 return (int) (Math.max(totalData, policyMax) / RESOLUTION);
117 points.put(toInt(startTime - mStart + 1), (int) (totalData / RESOLUTION));
118 points.put(toInt(endTime - mStart), (int) (totalData / RESOLUTION));
126 // Don't need that much resolution on these times.
144 chart.setDividerLoc((int) (policy.warningBytes / RESOLUTION));
145 float weight = policy.warningBytes / RESOLUTION / (float) top;
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoConstants.java 50 public static final String RESOLUTION = "resolution";
DeviceInfoInstrument.java 97 addResult(RESOLUTION, String.format("%sx%s", metrics.widthPixels, metrics.heightPixels));
  /hardware/libhardware/modules/sensors/dynamic_sensor/
HidSensorDef.h 37 RESOLUTION = 0x200313,
  /cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
SensorDeviceInfo.java 44 private static final String RESOLUTION = "resolution";
79 store.addResult(RESOLUTION, sensor.getResolution());
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Video_MediaTest.java 95 values.put(Media.RESOLUTION, "176x144");
130 assertEquals("176x144", c.getString(c.getColumnIndex(Media.RESOLUTION)));
156 values.put(Media.RESOLUTION, "320x240");
183 assertEquals("320x240", c.getString(c.getColumnIndex(Media.RESOLUTION)));
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
SaveVideoFileUtils.java 111 VideoColumns.RESOLUTION,
132 values.put(Video.Media.RESOLUTION, cursor.getString(3));
  /external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
s-c1.c 86 #define RESOLUTION (5 * SCALABILITY_FACTOR)
277 /* add to the measure list if nprocesses % resolution == 0 */
278 if (((nprocesses % RESOLUTION) == 0) && (nprocesses != 0)) {
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
s-c1.c 85 #define RESOLUTION (5 * SCALABILITY_FACTOR)
304 /* add to the measure list if nthreads % resolution == 0 */
305 if ((nthreads % RESOLUTION) == 0) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalVideo.java 68 VideoColumns.RESOLUTION,
117 private void parseResolution(String resolution) {
118 if (resolution == null) return;
119 int m = resolution.indexOf('x');
122 int w = Integer.parseInt(resolution.substring(0, m));
123 int h = Integer.parseInt(resolution.substring(m + 1));
  /frameworks/base/core/java/com/android/internal/print/
DumpUtils.java 164 * Write a {@link PrintAttributes.Resolution} to a proto.
169 * @param res The resolution to write
172 @NonNull PrintAttributes.Resolution res) {
219 PrintAttributes.Resolution res = attributes.getResolution();
221 writeResolution(proto, "resolution", PrintAttributesProto.RESOLUTION, res);
  /frameworks/base/core/java/android/provider/
MediaStore.java     [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java     [all...]
  /packages/apps/Camera2/src/com/android/camera/
VideoModule.java 775 * resolution and/or before the preview starts. Note that these values still
777 * resolution. Does nothing when camera pointer is null.
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
VideoCamera.java     [all...]
  /external/error_prone/javac/
javac-9+181-r4173-1.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 449 milliseconds

1 2