Searched refs:kMaxHeight (Results 1 - 17 of 17) sorted by relevance

/external/webrtc/talk/media/base/
H A Dvideocommon.cc111 const int kMaxHeight = 3072; local
121 if (new_frame_height > kMaxHeight) {
122 new_frame_width = new_frame_width * kMaxHeight / new_frame_height;
123 new_frame_height = kMaxHeight;
H A Dvideocapturer_unittest.cc318 const int kMaxHeight = 3072; local
320 int kHeight = kMaxHeight + 4;
/external/skia/src/effects/
H A DGrAlphaThresholdFragmentProcessor.fp69 const int kMaxHeight = 1000;
71 uint32_t height = testData->fRandom->nextULessThan(kMaxHeight);
73 uint32_t y = testData->fRandom->nextULessThan(kMaxHeight - height);
H A DGrAlphaThresholdFragmentProcessor.cpp112 const int kMaxHeight = 1000; local
114 uint32_t height = testData->fRandom->nextULessThan(kMaxHeight);
116 uint32_t y = testData->fRandom->nextULessThan(kMaxHeight - height);
/external/skia/src/gpu/effects/
H A DGrMagnifierEffect.fp74 const int kMaxHeight = 200;
77 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
80 SkIRect bounds = SkIRect::MakeWH(SkIntToScalar(kMaxWidth), SkIntToScalar(kMaxHeight));
H A DGrMagnifierEffect.cpp176 const int kMaxHeight = 200; local
179 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
182 SkIRect bounds = SkIRect::MakeWH(SkIntToScalar(kMaxWidth), SkIntToScalar(kMaxHeight));
/external/skqp/src/effects/
H A DGrAlphaThresholdFragmentProcessor.fp69 const int kMaxHeight = 1000;
71 uint32_t height = testData->fRandom->nextULessThan(kMaxHeight);
73 uint32_t y = testData->fRandom->nextULessThan(kMaxHeight - height);
H A DGrAlphaThresholdFragmentProcessor.cpp112 const int kMaxHeight = 1000; local
114 uint32_t height = testData->fRandom->nextULessThan(kMaxHeight);
116 uint32_t y = testData->fRandom->nextULessThan(kMaxHeight - height);
/external/skqp/src/gpu/effects/
H A DGrMagnifierEffect.fp74 const int kMaxHeight = 200;
77 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
80 SkIRect bounds = SkIRect::MakeWH(SkIntToScalar(kMaxWidth), SkIntToScalar(kMaxHeight));
H A DGrMagnifierEffect.cpp176 const int kMaxHeight = 200; local
179 uint32_t height = d->fRandom->nextULessThan(kMaxHeight);
182 SkIRect bounds = SkIRect::MakeWH(SkIntToScalar(kMaxWidth), SkIntToScalar(kMaxHeight));
/external/libyuv/files/unit_test/
H A Dunit_test.h55 static const int kMaxHeight = 32768; variable
61 if (src_width > kMaxWidth || src_height > kMaxHeight ||
62 dst_width > kMaxWidth || dst_height > kMaxHeight) {
/external/webrtc/talk/app/webrtc/
H A Dmediaconstraintsinterface.h69 static const char kMaxHeight[]; // maxHeight member in class:webrtc::MediaConstraintsInterface
H A Dmediaconstraintsinterface.cc43 const char MediaConstraintsInterface::kMaxHeight[] = "maxHeight"; member in class:webrtc::MediaConstraintsInterface
H A Dvideosource_unittest.cc253 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 288);
475 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 288);
517 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 270);
H A Dvideosource.cc100 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
144 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
/external/skia/tools/skiaserve/
H A DRequest.cpp20 static int kMaxHeight = 8192; variable
148 // We clip to kMaxWidth / kMaxHeight for performance reasons.
151 SkTMin(bounds.height(), kMaxHeight));
/external/skqp/tools/skiaserve/
H A DRequest.cpp20 static int kMaxHeight = 8192; variable
148 // We clip to kMaxWidth / kMaxHeight for performance reasons.
151 SkTMin(bounds.height(), kMaxHeight));

Completed in 272 milliseconds