Searched defs:bottom (Results 276 - 300 of 413) sorted by relevance

<<11121314151617

/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Derr.h361 * |bottom| then the queue is empty. */
363 /* bottom contains the index of the last error in the queue. */
364 unsigned bottom; member in struct:err_state_st
/external/chromium_org/third_party/hwcplus/include/system/
H A Dwindow.h61 int32_t bottom; member in struct:android_native_rect_t
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_bld.cpp127 uint32_t bottom = 0, top = src->invUCA->tableSize; local
133 while(bottom < top-1) {
134 i = (top+bottom)/2;
141 bottom = i;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dmatrix.h328 VGfloat bottom = ax1 * ay2 - ax2 * ay1; local
330 if (!bottom)
333 g = gtop / bottom;
334 h = htop / bottom;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
H A DxmesaP.h169 GLint bottom; /* used for FLIP macro, equals height - 1 */ member in struct:xmesa_renderbuffer
307 #define YFLIP(XRB, Y) ((XRB)->bottom - (Y))
312 * X==0 is left, Y==0 is bottom.
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_matrix.c969 * \param bottom bottom clipping plane coordinate.
980 GLfloat bottom, GLfloat top,
987 y = (2.0F*nearval) / (top-bottom);
989 b = (top+bottom) / (top-bottom);
1009 * \param bottom bottom clipping plane coordinate.
1020 GLfloat bottom, GLfloat top,
1032 M(1,1) = 2.0F / (top-bottom);
978 _math_matrix_frustum( GLmatrix *mat, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat nearval, GLfloat farval ) argument
1018 _math_matrix_ortho( GLmatrix *mat, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat nearval, GLfloat farval ) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRegion.cpp54 assert_sentinel(runs[1], false); // bottom
144 int32_t right, int32_t bottom) {
145 if (left >= right || top >= bottom) {
149 fBounds.set(left, top, right, bottom);
242 // trim off any empty spans from the top and bottom
247 assert_sentinel(runs[1], false); // bottom
252 runs[0] = runs[-2]; // set new top to prev bottom
263 if (stop[-5] == SkRegion::kRunTypeSentinel) { // eek, stop[-4] was a bottom with no x-runs
271 assert_sentinel(stop[-6], false); // last bottom
561 int bottom local
143 setRect(int32_t left, int32_t top, int32_t right, int32_t bottom) argument
773 addSpan(int bottom, const SkRegion::RunType a_runs[], const SkRegion::RunType b_runs[]) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/mac/
H A Dvideo_render_agl.cc997 || _windowHeight != (_windowRect.bottom - _windowRect.top))
1006 _windowHeight = _windowRect.bottom - _windowRect.top;
1064 globalBounds.bottom = contentBounds.bottom;
1067 windowHeight = globalBounds.bottom - globalBounds.top;
1120 contentBounds.top, contentBounds.right, contentBounds.bottom, contentBounds.left);
1236 //WEBRTC_LOG(kTraceDebug, "%s contentBounds t:%d r:%d b:%d l:%d", __FUNCTION__, contentBounds.top, contentBounds.right, contentBounds.bottom, contentBounds.left);
1241 _currentParentWindowBounds.bottom = contentBounds.bottom;
1245 _currentParentWindowHeight = _currentParentWindowBounds.bottom
1976 GetChannelProperties(const uint16_t streamId, uint32_t& zOrder, float& left, float& top, float& right, float& bottom) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/windows/
H A Dvideo_render_direct3d9.cc345 _originalHwndRect.bottom - _originalHwndRect.top,
473 _winHeight = _originalHwndRect.bottom - _originalHwndRect.top;
851 const float bottom)
861 d3dChannel->SetStreamSettings(0, zOrder, left, top, right, bottom);
878 float& right, float& bottom)
894 return ddobj->GetStreamSettings(0, zOrder, left, top, right, bottom);
895 //return ddobj->GetStreamSettings(streamId, zOrder, left, top, right, bottom);
908 float left, right, top, bottom; local
917 bottom = 1 - stopHeight * 2;
921 { left, bottom, 0.
846 CreateChannel(const uint32_t channel, const uint32_t zOrder, const float left, const float top, const float right, const float bottom) argument
874 GetStreamSettings(const uint32_t channel, const uint16_t streamId, uint32_t& zOrder, float& left, float& top, float& right, float& bottom) argument
957 SetCropping(const uint32_t channel, const uint16_t streamId, const float left, const float top, const float right, const float bottom) argument
973 SetText(const uint8_t textId, const uint8_t* text, const int32_t textLength, const uint32_t colorText, const uint32_t colorBg, const float left, const float top, const float rigth, const float bottom) argument
985 SetBitmap(const void* bitMap, const uint8_t pictureId, const void* colorKey, const float left, const float top, const float right, const float bottom) argument
1150 ConfigureRenderer(const uint32_t channel, const uint16_t streamId, const unsigned int zOrder, const float left, const float top, const float right, const float bottom) argument
[all...]
/external/chromium_org/ui/message_center/views/
H A Dmessage_center_view.cc189 // for top and bottom, but the bottom margin here should be smaller
198 top_down ? kMarginBetweenItems - shadow_insets.bottom() : 0, /* bottom */
214 kMarginBetweenItems - MessageView::GetShadowInsets().bottom();
304 padding = kMarginBetweenItems - MessageView::GetShadowInsets().bottom();
449 kMarginBetweenItems - MessageView::GetShadowInsets().bottom();
476 kMarginBetweenItems - MessageView::GetShadowInsets().bottom();
477 int bottom = (reposition_top_ > 0) local
479 : GetHeightForWidth(width()) - GetInsets().bottom();
[all...]
H A Dnotification_view.cc53 int bottom,
55 return views::Border::CreateEmptyBorder(top, left, bottom, right);
59 scoped_ptr<views::Border> MakeTextBorder(int padding, int top, int bottom) { argument
60 // Split the padding between the top and the bottom, then add the extra space.
63 (padding + 1) / 2 + bottom,
68 scoped_ptr<views::Border> MakeProgressBarBorder(int top, int bottom) { argument
71 bottom,
51 MakeEmptyBorder(int top, int left, int bottom, int right) argument
/external/chromium_org/ui/views/controls/
H A Dscroll_view.cc307 viewport_bounds.bottom() - height_offset,
316 viewport_bounds.bottom());
321 viewport_bounds.bottom(),
588 // Align the bottom most row to the top of the view.
589 int bottom = std::min(scroll_view->contents()->height() - 1, local
591 RowInfo bottom_row_info = GetRowInfo(bottom);
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc239 uptr bottom = stack & ~(PageSize - 1); local
240 ssize += stack - bottom;
244 PoisonShadow(bottom, ssize, 0);
/external/deqp/framework/referencerenderer/
H A DrrRenderState.hpp213 int bottom; member in struct:rr::WindowRectangle
219 , bottom (bottom_)
/external/e2fsprogs/intl/
H A Ddcigettext.c793 size_t top, bottom; local
795 bottom = 0;
797 while (bottom < top)
801 act = (bottom + top) / 2;
808 bottom = act + 1;
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dmatrix.h328 VGfloat bottom = ax1 * ay2 - ax2 * ay1; local
330 if (!bottom)
333 g = gtop / bottom;
334 h = htop / bottom;
/external/mesa3d/src/mesa/drivers/x11/
H A DxmesaP.h169 GLint bottom; /* used for FLIP macro, equals height - 1 */ member in struct:xmesa_renderbuffer
307 #define YFLIP(XRB, Y) ((XRB)->bottom - (Y))
312 * X==0 is left, Y==0 is bottom.
/external/mesa3d/src/mesa/math/
H A Dm_matrix.c969 * \param bottom bottom clipping plane coordinate.
980 GLfloat bottom, GLfloat top,
987 y = (2.0F*nearval) / (top-bottom);
989 b = (top+bottom) / (top-bottom);
1009 * \param bottom bottom clipping plane coordinate.
1020 GLfloat bottom, GLfloat top,
1032 M(1,1) = 2.0F / (top-bottom);
978 _math_matrix_frustum( GLmatrix *mat, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat nearval, GLfloat farval ) argument
1018 _math_matrix_ortho( GLmatrix *mat, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat nearval, GLfloat farval ) argument
[all...]
/external/opencv/cv/src/
H A Dcvstereobm.cpp136 const uchar* bottom = sptr + srcstep*MIN(y+wsz2,size.height-1); local
144 vsum[x] = (ushort)(vsum[x] + bottom[x] - top[x]);
/external/openssl/crypto/err/
H A Derr.h157 int top,bottom; member in struct:err_state_st
/external/openssl/include/openssl/
H A Derr.h157 int top,bottom; member in struct:err_state_st
/external/pdfium/core/include/fxcrt/
H A Dfx_coordinates.h273 baseType bottom() const function in class:CFX_RTemplate
304 void Inflate(baseType left, baseType top, baseType right, baseType bottom) argument
309 FXT_RECT::height += top + bottom;
326 void Deflate(baseType left, baseType top, baseType right, baseType bottom) argument
331 FXT_RECT::height -= top + bottom;
359 return rt.left >= left && rt.right() <= right() && rt.top >= top && rt.bottom() <= bottom();
442 baseType r = right(), b = bottom();
464 baseType r = right(), b = bottom();
474 if (b < rt.bottom()) {
536 int bottom; member in struct:FX_RECT
691 Inflate(FX_FLOAT left, FX_FLOAT bottom, FX_FLOAT right, FX_FLOAT top) argument
714 Deflate(FX_FLOAT left, FX_FLOAT bottom, FX_FLOAT right, FX_FLOAT top) argument
742 FX_FLOAT bottom; member in class:CFX_FloatRect
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp74 void CPDF_Type3Glyphs::AdjustBlue(FX_FLOAT top, FX_FLOAT bottom, int& top_line, int& bottom_line) argument
77 bottom_line = _AdjustBlue(bottom, m_BottomBlueCount, m_BottomBlue);
611 FX_FLOAT font_size = (FX_FLOAT)height * 1000.0f / (FX_FLOAT)(font_bbox.top - font_bbox.bottom);
/external/pdfium/core/src/fpdfdoc/
H A Dpdf_vt.h49 left = top = right = bottom = 0.0f;
52 FX_FLOAT right, FX_FLOAT bottom)
57 this->bottom = bottom;
64 this->bottom = rect.bottom;
68 left = top = right = bottom = 0.0f;
72 if(this->top > this->bottom) {
73 return this->top - this->bottom;
75 return this->bottom
51 CPVT_FloatRect(FX_FLOAT left, FX_FLOAT top, FX_FLOAT right, FX_FLOAT bottom) argument
[all...]
/external/pdfium/fpdfsdk/src/formfiller/
H A DFFL_FormFiller.cpp153 this->InvalidateRect(rect.left, rect.top, rect.right, rect.bottom);
169 this->InvalidateRect(rcFFL.left, rcFFL.top, rcFFL.right, rcFFL.bottom);
315 this->InvalidateRect(rcRect.left, rcRect.top, rcRect.right, rcRect.bottom);
531 mt = CPDF_Matrix(-1,0,0,-1,rcDA.right - rcDA.left,rcDA.top - rcDA.bottom);
534 mt = CPDF_Matrix(0,-1,1,0,0,rcDA.top - rcDA.bottom);
538 mt.f += rcDA.bottom;
558 FX_FLOAT fHeight = rectAnnot.top - rectAnnot.bottom;
771 this->InvalidateRect(rcRect.left, rcRect.top, rcRect.right, rcRect.bottom);
804 void CFFL_FormFiller::InvalidateRect(double left, double top, double right, double bottom) argument
807 m_pApp->FFI_Invalidate(pPage, left, top, right, bottom);
[all...]

Completed in 255 milliseconds

<<11121314151617