HomeSort by relevance Sort by last modified time
    Searched refs:top (Results 101 - 125 of 984) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/openssl/crypto/bn/
bn_mont.c 135 int num = mont->N.top;
137 if (num>1 && a->top==num && b->top==num)
143 r->top = num;
188 nl=n->top;
189 if ((al == 0) || (nl == 0)) { ret->top=0; return(1); }
199 /* clear the top words of T */
201 for (i=r->top; i<max; i++) /* memset? XXX */
204 memset(&(r->d[r->top]),0,(max-r->top)*sizeof(BN_ULONG));
    [all...]
bn_exp.c 209 * the top bit being set. It was caused by an error in BN_div
212 /* if ((m->d[m->top-1]&BN_TBIT) && BN_is_odd(m)) */
217 if (a->top == 1 && !a->neg && (BN_get_flags(p, BN_FLG_CONSTTIME) == 0))
309 wstart=bits-1; /* The top bit of the window */
455 wstart=bits-1; /* The top bit of the window */
525 static int MOD_EXP_CTIME_COPY_TO_PREBUF(BIGNUM *b, int top, unsigned char *buf, int idx, int width)
529 if (bn_wexpand(b, top) == NULL)
531 while (b->top < top)
533 b->d[b->top++] = 0
576 int top; local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLU.java 90 * @param top
93 float bottom, float top) {
94 gl.glOrthof(left, right, bottom, top, -1.0f, 1.0f);
113 float top = zNear * (float) Math.tan(fovy * (Math.PI / 360.0)); local
114 float bottom = -top;
116 float right = top * aspect;
117 gl.glFrustumf(left, right, bottom, top, zNear, zFar);
  /packages/apps/Launcher2/src/com/android/launcher2/
BubbleTextView.java 80 protected boolean setFrame(int left, int top, int right, int bottom) {
81 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) {
84 return super.setFrame(left, top, right, bottom);
125 final int top = getExtendedPaddingTop(); local
128 top + layout.getLineTop(0) - mPaddingV,
130 top + layout.getLineBottom(0) + mPaddingV);
  /cts/tests/tests/graphics/src/android/graphics/cts/
RectFTest.java 93 assertEquals(10.0f, mRectF.top);
99 assertEquals(5.0f, mRectF.top);
115 assertEquals(2.0f, mRectF.top);
132 assertEquals(2.0f, mRectF.top);
149 assertEquals(2.0f, mRectF.top);
165 assertEquals(0.0f, mRectF.top);
172 assertEquals(0.0f, mRectF.top);
208 assertEquals(5.0f, mRectF.top);
215 assertEquals(0.0f, mRectF.top);
234 assertEquals(5.0f, mRectF.top);
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
AbstractIndicator.java 52 int height = getHeight() - p.top - p.bottom;
56 matrix.preTranslate(p.left + width / 2, p.top + height / 2);
63 p.top + (height - icon.getHeight()) / 2);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Focus3.java 34 mTopButton = (Button) findViewById(R.id.top);
  /external/skia/src/core/
SkEdge.cpp 63 int top = SkFDot6Round(y0); local
67 if (top == bot) {
71 if (NULL != clip && (top >= clip->fBottom || bot <= clip->fTop)) {
79 fFirstY = top;
103 int top = SkFDot6Round(y0); local
106 // SkASSERT(top >= fFirstY);
109 if (top == bot)
119 fFirstY = top;
127 int top = fFirstY; local
129 SkASSERT(top < clip.fBottom)
209 int top = SkFDot6Round(y0); local
355 int top = SkFDot6Round(y0); local
    [all...]
SkScan_Antihair.cpp 298 int top, bottom;
301 top = SkFixedFloor(fstart - SK_FixedHalf);
307 top = SkFixedFloor(fstart + (istop - istart - 1) * slope - SK_FixedHalf);
310 top -= 1;
313 if (top >= clip->fBottom || bottom <= clip->fTop)
315 if (clip->fTop <= top && clip->fBottom >= bottom)
321 if (y0 > y1) // we want to go top-to-bottom
455 SkFDot6 top = SkMin32(y0, y1);
461 SkFDot6Floor(top) - 1,
506 static void do_scanline(FDot8 L, int top, FDot8 R, U8CPU alpha, SkBlitter* blitter
    [all...]
  /external/skia/src/svg/
SkSVGRect.cpp 39 SVG_ADD_ATTRIBUTE_ALIAS(top, y);
  /external/webkit/WebCore/dom/
ClientRect.h 43 float top() const { return m_rect.y(); } function in class:WebCore::ClientRect
  /external/webkit/WebKit/android/plugins/
SkANP.cpp 33 SkFloatToScalar(src.top),
40 dst->set(src.left, src.top, src.right, src.bottom);
46 dst->top = src.fTop;
54 dst->top = SkScalarToFloat(src.fTop);
  /frameworks/base/core/java/android/text/style/
ReplacementSpan.java 30 int top, int y, int bottom, Paint paint);
  /frameworks/base/media/libstagefright/codecs/avc/dec/include/
pvavcdecoderinterface.h 41 virtual void GetVideoDimensions(int32 *width, int32 *height, int32 *top, int32 *left, int32 *bottom, int32 *right) = 0;
  /packages/apps/Camera/src/com/android/camera/
RotateImageView.java 81 int h = bounds.bottom - bounds.top;
100 int top = getPaddingTop(); local
104 int height = getHeight() - top - bottom;
107 canvas.translate(left + width / 2, top + height / 2);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binary_heap_/
find_fn_imps.hpp 44 top() const function in class:PB_DS_CLASS_C_DEC
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binomial_heap_base_/
find_fn_imps.hpp 44 top() const function in class:PB_DS_CLASS_C_DEC
  /system/core/libcutils/
mspace.c 91 char *top; member in struct:mspace_contig_state
110 if (newbrk > cs->top)
120 if (newbrk != cs->top) {
121 if (mprotect(newbrk, cs->top - newbrk, PROT_NONE) < 0)
174 cs->top = (char *)base + max_capacity;
177 assert(cs->brk <= cs->top);
180 if (cs->brk != cs->top) {
186 (mprotect(prot_brk, cs->top - prot_brk, PROT_NONE) < 0)) {
265 length = cs->top - (char *)cs;
  /external/chromium/third_party/icu/source/i18n/
timezone.cpp 162 static UBool getOlsonMeta(const UResourceBundle* top) {
167 ures_getByKey(top, kZONES, &res, &ec);
183 UResourceBundle *top = ures_openDirect(0, kZONEINFO, &ec); local
185 getOlsonMeta(top);
187 ures_close(top);
235 * @param top Top timezone resource
240 static UResourceBundle* getZoneByName(const UResourceBundle* top, const UnicodeString& id, UResourceBundle *oldbundle, UErrorCode& status) {
242 UResourceBundle *tmp = ures_getByKey(top, kNAMES, NULL, &status);
254 tmp = ures_getByKey(top, kZONES, tmp, &status); // get Zones object from to
296 UResourceBundle *top = ures_openDirect(0, kZONEINFO, &ec); local
331 UResourceBundle *top = ures_openDirect(0, kZONEINFO, &ec); local
494 UResourceBundle *top = openOlsonResource(id, res, ec); local
729 UResourceBundle *top = ures_openDirect(0, kZONEINFO, &ec); local
792 UResourceBundle *top = ures_openDirect(0, kZONEINFO, &ec); local
947 UResourceBundle *top = ures_openDirect(0, kZONEINFO, &ec); local
1016 UResourceBundle *top = openOlsonResource(id, res, ec); local
1046 UResourceBundle *top = openOlsonResource(id, res, ec); local
1087 UResourceBundle *top = ures_openDirect(0, kZONEINFO, &ec); local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
inspector.css 68 top: 0;
74 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151)));
82 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 233, 233)), to(rgb(207, 207, 207)));
93 border-top: 1px solid rgb(100, 100, 100);
103 border-top: 1px solid rgb(64%, 64%, 64%);
260 top: 56px;
269 top: 34px;
274 top: 0;
316 vertical-align: top;
325 vertical-align: top;
    [all...]
  /external/chromium/third_party/icu/
icu4c.css 32 margin-top: .5em;
34 padding-top: .5em;
47 border-top: 2px solid #22d;
51 margin-top: 12pt;
70 border-top: 1px solid gray;
73 margin-top: 12pt;
76 margin-top: 0.2em;
95 margin-top: 12pt;
114 margin-top: 12pt;
131 margin-top: 0px
    [all...]
  /external/icu4c/
icu4c.css 32 margin-top: .5em;
34 padding-top: .5em;
47 border-top: 2px solid #22d;
51 margin-top: 12pt;
70 border-top: 1px solid gray;
73 margin-top: 12pt;
76 margin-top: 0.2em;
95 margin-top: 12pt;
114 margin-top: 12pt;
131 margin-top: 0px
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Region_Delegate.java 182 int left, int top, int right, int bottom) {
189 regionDelegate.mArea.contains(left, top, right - left, bottom - top);
194 int left, int top, int right, int bottom) {
201 regionDelegate.mArea.intersects(left, top, right - left, bottom - top) == false;
297 int left, int top, int right, int bottom) {
303 dstRegion.mArea = new Area(new Rectangle2D.Float(left, top, right - left, bottom - top));
338 rect.left = rect.top = rect.right = rect.bottom = 0
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
LineGestureStrokeHelper.java 69 Assert.assertEquals(LINE_START_POINT, bounds.top);
83 Assert.assertEquals(LINE_START_POINT, bounds.top);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 42 public void glFrustumf(float left, float right, float bottom, float top,
44 Matrix.frustumM(mMatrix, mTop, left, right, bottom, top, near, far);
47 public void glFrustumx(int left, int right, int bottom, int top, int near,
50 fixedToFloat(bottom), fixedToFloat(top),
102 public void glOrthof(float left, float right, float bottom, float top,
104 Matrix.orthoM(mMatrix, mTop, left, right, bottom, top, near, far);
107 public void glOrthox(int left, int right, int bottom, int top, int near,
110 fixedToFloat(bottom), fixedToFloat(top),

Completed in 1413 milliseconds

1 2 3 45 6 7 8 91011>>