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

  /device/google/marlin/camera/QCamera2/HAL/tsMakeuplib/include/
ts_makeup_image.h 26 int frameWidth; //NV21 Frame width.MUST > 0.
37 int frameWidth; //NV21 Frame width.MUST > 0.
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawSimpleTest.cpp 159 const deInt32 frameWidth = referenceFrame.getWidth();
170 for (int x = 0; x < frameWidth; x++)
172 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
253 const deInt32 frameWidth = referenceFrame.getWidth();
264 for (int x = 0; x < frameWidth; x++)
266 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
vktDrawIndexedTest.cpp 174 const deInt32 frameWidth = referenceFrame.getWidth();
185 for (int x = 0; x < frameWidth; x++)
187 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
281 const deInt32 frameWidth = referenceFrame.getWidth();
292 for (int x = 0; x < frameWidth; x++)
294 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
vktDrawIndirectTest.cpp 567 const deInt32 frameWidth = referenceFrame.getWidth();
578 for (int x = 0; x < frameWidth; x++)
580 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
885 const deInt32 frameWidth = referenceFrame.getWidth();
896 for (int x = 0; x < frameWidth; x++)
898 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateCBTests.cpp 121 const deInt32 frameWidth = referenceFrame.getWidth();
130 for (int x = 0; x < frameWidth; x++)
132 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
vktDynamicStateGeneralTests.cpp 112 const deInt32 frameWidth = referenceFrame.getWidth();
121 for (int x = 0; x < frameWidth; x++)
123 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
209 const deInt32 frameWidth = referenceFrame.getWidth();
218 for (int x = 0; x < frameWidth; x++)
220 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
346 const deInt32 frameWidth = referenceFrame.getWidth();
355 for (int x = 0; x < frameWidth; x++)
357 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
vktDynamicStateVPTests.cpp 146 const deInt32 frameWidth = referenceFrame.getWidth();
155 for (int x = 0; x < frameWidth; x++)
157 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
193 const deInt32 frameWidth = referenceFrame.getWidth();
202 for (int x = 0; x < frameWidth; x++)
204 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
325 const deInt32 frameWidth = referenceFrame.getWidth();
334 for (int x = 0; x < frameWidth; x++)
336 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
vktDynamicStateRSTests.cpp 427 const deInt32 frameWidth = referenceFrame.getWidth();
436 for (int x = 0; x < frameWidth; x++)
438 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
523 const deInt32 frameWidth = referenceFrame.getWidth();
532 for (int x = 0; x < frameWidth; x++)
534 float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
616 const deInt32 frameWidth = referenceFrame.getWidth();
625 for (int x = 0; x < frameWidth; x++)
627 float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
vktDynamicStateDSTests.cpp 464 const deInt32 frameWidth = referenceFrame.getWidth();
473 for (int x = 0; x < frameWidth; x++)
475 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
717 const deInt32 frameWidth = referenceFrame.getWidth();
723 for (int x = 0; x < frameWidth; ++x)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/conditional_rendering/
vktConditionalClearAttachmentTests.cpp 183 const deInt32 frameWidth = referenceFrame.getWidth();
193 for (int x = 0; x < frameWidth; x++)
vktConditionalDrawTests.cpp 454 const deInt32 frameWidth = referenceFrame.getWidth();
471 for (int x = 0; x < frameWidth; x++)
473 const float xCoord = (float)(x / (0.5*frameWidth)) - 1.0f;
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
HudFragment.java 143 String frameWidth = reportMap.get("googFrameWidthReceived");
144 if (frameWidth != null) {
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
MultiBoxTracker.java 91 private int frameWidth;
166 Math.min(canvas.getHeight() / (float) (rotated ? frameWidth : frameHeight),
167 canvas.getWidth() / (float) (rotated ? frameHeight : frameWidth));
170 frameWidth,
172 (int) (multiplier * (rotated ? frameHeight : frameWidth)),
173 (int) (multiplier * (rotated ? frameWidth : frameHeight)),
210 frameWidth = w;
ObjectTracker.java 95 protected final int frameWidth;
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) {
233 this.frameWidth = frameWidth;
245 [(frameWidth + DOWNSAMPLE_FACTOR - 1)
247 * (frameWidth + DOWNSAMPLE_FACTOR - 1)
254 initNative(frameWidth / DOWNSAMPLE_FACTOR, frameHeight / DOWNSAMPLE_FACTOR, alwaysTrack);
276 frameWidth, frameHeight, rowStride, frameData, DOWNSAMPLE_FACTOR, downsampledFrame)
    [all...]
  /external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/tracking/
MultiBoxTracker.java 91 private int frameWidth;
166 Math.min(canvas.getHeight() / (float) (rotated ? frameWidth : frameHeight),
167 canvas.getWidth() / (float) (rotated ? frameHeight : frameWidth));
170 frameWidth,
172 (int) (multiplier * (rotated ? frameHeight : frameWidth)),
173 (int) (multiplier * (rotated ? frameWidth : frameHeight)),
210 frameWidth = w;
ObjectTracker.java 95 protected final int frameWidth;
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) {
233 this.frameWidth = frameWidth;
245 [(frameWidth + DOWNSAMPLE_FACTOR - 1)
247 * (frameWidth + DOWNSAMPLE_FACTOR - 1)
254 initNative(frameWidth / DOWNSAMPLE_FACTOR, frameHeight / DOWNSAMPLE_FACTOR, alwaysTrack);
276 frameWidth, frameHeight, rowStride, frameData, DOWNSAMPLE_FACTOR, downsampledFrame)
    [all...]
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
SurfaceViewRenderer.java 99 private int frameWidth;
253 frameWidth = 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
555 frameWidth = frame.width;
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
VideoCapturerAndroidTestFixtures.java 60 public int frameWidth() {
106 private int frameWidth = 0;
127 frameWidth = width;
139 frameWidth = width;
170 int frameWidth() {
172 return frameWidth;
384 final boolean identicalResolution = (observer.frameWidth() == format.width
386 final boolean flippedResolution = (observer.frameWidth() == format.height
389 fail("Wrong resolution, got: " + observer.frameWidth() + "x" + observer.frameHeight()
586 final int startWidth = renderer.frameWidth();
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckAnalyzer.java 452 public int frameWidth;
491 frameWidth = json.getInt("width");
806 if (frameSize.width != meta.frameWidth || frameSize.height != meta.frameHeight) {
819 float fc = (float)(meta.frameWidth/2.0/Math.tan(meta.fovWidth/2.0));
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VpxCodecTestBase.java 204 public int frameWidth;
241 int frameWidth,
268 params.frameWidth = Math.min(frameWidth * resolutionScales[i], 1280);
293 int frameWidth,
307 frameWidth,
528 int frameWidth = ivf.getWidth();
531 int frameStride = frameWidth;
535 int cropWidth = frameWidth;
537 assertTrue(frameWidth > 0)
    [all...]
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 

Completed in 1094 milliseconds