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

123456789

/external/v8/test/mjsunit/regress/
H A Dregress-2249423.js31 function top() { function
40 top();
/external/clearsilver/ruby/ext/hdf/
H A Dneo_ruby.h8 VALUE top; member in struct:s_hdfh
/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/webkit/JavaScriptCore/pcre/
H A Dpcre_ucp_searchfuncs.cpp66 int top = sizeof(ucp_table) / sizeof(cnode); local
75 if (top <= bot)
77 mid = (bot + top) >> 1;
81 top = mid;
/external/skia/src/svg/
H A DSkSVGCircle.cpp38 SkScalar left, top, right, bottom; local
40 top = cy - r;
46 sprintf(scratch, "%g", top);
47 parser._addAttribute("top", scratch);
H A DSkSVGEllipse.cpp40 SkScalar left, top, right, bottom; local
42 top = cy - ry;
48 sprintf(scratch, "%g", top);
49 parser._addAttribute("top", scratch);
/external/webkit/WebCore/dom/
H A DClientRect.h43 float top() const { return m_rect.y(); } function in class:WebCore::ClientRect
/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.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);
31 if (top < fTop) fTop = top;
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)
113 if (fTop < top) fTop = top;
127 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
H A DSkBlitter_Sprite.cpp31 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, argument
36 fTop = top;
70 int left, int top,
76 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap,
98 blitter->setup(device, left, top, paint);
67 ChooseSprite( const SkBitmap& device, const SkPaint& paint, const SkBitmap& source, int left, int top, void* storage, size_t storageSize) argument
/external/webkit/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/WebCore/platform/
H A DLengthBox.h59 Length top() const { return m_top; } function in struct:WebCore::LengthBox
H A DWidget.cpp58 const Widget* top = this; local
59 while (top->parent())
60 top = top->parent();
61 if (top->isFrameView())
62 return const_cast<ScrollView*>(static_cast<const ScrollView*>(top));
/external/bison/src/
H A Drelation.c57 static relation_node top; variable
67 VERTICES[++top] = i;
68 INDEX[i] = height = top;
85 j = VERTICES[top--];
104 top = 0;
/external/bluetooth/glib/tests/
H A Dgio-ls.c62 GFile *top; local
73 top = g_file_new_for_path (path);
74 if (top)
78 GFileEnumerator *enumerator = g_file_enumerate_children (top, attrs,
114 g_object_unref (top);
/external/clearsilver/util/
H A Dneo_hdf.h32 * your top level HDF node.
55 struct _hdf *top; member in struct:_hdf
78 * pointer to the top node in the data set.
92 * on the top level node.
261 * Function: hdf_obj_top - Return the pointer to the top dataset node
263 * pointer to the top of the dataset, the node which was
266 * nodes are tied garbage colletion wise to the top node of
270 * Returns: The pointer to the top node
290 * Returns: The name of the node. If this is the top node, the name is
411 * dest -> the destination node name (from the top o
[all...]
/external/grub/stage2/
H A Dcommon.c108 unsigned long long top; local
112 top = bottom;
122 && desc->BaseAddr <= top
123 && desc->BaseAddr + desc->Length > top)
125 top = desc->BaseAddr + desc->Length;
133 if (top > 0xFFFFFFFF)
134 top = 0xFFFFFFFF;
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 */
177 if (top != -1)
179 if (top)
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, botto
[all...]
/external/skia/include/core/
H A DSkTDStack.h70 const T& top() const function in class:SkTDStack
75 T& top() function in class:SkTDStack
/external/stlport/stlport/stl/
H A D_stack.h84 reference top() { return c.back(); } function in class:stack
85 const_reference top() const { return c.back(); } function in class:stack
/external/webkit/WebCore/rendering/style/
H A DBorderData.h38 BorderValue top; member in class:WebCore::BorderData
51 return left.nonZero(!haveImage) || right.nonZero(!haveImage) || top.nonZero(!haveImage) || bottom.nonZero(!haveImage);
83 if (!image.hasImage() && (top.style() == BNONE || top.style() == BHIDDEN))
85 return top.width;
97 return left == o.left && right == o.right && top == o.top && bottom == o.bottom && image == o.image &&
/external/bluetooth/glib/glib/
H A Dgqsort.c75 #define PUSH(low, high) ((void) ((top->lo = (low)), (top->hi = (high)), ++top))
76 #define POP(low, high) ((void) (--top, (low = top->lo), (high = top->hi)))
77 #define STACK_NOT_EMPTY (stack < top)
140 stack_node *top = stack; local
/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;
145 prefresh (show_pad,show_pad_info.line,show_pad_info.col,top,left,show_pad_info.display_lines-1,show_pad_info.display_cols-1);
147 prefresh (show_pad,show_pad_info.line,show_pad_info.col,top,left,top+show_pad_info.display_lines-1,left+show_pad_info.display_cols-1);
/external/freetype/include/freetype/
H A Dftglyph.h26 /* or text layout engine on top of FreeType. However, they are pretty */
146 /* top :: The top-side bearing, i.e., the vertical distance from */
147 /* the current pen position to the top border of the glyph */
164 FT_Int top; member in struct:FT_BitmapGlyphRec_

Completed in 626 milliseconds

123456789