Searched refs:bottom (Results 1 - 25 of 709) sorted by path

1234567891011>>

/frameworks/av/include/media/stagefright/
H A DMetaData.h247 int32_t right, int32_t bottom);
258 int32_t *right, int32_t *bottom);
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h111 int32_t left, int32_t top, int32_t right, int32_t bottom);
134 int32_t *left, int32_t *top, int32_t *right, int32_t *bottom) const;
/frameworks/av/include/ndk/
H A DNdkImage.h506 * <p>Note that the right and bottom coordinates are exclusive, so the width of the rectangle is
507 * (right - left) and the height of the rectangle is (bottom - top).</p>
513 int32_t bottom; member in struct:AImageCropRect
/frameworks/av/media/img_utils/include/img_utils/
H A DDngUtils.h96 uint32_t bottom,
158 * badRectCount - number of (top, left, bottom, right) tuples are given in
/frameworks/av/media/img_utils/src/
H A DDngUtils.cpp147 /*bottom*/activeAreaHeight - 1,
165 /*bottom*/activeAreaHeight - 1,
183 /*bottom*/activeAreaHeight - 1,
201 /*bottom*/activeAreaHeight - 1,
220 uint32_t bottom,
256 bottom,
218 addGainMap(uint32_t top, uint32_t left, uint32_t bottom, uint32_t right, uint32_t plane, uint32_t planes, uint32_t rowPitch, uint32_t colPitch, uint32_t mapPointsV, uint32_t mapPointsH, double mapSpacingV, double mapSpacingH, double mapOriginV, double mapOriginH, uint32_t mapPlanes, const float* mapGains) argument
/frameworks/av/media/libeffects/testlibs/
H A DAudioEqualizer.cpp86 const int32_t bottom = Effects_log2(kMinFreq); local
88 const int32_t jump = (top - bottom) / (mNumPeaking + 2);
89 int32_t centerFreq = bottom + jump/2;
/frameworks/av/media/libstagefright/
H A DACodec.cpp6116 if (buffer->format()->findRect("crop", &crop.left, &crop.top, &crop.right, &crop.bottom)) {
6117 // NOTE: native window uses extended right-bottom coordinate
6119 ++crop.bottom;
H A DMediaCodec.cpp1806 int32_t left, top, right, bottom, width, height; local
1807 if (mOutputFormat->findRect("crop", &left, &top, &right, &bottom)) {
1808 mCrypto->notifyResolution(right - left + 1, bottom - top + 1);
2931 int32_t left, top, right, bottom; local
2932 if (info->mData->format()->findRect("crop", &left, &top, &right, &bottom)) {
2933 info->mData->meta()->setRect("crop-rect", left, top, right, bottom);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_reconstruct.c2240 i32 top, y, bottom; local
2288 bottom = ystop > (i32)height ? ystop - (i32)height : 0;
2289 y = (i32)blockHeight - top - bottom;
2309 for ( ; bottom; bottom-- )
/frameworks/av/media/libstagefright/colorconversion/
H A DSoftwareRenderer.cpp175 // NOTE: native window uses extended right-bottom coordinate
180 crop.bottom = mCropBottom + 1;
182 crop.left, crop.top, crop.right, crop.bottom, bufWidth, bufHeight);
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp332 int32_t left, int32_t top, int32_t right, int32_t bottom) {
339 item->u.rectValue.mBottom = bottom;
380 int32_t *left, int32_t *top, int32_t *right, int32_t *bottom) const {
389 *bottom = item->u.rectValue.mBottom;
330 setRect( const char *name, int32_t left, int32_t top, int32_t right, int32_t bottom) argument
H A DMetaData.cpp83 int32_t right, int32_t bottom) {
88 r.mBottom = bottom;
172 int32_t *right, int32_t *bottom) {
186 *bottom = r->mBottom;
80 setRect( uint32_t key, int32_t left, int32_t top, int32_t right, int32_t bottom) argument
169 findRect( uint32_t key, int32_t *left, int32_t *top, int32_t *right, int32_t *bottom) argument
/frameworks/av/media/libstagefright/foundation/include/
H A DMetaData.h247 int32_t right, int32_t bottom);
258 int32_t *right, int32_t *bottom);
/frameworks/av/media/libstagefright/foundation/include/foundation/
H A DAMessage.h111 int32_t left, int32_t top, int32_t right, int32_t bottom);
134 int32_t *left, int32_t *top, int32_t *right, int32_t *bottom) const;
/frameworks/av/media/libstagefright/include/
H A DMetaData.h247 int32_t right, int32_t bottom);
258 int32_t *right, int32_t *bottom);
/frameworks/av/media/libstagefright/include/foundation/
H A DAMessage.h111 int32_t left, int32_t top, int32_t right, int32_t bottom);
134 int32_t *left, int32_t *top, int32_t *right, int32_t *bottom) const;
/frameworks/av/media/libstagefright/omx/1.0/
H A DConversion.h1739 static_cast<int32_t>(rect.bottom)};
1763 static_cast<int32_t>(t[r].bottom));
1907 static_cast<int32_t>(t.crop.bottom)));
1958 static_cast<int32_t>(lCrop.bottom)};
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp577 rect.top <= y && y < rect.bottom;
581 rect.top <= 2*y && 2*y < rect.bottom;
/frameworks/av/media/ndk/
H A DNdkImage.cpp687 rect->bottom = height;
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp296 p.focusingAreas[i].bottom,
313 p.meteringAreas[i].bottom,
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp2173 normalizedYToArray(focusingAreas[j].bottom);
2202 normalizedYToArray(meteringAreas[j].bottom);
2677 areas[0].bottom == 0 &&
2701 if (a->bottom < -1000 || a->bottom > 1000) return BAD_VALUE;
2703 if (a->top >= a->bottom) return BAD_VALUE;
H A DParameters.h101 int left, top, right, bottom; member in struct:android::camera2::Parameters::Area
104 Area(int left, int top, int right, int bottom, int weight): argument
105 left(left), top(top), right(right), bottom(bottom),
108 return (left == 0) && (top == 0) && (right == 0) && (bottom == 0);
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.cpp349 CameraHardwareInterface::setCrop(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
359 mPreviewCrop.bottom = bottom;
986 int left, int top, int right, int bottom)
993 hw->mPreviewCrop.bottom = bottom;
985 sSetCrop(struct preview_stream_ops *w, int left, int top, int right, int bottom) argument
H A DCameraHardwareInterface.h392 int left, int top, int right, int bottom);
450 setCrop(int32_t left, int32_t top, int32_t right, int32_t bottom) override;
/frameworks/base/apct-tests/perftests/core/src/android/text/
H A DDynamicLayoutPerfTest.java79 int y, int bottom, Paint paint) {
78 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument

Completed in 7243 milliseconds

1234567891011>>