Searched refs:bottom (Results 151 - 175 of 706) sorted by relevance

1234567891011>>

/external/skia/src/core/
H A DSkSpriteBlitter4f.cpp50 for (int bottom = y + height; y < bottom; ++y) {
99 for (int bottom = y + height; y < bottom; ++y) {
H A DSkDrawable.cpp31 canvas->drawLine(r.left(), r.top(), r.right(), r.bottom(), paint);
32 canvas->drawLine(r.left(), r.bottom(), r.right(), r.top(), paint);
/external/skia/tests/
H A DPathOpsQuadLineIntersectionTest.cpp37 double bottom = line[1].fY; local
38 flipped = top > bottom;
40 SkTSwap<double>(top, bottom);
42 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped);
H A DPathOpsQuadLineIntersectionThreadedTest.cpp22 double bottom = line[1].fY; local
23 flipped = top > bottom;
25 SkTSwap<double>(top, bottom);
27 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped);
H A DPathOpsLineIntersectionTest.cpp136 double bottom = SkTMax(line1[0].fY, line1[1].fY); local
138 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
143 double bottom = SkTMax(line2[0].fY, line2[1].fY); local
145 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top);
183 double bottom = SkTMax(line1[0].fY, line1[1].fY); local
185 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
192 double bottom = SkTMax(line2[0].fY, line2[1].fY); local
194 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top);
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
H A DVDUBuffer.java56 private int bottomMargin; /* bottom scroll margin */
380 int bottom =
384 // System.out.println("l is "+l+", top is "+top+", bottom is "+bottom+", bottomargin is "+bottomMargin+", topMargin is "+topMargin);
387 if (n > (bottom - top)) {
388 n = (bottom - top);
390 int size = bottom - l - (n - 1);
397 System.arraycopy(charArray, oldBase + l, cbuf, 0, bottom - l - (n - 1));
398 System.arraycopy(charAttributes, oldBase + l, abuf, 0, bottom - l - (n - 1));
399 System.arraycopy(cbuf, 0, charArray, oldBase + l + n, bottom
[all...]
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddiffer.cc28 // One additional row/column is added as a boundary on the right & bottom.
56 // Calc size of partial blocks which may be present on right and bottom edge.
166 bool* bottom = diff_info; local
170 bottom += diff_info_stride;
171 right = bottom;
183 right = bottom;
/external/webrtc/webrtc/modules/video_render/android/
H A Dvideo_render_opengles20.h30 const float right, const float bottom);
/external/drm_hwcomposer/
H A Dseparate_rects.cpp33 TNum left, top, bottom; member in struct:separate_rects::StartedRect
38 return (top < rhs.top || (top == rhs.top && bottom < rhs.bottom)) ||
39 (top == rhs.top && bottom == rhs.bottom && id_set < rhs.id_set);
80 // y-coordinate from top to bottom. Along the way, a running set of rectangle
81 // IDs is either added to or subtracted from as the top and bottom edges are
95 std::set<SweepEvent<TId, TNum>> sweep_v_events; // Top or bottom bounds
97 // A started rect is a rectangle whose left, top, bottom edge, and set of
113 if (rect.left >= rect.right || rect.top >= rect.bottom)
[all...]
/external/pdfium/core/fpdfapi/font/
H A Dcpdf_font.cpp202 m_FontBBox.bottom = pBBox->GetIntegerAt(1);
229 if (m_FontBBox.top == 0 && m_FontBBox.bottom == 0 && m_FontBBox.left == 0 &&
234 m_FontBBox.bottom = TT2PDF(FXFT_Get_Face_yMin(face), face);
259 if (m_FontBBox.bottom > rect.bottom) {
260 m_FontBBox.bottom = rect.bottom;
268 m_Ascent = rect.bottom == rect.top ? m_FontBBox.top : rect.top;
270 m_Descent = rect.bottom == rect.top ? m_FontBBox.bottom
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextView.java239 public void setCompoundDrawablesWithIntrinsicBounds(int left, int top, int right, int bottom) { argument
240 compoundDrawablesImpl = new CompoundDrawables(left, top, right, bottom);
245 Drawable right, Drawable bottom) {
246 compoundDrawablesImpl = new CompoundDrawables(left, top, right, bottom);
250 public void setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) { argument
251 compoundDrawablesImpl = new CompoundDrawables(left, top, right, bottom);
539 public CompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) { argument
543 bottomDrawable = bottom;
546 public CompoundDrawables(int left, int top, int right, int bottom) { argument
550 bottomDrawable = bottom !
244 setCompoundDrawablesWithIntrinsicBounds(Drawable left, Drawable top, Drawable right, Drawable bottom) argument
[all...]
/external/skia/src/pathops/
H A DSkDConicLineIntersection.cpp150 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { argument
151 this->addExactVerticalEndPoints(top, bottom, axisIntercept);
153 this->addNearVerticalEndPoints(top, bottom, axisIntercept);
162 double lineT = (pt.fY - top) / (bottom - top);
245 void addExactVerticalEndPoints(double top, double bottom, double x) { argument
247 double lineT = SkDLine::ExactPointV(fConic[cIndex], top, bottom, x);
256 void addNearVerticalEndPoints(double top, double bottom, double x) { argument
262 double lineT = SkDLine::NearPointV(fConic[cIndex], top, bottom, x);
354 int SkIntersections::vertical(const SkDConic& conic, double top, double bottom, double x, argument
356 SkDLine line = {{{ x, top }, { x, bottom }}};
[all...]
H A DSkDCubicLineIntersection.cpp247 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { argument
248 addExactVerticalEndPoints(top, bottom, axisIntercept);
250 addNearVerticalEndPoints(top, bottom, axisIntercept);
257 double lineT = (pt.fY - top) / (bottom - top);
340 void addExactVerticalEndPoints(double top, double bottom, double x) { argument
342 double lineT = SkDLine::ExactPointV(fCubic[cIndex], top, bottom, x);
351 void addNearVerticalEndPoints(double top, double bottom, double x) { argument
357 double lineT = SkDLine::NearPointV(fCubic[cIndex], top, bottom, x);
425 int SkIntersections::vertical(const SkDCubic& cubic, double top, double bottom, double x, argument
427 SkDLine line = {{{ x, top }, { x, bottom }}};
[all...]
H A DSkDQuadLineIntersection.cpp254 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { argument
255 addExactVerticalEndPoints(top, bottom, axisIntercept);
257 addNearVerticalEndPoints(top, bottom, axisIntercept);
264 double lineT = (pt.fY - top) / (bottom - top);
345 void addExactVerticalEndPoints(double top, double bottom, double x) { argument
347 double lineT = SkDLine::ExactPointV(fQuad[qIndex], top, bottom, x);
356 void addNearVerticalEndPoints(double top, double bottom, double x) { argument
362 double lineT = SkDLine::NearPointV(fQuad[qIndex], top, bottom, x);
430 int SkIntersections::vertical(const SkDQuad& quad, double top, double bottom, double x, argument
432 SkDLine line = {{{ x, top }, { x, bottom }}};
[all...]
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
H A Dscan.css29 border-bottom:6px solid rgba(180,174,239,.15);
/external/icu/icu4c/source/test/perf/perldriver/
H A DOutput.pm220 border-bottom-width: 1 }
221 th.source { border-right-width: 1; border-bottom-width: 1 }
222 th.sourceType { border-right-width: 1; border-top-width: 1; border-bottom-width: 1 }
224 td.string { text-align: Left; border-bottom-width:1; border-right-width:1 }
225 td.sepvalue { border-bottom-width: 1; border-right-width: 1 }
226 td.value { border-bottom-width: 1 }
227 td.worse { color: #FF0000; font-weight: bold; border-bottom-width: 1 }
228 td.error { font-size: 75%; border-right-width: 1; border-bottom-width: 1 }
230 border-bottom-width: 1 }
/external/icu/icu4j/perf-tests/perldriver/
H A DOutput.pm218 border-bottom-width: 1 }
219 th.source { border-right-width: 1; border-bottom-width: 1 }
220 th.sourceType { border-right-width: 1; border-top-width: 1; border-bottom-width: 1 }
222 td.string { text-align: Left; border-bottom-width:1; border-right-width:1 }
223 td.sepvalue { border-bottom-width: 1; border-right-width: 1 }
224 td.value { border-bottom-width: 1 }
225 td.worse { color: #FF0000; font-weight: bold; border-bottom-width: 1 }
226 td.error { font-size: 75%; border-right-width: 1; border-bottom-width: 1 }
228 border-bottom-width: 1 }
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/
H A Dthreads_scenarii.c77 void *bottom; member in struct:__scenario
100 .bottom = NULL, \
387 scenarii[i].bottom = malloc(minstacksize + pagesize);
388 if (scenarii[i].bottom == NULL)
394 scenarii[i].bottom,
403 scenarii[i].bottom, minstacksize);
471 if (scenarii[i].bottom != NULL)
472 free(scenarii[i].bottom);
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
H A Dthreads_scenarii.c42 void *bottom; /* Stores the stack start when an alternate stack is required */ member in struct:__scenario
57 .bottom=NULL, \
338 scenarii[i].bottom = malloc(minstacksize + pagesize);
339 if (scenarii[i].bottom == NULL) {
346 scenarii[i].bottom,
355 scenarii[i].bottom, minstacksize);
424 if (scenarii[i].bottom != NULL)
425 free(scenarii[i].bottom);
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/
H A Dthreads_scenarii.c42 void *bottom; /* Stores the stack start when an alternate stack is required */ member in struct:__scenario
57 .bottom=NULL, \
338 scenarii[i].bottom = malloc(minstacksize + pagesize);
339 if (scenarii[i].bottom == NULL) {
346 scenarii[i].bottom,
355 scenarii[i].bottom, minstacksize);
424 if (scenarii[i].bottom != NULL)
425 free(scenarii[i].bottom);
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/
H A Dthreads_scenarii.c42 void *bottom; /* Stores the stack start when an alternate stack is required */ member in struct:__scenario
57 .bottom=NULL, \
405 scenarii[i].bottom = malloc(minstacksize + pagesize);
406 if (scenarii[i].bottom == NULL) {
413 scenarii[i].bottom,
422 scenarii[i].bottom, minstacksize);
491 if (scenarii[i].bottom != NULL)
492 free(scenarii[i].bottom);
/external/mesa3d/src/mesa/main/
H A Dmatrix.h37 GLdouble bottom, GLdouble top,
42 GLdouble bottom, GLdouble top,
/external/skia/include/c/
H A Dsk_types.h106 int32_t bottom; member in struct:__anon16836
113 float bottom; member in struct:__anon16837
/external/webrtc/webrtc/modules/video_render/linux/
H A Dvideo_x11_channel.h44 float bottom);
48 float& top, float& right, float& bottom) const;
/external/boringssl/src/crypto/bn/
H A Drandom.c121 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) { argument
135 if (bottom != BN_RAND_BOTTOM_ANY && bottom != BN_RAND_BOTTOM_ODD) {
155 /* Make a random number and set the top and bottom bits. */
175 /* Set the bottom bit if requested, */
176 if (bottom == BN_RAND_BOTTOM_ODD) {
194 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) { argument
195 return BN_rand(rnd, bits, top, bottom);

Completed in 4307 milliseconds

1234567891011>>