Searched defs:top (Results 151 - 175 of 743) sorted by relevance

1234567891011>>

/external/freetype/src/cff/
H A Dcffparse.h45 FT_Byte** top; member in struct:CFF_ParserRec_
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONWriter.java84 * The stack top index. A value of 0 indicates that the stack is empty.
86 private int top; field in class:JSONWriter
100 this.top = 0;
210 stack[top - 1].putOnce(s, Boolean.TRUE);
254 if (this.top <= 0) {
257 char m = this.stack[this.top - 1] == null ? 'a' : 'k';
261 this.top -= 1;
262 this.mode = this.top == 0 ? 'd' : this.stack[this.top - 1] == null ? 'a' : 'k';
271 if (this.top >
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DFrame.java26 private int top; field in class:Frame
86 top = 0;
90 * Gets the index of the type sitting at the top of the stack.
95 * @return the position of the element at the top of the stack
98 return top - 1;
112 * Gets the top of the stack without altering it
114 * @return the top of the stack
117 if (top < 1)
120 return stack[top - 1];
129 if (top <
[all...]
/external/libhevc/common/arm/
H A Dihevc_intra_ref_substitution_a9q.c76 * UWORD8 pointer to the top-left
79 * UWORD8 pointer to the top
118 WORD32 bot_left, left, top, tp_right, tp_left; local
143 top = (nbr_flags & 0x00f00);
151 pu1_dst[(4 * nt)] = *pu1_top_left; // U top-left sample
152 pu1_dst[(4 * nt) + 1] = *(pu1_top_left + 1); // V top-left sample
175 if(0 != top)
178 // U-V interleaved Top-top right samples
185 // U-V interleaved Top-top right samples
194 top
415 WORD32 bot_left, left, top, tp_right, tp_left; local
[all...]
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dtrace.c102 unsigned long top = 0UL | bundle.bitmap.word1.top_slot1; local
115 insn = 0UL | bot | (top << 18UL);
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_vertex_buffers.h80 } top, bottom; member in struct:vl_motionvector
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DAnalyzer.java74 private int top; field in class:Analyzer
112 top = 0;
172 while (top > 0) {
173 int insn = queue[--top];
475 queue[top++] = insn;
504 queue[top++] = insn;
H A DFrame.java66 private int top; field in class:Frame
97 top = src.top;
147 return top;
166 top = 0;
176 if (top == 0) {
179 return values[--top + locals];
189 if (top + locals >= values.length) {
192 values[top++ + locals] = value;
617 if (top !
[all...]
/external/openfst/src/include/fst/
H A Dheap.h48 // \param whether heap top should be max or min element w.r.t. Compare
96 T top = A_[0]; local
101 return top;
/external/openssl/crypto/bn/
H A Dbn_rand.c119 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
142 /* make a random number and set the top and bottom bits */
178 if (top != -1)
180 if (top)
212 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
214 return bnrand(0, rnd, bits, top, bottom);
217 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
219 return bnrand(1, rnd, bits, top, bottom);
223 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
225 return bnrand(2, rnd, bits, top, botto
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftcache.h869 /* top :: The vertical distance from the pen position (on the */
870 /* baseline) to the upper bitmap border (a.k.a. `top */
892 FT_Char top; member in struct:FTC_SBitRec_
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_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftcache.h869 /* top :: The vertical distance from the pen position (on the */
870 /* baseline) to the upper bitmap border (a.k.a. `top */
892 FT_Char top; member in struct:FTC_SBitRec_
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_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffparse.h45 FT_Byte** top; member in struct:CFF_ParserRec_
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc84 bounds.Set(bounds.left,bounds.top,bounds.right+width_padding,bounds.bottom+height_padding);
191 bounds.top = 0; bounds.left = 0;
278 int left,top; local
279 SDL_Win->GetXYOffset(left,top);
280 bview->MoveTo(left+dst->x,top+dst->y);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowRect.java14 public void __constructor__(int left, int top, int right, int bottom) { argument
16 realRect.top = top;
23 realRect.top = otherRect.top;
30 set(rect.left, rect.top, rect.right, rect.bottom);
34 public void set(int left, int top, int right, int bottom) { argument
36 realRect.top = top;
48 return realRect.bottom - realRect.top;
104 intersect(int left, int top, int right, int bottom) argument
[all...]
/external/skia/experimental/Intersection/
H A DLineUtilities.cpp91 void x_at(const _Point& p1, const _Point& p2, double top, double bottom, argument
106 if (topFlags && ((top <= p1.y && top >= p2.y)
107 || (top >= p1.y && top <= p2.y))) {
108 double x = p1.x + (top - p1.y) * slope;
/external/skia/src/core/
H A DSkRasterClip.h56 bool quickContains(int left, int top, int right, int bottom) const { argument
57 return quickContains(SkIRect::MakeLTRB(left, top, right, bottom));
/external/skia/src/gpu/
H A DSkGrPixelRef.cpp167 int left, top, width, height; local
171 top = subset->fTop;
176 top = 0;
185 return fSurface->readPixels(left, top, width, height,
/external/skia/tests/
H A DPathOpsCubicLineIntersectionTest.cpp97 double top = line[0].fY; local
99 flipped = top > bottom;
101 SkTSwap<double>(top, bottom);
103 result = intersections.vertical(cubic, top, bottom, line[0].fX, flipped);
H A DPathOpsQuadLineIntersectionTest.cpp36 double top = line[0].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.cpp19 double top = line[0].fY; local
21 flipped = top > bottom;
23 SkTSwap<double>(top, bottom);
25 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped);
/external/skia/tools/bug_chomper/res/third_party/
H A Djquery.tablednd.js35 * This is the number of pixels to scroll if the user moves the mouse cursor to the top or bottom of the
150 var top = 0; variable
164 top += e.offsetTop;
169 top += e.offsetTop;
171 return {x:left, y:top};
/external/smali/util/src/main/java/org/jf/util/
H A DClassFileNameHandler.java48 private PackageNameEntry top; field in class:ClassFileNameHandler
53 this.top = new PackageNameEntry(path);
118 return top.addUniqueChild(packageElements, 0);

Completed in 612 milliseconds

1234567891011>>