HomeSort by relevance Sort by last modified time
    Searched defs:frameHeight (Results 1 - 25 of 57) sorted by null

1 2 3

  /device/google/marlin/camera/QCamera2/HAL/tsMakeuplib/include/
ts_makeup_image.h 27 int frameHeight; //NV21 Frame height. MUST > 0.
38 int frameHeight; //NV21 Frame height. MUST > 0.
  /hardware/qcom/camera/msm8998/QCamera2/HAL/tsMakeuplib/include/
ts_makeup_image.h 27 int frameHeight; //NV21 Frame height. MUST > 0.
38 int frameHeight; //NV21 Frame height. MUST > 0.
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawSimpleTest.cpp 172 const deInt32 frameHeight = referenceFrame.getHeight();
178 for (int y = 0; y < frameHeight; y++)
180 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
280 const deInt32 frameHeight = referenceFrame.getHeight();
286 for (int y = 0; y < frameHeight; y++)
288 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDrawIndexedTest.cpp 193 const deInt32 frameHeight = referenceFrame.getHeight();
199 for (int y = 0; y < frameHeight; y++)
201 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
316 const deInt32 frameHeight = referenceFrame.getHeight();
322 for (int y = 0; y < frameHeight; y++)
324 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDrawIndirectTest.cpp 431 const deInt32 frameHeight = referenceFrame.getHeight();
437 for (int y = 0; y < frameHeight; y++)
439 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
699 const deInt32 frameHeight = referenceFrame.getHeight();
705 for (int y = 0; y < frameHeight; y++)
707 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateCBTests.cpp 133 const deInt32 frameHeight = referenceFrame.getHeight();
137 for (int y = 0; y < frameHeight; y++)
139 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDynamicStateGeneralTests.cpp 124 const deInt32 frameHeight = referenceFrame.getHeight();
128 for (int y = 0; y < frameHeight; y++)
130 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
234 const deInt32 frameHeight = referenceFrame.getHeight();
238 for (int y = 0; y < frameHeight; y++)
240 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
384 const deInt32 frameHeight = referenceFrame.getHeight();
388 for (int y = 0; y < frameHeight; y++)
390 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDynamicStateVPTests.cpp 159 const deInt32 frameHeight = referenceFrame.getHeight();
163 for (int y = 0; y < frameHeight; y++)
165 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
206 const deInt32 frameHeight = referenceFrame.getHeight();
210 for (int y = 0; y < frameHeight; y++)
212 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
351 const deInt32 frameHeight = referenceFrame.getHeight();
355 for (int y = 0; y < frameHeight; y++)
357 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDynamicStateRSTests.cpp 450 const deInt32 frameHeight = referenceFrame.getHeight();
454 for (int y = 0; y < frameHeight; y++)
456 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
556 const deInt32 frameHeight = referenceFrame.getHeight();
560 for (int y = 0; y < frameHeight; y++)
562 float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
662 const deInt32 frameHeight = referenceFrame.getHeight();
666 for (int y = 0; y < frameHeight; y++)
668 float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
673 float lineHalfWidth = (float)(deFloor(deviceProperties.limits.lineWidthRange[1]) / frameHeight);
    [all...]
vktDynamicStateDSTests.cpp 488 const deInt32 frameHeight = referenceFrame.getHeight();
492 for (int y = 0; y < frameHeight; y++)
494 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
640 const deInt32 frameHeight = referenceFrame.getHeight();
642 for (int y = 0; y < frameHeight; y++)
644 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
CircleButtonsLayout.java 57 final int frameHeight = mCircleView.getMeasuredHeight();
58 final int minBound = Math.min(frameWidth, frameHeight);
66 resetAddParams.bottomMargin += (frameHeight - frameWidth) / 2;
74 labelParams.topMargin += (frameHeight-frameWidth)/2;
130 int y = frameHeight / 2 - labelParams.topMargin;
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
MultiBoxTracker.java 92 private int frameHeight;
166 Math.min(canvas.getHeight() / (float) (rotated ? frameWidth : frameHeight),
167 canvas.getWidth() / (float) (rotated ? frameHeight : frameWidth));
171 frameHeight,
172 (int) (multiplier * (rotated ? frameHeight : frameWidth)),
173 (int) (multiplier * (rotated ? frameWidth : frameHeight)),
211 frameHeight = h;
ObjectTracker.java 96 protected final int frameHeight;
207 final int frameWidth, final int frameHeight, final int rowStride, final boolean alwaysTrack) {
216 instance = new ObjectTracker(frameWidth, frameHeight, rowStride, alwaysTrack);
232 final int frameWidth, final int frameHeight, final int rowStride, final boolean alwaysTrack) {
234 this.frameHeight = frameHeight;
254 initNative(frameWidth / DOWNSAMPLE_FACTOR, frameHeight / DOWNSAMPLE_FACTOR, alwaysTrack);
276 frameWidth, frameHeight, rowStride, frameData, DOWNSAMPLE_FACTOR, downsampledFrame);
308 canvas, frameWidth * DOWNSAMPLE_FACTOR / 2, frameHeight * DOWNSAMPLE_FACTOR / 2);
417 lastTimestamp, frameWidth / DOWNSAMPLE_FACTOR, frameHeight / DOWNSAMPLE_FACTOR, 100)
    [all...]
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
SurfaceViewRenderer.java 100 private int frameHeight;
254 frameHeight = 0;
342 if (frameWidth == 0 || frameHeight == 0) {
537 if (frameWidth == 0 || frameHeight == 0) {
540 return (frameRotation % 180 == 0) ? (float) frameWidth / frameHeight
541 : (float) frameHeight / frameWidth;
548 if (frameWidth != frame.width || frameHeight != frame.height
556 frameHeight = frame.height;
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
VideoCapturerAndroidTestFixtures.java 66 public int frameHeight() {
107 private int frameHeight = 0;
128 frameHeight = height;
140 frameHeight = height;
176 int frameHeight() {
178 return frameHeight;
385 && observer.frameHeight() == format.height);
387 && observer.frameHeight() == format.width);
389 fail("Wrong resolution, got: " + observer.frameWidth() + "x" + observer.frameHeight()
587 final int startHeight = renderer.frameHeight();
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckAnalyzer.java 452 public int frameHeight;
491 frameHeight = json.getInt("height");
805 if (frameSize.width != meta.frameWidth || frameSize.height != meta.frameHeight) {
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VpxCodecTestBase.java 212 public int frameHeight;
248 int frameHeight,
275 params.frameHeight = Math.min(frameHeight * resolutionScales[i], 720);
300 int frameHeight,
314 frameHeight,
532 int frameHeight = ivf.getHeight();
535 int frameSliceHeight = frameHeight;
537 assertTrue(frameHeight > 0);
559 ". " + frameWidth + " x " + frameHeight);
    [all...]
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
omx_vdec_hevc_swvdec.cpp     [all...]
omx_vdec_msm8974.cpp     [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
omx_vdec_hevc_swvdec.cpp     [all...]
omx_vdec_v4l2.cpp     [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
omx_vdec_v4l2.cpp     [all...]
  /prebuilts/devtools/tools/lib/
draw9patch.jar 
  /prebuilts/gradle-plugin/com/android/tools/draw9patch/24.4.0-beta3/
draw9patch-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/draw9patch/24.4.0-beta6/
draw9patch-24.4.0-beta6.jar 

Completed in 1805 milliseconds

1 2 3