Searched defs:bottom (Results 1 - 25 of 112) sorted by relevance

12345

/external/dropbear/libtommath/
H A Dbn_mp_lshd.c36 register mp_digit *top, *bottom; local
45 bottom = a->dp + a->used - 1 - b;
49 * the bottom to the top. see bn_mp_rshd.c for more info.
52 *top-- = *bottom--;
H A Dbn_mp_rshd.c35 register mp_digit *bottom, *top; local
39 /* bottom */
40 bottom = a->dp;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
61 *bottom++ = 0;
/external/skia/src/core/
H A DSkTSort.h24 void SkTHeapSort_SiftDown(T array[], int root, int bottom) { argument
25 while (root*2 + 1 <= bottom) {
27 if (child+1 <= bottom && array[child] < array[child+1]) {
H A DSkRect.cpp19 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) argument
22 if (left >= right || top >= bottom)
27 this->set(left, top, right, bottom);
33 if (bottom > fBottom) fBottom = bottom;
107 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
109 if (left < right && top < bottom && !this->isEmpty() && // check for empties
110 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
115 if (fBottom > bottom) fBottom = bottom;
127 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/skia/src/svg/
H A DSkSVGCircle.cpp38 SkScalar left, top, right, bottom; local
42 bottom = cy + r;
50 sprintf(scratch, "%g", bottom);
51 parser._addAttribute("bottom", scratch);
H A DSkSVGEllipse.cpp40 SkScalar left, top, right, bottom; local
44 bottom = cy + ry;
52 sprintf(scratch, "%g", bottom);
53 parser._addAttribute("bottom", scratch);
/external/webkit/WebCore/dom/
H A DClientRect.h45 float bottom() const { return m_rect.bottom(); } function in class:WebCore::ClientRect
/external/webkit/WebCore/css/
H A DRect.h33 CSSPrimitiveValue* bottom() const { return m_bottom.get(); } function in class:WebCore::RectBase
38 void setBottom(PassRefPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; } argument
/external/webkit/WebCore/platform/
H A DLengthBox.h60 Length bottom() const { return m_bottom; } function in struct:WebCore::LengthBox
/external/grub/stage2/
H A Dcommon.c106 mmap_avail_at (unsigned long bottom) argument
112 top = bottom;
136 return (unsigned long) top - bottom;
/external/openssl/crypto/bn/
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
141 /* make a random number and set the top and bottom bits */
197 if (bottom) /* set bottom bit if requested */
211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
213 return bnrand(0, rnd, bits, top, bottom);
216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
218 return bnrand(1, rnd, bits, top, bottom);
222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
224 return bnrand(2, rnd, bits, top, bottom);
[all...]
/external/webkit/WebCore/rendering/style/
H A DBorderData.h39 BorderValue bottom; member in class:WebCore::BorderData
51 return left.nonZero(!haveImage) || right.nonZero(!haveImage) || top.nonZero(!haveImage) || bottom.nonZero(!haveImage);
90 if (!image.hasImage() && (bottom.style() == BNONE || bottom.style() == BHIDDEN))
92 return bottom.width;
97 return left == o.left && right == o.right && top == o.top && bottom == o.bottom && image == o.image &&
H A DSVGRenderStyle.cpp148 static void getSVGShadowExtent(ShadowData* shadow, int& top, int& right, int& bottom, int& left) argument
152 bottom = 0;
159 bottom = max(bottom, shadow->y + blurAndSpread);
189 int overflowBottom = repaintRect.bottom() + shadowBottom;
/external/chromium/base/gfx/
H A Drect.h71 int bottom() const { return y() + height(); } function in class:gfx::Rect
81 void Inset(int left, int top, int right, int bottom);
H A Drect.cc57 set_height(r.bottom - r.top);
63 set_height(r.bottom - r.top);
107 void Rect::Inset(int left, int top, int right, int bottom) { argument
110 set_height(std::max(height() - top - bottom, 0));
128 r.bottom = bottom();
144 (point_y >= y()) && (point_y < bottom());
149 rect.y() >= y() && rect.bottom() <= bottom());
154 rect.y() >= bottom() || rec
[all...]
/external/e2fsprogs/ext2ed/
H A Dwin.c125 int left,top,right,bottom,i; local
136 top=TITLE_WIN_LINES+SHOW_WIN_LINES+1;bottom=top+show_pad_info.display_lines-1;
/external/quake/quake/src/QW/client/
H A Dgl_rmisc.c236 int top, bottom; local
268 bottom = player->bottomcolor;
270 bottom = (bottom < 0) ? 0 : ((bottom > 13) ? 13 : bottom);
272 bottom *= 16;
284 if (bottom < 128)
285 translate[BOTTOM_RANGE+i] = bottom+i;
287 translate[BOTTOM_RANGE+i] = bottom
[all...]
H A Dr_edge.c665 int iv, bottom; local
706 bottom = r_refdef.vrectbottom - 1;
708 for (iv=r_refdef.vrect.y ; iv<bottom ; iv++)
/external/quake/quake/src/WinQuake/
H A Dgl_rmisc.cpp242 int top, bottom; local
260 bottom = (cl.scores[playernum].colors &15)<<4;
272 if (bottom < 128)
273 translate[BOTTOM_RANGE+i] = bottom+i;
275 translate[BOTTOM_RANGE+i] = bottom+15-i;
/external/skia/include/core/
H A DSkRect.h39 /** Returns the rectangle's height. This does not check for a valid rectangle (i.e. top <= bottom)
61 void set(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
65 fBottom = bottom;
69 and adding dy to its top and bottom.
84 making the rectangle wider. The same hods true for dy and the top and bottom.
95 and bottom are not. Thus for the rectangle (0, 0, 5, 10), the
106 bool contains(int32_t left, int32_t top, int32_t right, int32_t bottom) const {
107 return left < right && top < bottom && !this->isEmpty() && // check for empties
109 fRight >= right && fBottom >= bottom;
127 int32_t right, int32_t bottom) cons
[all...]
/external/webkit/WebCore/platform/graphics/
H A DFloatQuad.cpp83 float bottom = max4(m_p1.y(), m_p2.y(), m_p3.y(), m_p4.y()); local
85 return FloatRect(left, top, right - left, bottom - top);
/external/webkit/WebCore/rendering/
H A DRootInlineBox.h65 void setLineTopBottomPositions(int top, int bottom);
157 inline void RootInlineBox::setLineTopBottomPositions(int top, int bottom) argument
160 m_lineBottom = bottom;
/external/bison/lib/
H A Dgetopt.c157 int bottom = d->__first_nonopt;
189 while (top > middle && middle > bottom)
191 if (top - middle > middle - bottom)
194 int len = middle - bottom;
200 tem = argv[bottom + i];
201 argv[bottom + i] = argv[top - (middle - bottom) + i];
202 argv[top - (middle - bottom) + i] = tem;
203 SWAP_FLAGS (bottom + i, top - (middle - bottom)
154 int bottom = d->__first_nonopt; local
[all...]
/external/grub/lib/
H A Dgetopt.c314 int bottom = first_nonopt;
346 while (top > middle && middle > bottom)
348 if (top - middle > middle - bottom)
351 int len = middle - bottom;
357 tem = argv[bottom + i];
358 argv[bottom + i] = argv[top - (middle - bottom) + i];
359 argv[top - (middle - bottom) + i] = tem;
360 SWAP_FLAGS (bottom + i, top - (middle - bottom)
311 int bottom = first_nonopt; local
[all...]
/external/quake/quake/src/QW/server/
H A Dsv_move.c30 Returns false if any part of the bottom of the entity is off an edge that
42 float mid, bottom; local
70 // the midpoint must be within 16 of the bottom
78 mid = bottom = trace.endpos[2];
89 if (trace.fraction != 1.0 && trace.endpos[2] > bottom)
90 bottom = trace.endpos[2];

Completed in 477 milliseconds

12345