Searched defs:top (Results 1 - 25 of 349) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/regress/
H A Dregress-2249423.js31 function top() { function
40 top();
/external/dropbear/libtommath/
H A Dbn_mp_lshd.c36 register mp_digit *top, *bottom; local
41 /* top */
42 top = a->dp + a->used - 1;
49 * the bottom to the top. see bn_mp_rshd.c for more info.
52 *top-- = *bottom--;
56 top = a->dp;
58 *top++ = 0;
H A Dbn_mp_rshd.c35 register mp_digit *bottom, *top; local
42 /* top [offset into digits] */
43 top = a->dp + b;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
59 /* zero the top digits */
/external/v8/src/
H A Dstore-buffer-inl.h44 Address* top = reinterpret_cast<Address*>(heap_->store_buffer_top()); local
45 *top++ = addr;
46 heap_->public_set_store_buffer_top(top);
47 if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) {
48 ASSERT(top == limit_);
51 ASSERT(top < limit_);
62 Address* top = old_top_; local
63 *top++ = addr;
64 old_top_ = top;
67 if (top >
[all...]
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_arrow_model.h59 SkColor top; member in struct:InfoBarArrowModel::InfoBarColors
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_container_view.cc31 int top = GetVerticalOverlap(NULL); local
35 top -= child->arrow_height();
37 child->SetBounds(0, top, width(), child_height);
38 top += child_height;
H A Dinfobar_button_border.h34 SkBitmap* top; member in struct:InfoBarButtonBorder::MBBImageSet
/external/linux-tools-perf/util/
H A Dpstack.c19 unsigned short top; member in struct:pstack
40 return self->top == 0;
45 unsigned short i = self->top, last_index = self->top - 1;
53 --self->top;
62 if (self->top == self->max_nr_entries) {
63 pr_err("%s: top=%d, overflow!\n", __func__, self->top);
66 self->entries[self->top++] = key;
73 if (self->top
[all...]
/external/llvm/test/MC/AsmParser/
H A Dmacro-args.s23 .macro top
38 top foo label
39 top bar, 42 label
/external/skia/src/gpu/
H A DGrTexture.cpp16 bool GrTexture::readPixels(int left, int top, int width, int height, argument
25 left, top,
30 void GrTexture::writePixels(int left, int top, int width, int height, argument
39 left, top,
H A DGrRenderTarget.cpp16 bool GrRenderTarget::readPixels(int left, int top, int width, int height, argument
25 left, top,
30 void GrRenderTarget::writePixels(int left, int top, int width, int height, argument
39 left, top,
/external/skia/src/svg/
H A DSkSVGCircle.cpp30 SkScalar left, top, right, bottom; local
32 top = cy - r;
38 sprintf(scratch, "%g", SkScalarToDouble(top));
39 parser._addAttribute("top", scratch);
H A DSkSVGEllipse.cpp32 SkScalar left, top, right, bottom; local
34 top = cy - ry;
40 sprintf(scratch, "%g", SkScalarToDouble(top));
41 parser._addAttribute("top", scratch);
/external/webkit/Source/WebCore/dom/
H A DClientRect.h44 float top() const { return m_rect.y(); } function in class:WebCore::ClientRect
/external/chromium/chrome/browser/prefs/
H A Dpref_service_uitest.cc120 int top = 0; local
121 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".top",
122 &top));
123 EXPECT_EQ(top, bounds.y());
182 int top = 0; local
183 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".top",
184 &top));
185 EXPECT_EQ(top, bounds.y());
/external/iproute2/netem/
H A Dstats.c24 double mu=0.0, sigma=0.0, sumsquare=0.0, sum=0.0, top=0.0, rho=0.0; local
47 top += ((double)x[i]-mu)*((double)x[i-1]-mu);
51 rho = top/sigma2;
57 /*printf("correlation rho = %10.6f\n", top/((double)(n-1)*sigma*sigma));*/
/external/skia/src/core/
H A DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
23 if (top < fTop) fTop = top;
114 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, argument
116 if (left < right && top < bottom && !this->isEmpty() && // check for empties
117 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
120 if (fTop < top) fTop = top;
148 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/webkit/Source/WebCore/css/
H A DRect.h31 CSSPrimitiveValue* top() const { return m_top.get(); } function in class:WebCore::RectBase
36 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; } argument
/external/webkit/Source/WebCore/html/parser/
H A DHTMLElementStack.h80 Element* top() const function in class:WebCore::HTMLElementStack
/external/webkit/Source/WebCore/platform/
H A DLengthBox.h67 Length top() const { return m_top; } function in struct:WebCore::LengthBox
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DDrawErrorUnderline.h65 double top = y; local
68 cairo_move_to(cr, x - halfSquare, top + halfSquare); // A
78 cairo_line_to(cr, right + halfSquare, top + halfSquare); // D
80 cairo_line_to(cr, right, top + square); // C
93 cairo_line_to(cr, right, top); // E
98 cairo_line_to(cr, left, top); // H
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DPlanarYUVLuminanceSource.java39 private final int top; field in class:PlanarYUVLuminanceSource
41 public PlanarYUVLuminanceSource(byte[] yuvData, int dataWidth, int dataHeight, int left, int top, argument
45 if (left + width > dataWidth || top + height > dataHeight) {
53 this.top = top;
68 int offset = (y + top) * dataWidth + left;
86 int inputOffset = top * dataWidth + left;
114 int inputOffset = top * dataWidth + left;
132 for (int y = 0, rowStart = top * dataWidth + left; y < height; y++, rowStart += dataWidth) {
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DXUnresolvedVariable.java145 * @param top A valid value that specifies where in the variable
148 public void setVarStackPos(int top) argument
150 m_varStackPos = top;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMTreeWalker.java110 int top = pos; // Remember the root of this subtree
120 if (top == pos)
129 if ((DTM.NULL == pos) || (top == pos))
131 // %REVIEW% This condition isn't tested in traverse(pos,top)
153 * @param top Node in the tree where to end traversal.
154 * If top==DTM.NULL, run through end of document.
158 public void traverse(int pos, int top) throws org.xml.sax.SAXException argument
161 // if(top==DTM.NULL) top=0
173 if ((DTM.NULL != top)
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java141 Node top = pos;
153 if (top.equals(pos))
162 if ((null == pos) || (top.equals(pos)))
188 * @param top Node in the tree where to end traversal
192 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException argument
207 if ((null != top) && top.equals(pos))
216 if ((null == pos) || ((null != top) && top.equals(pos)))

Completed in 476 milliseconds

1234567891011>>