Home
last modified time | relevance | path

Searched full:top (Results 1 – 25 of 6862) sorted by relevance

12345678910>>...275

/external/fio/
Dcconv.c48 struct thread_options_pack *top) in convert_thread_options_to_cpu() argument
53 o->set_options[i] = le64_to_cpu(top->set_options[i]); in convert_thread_options_to_cpu()
55 string_to_cpu(&o->description, top->description); in convert_thread_options_to_cpu()
56 string_to_cpu(&o->name, top->name); in convert_thread_options_to_cpu()
57 string_to_cpu(&o->directory, top->directory); in convert_thread_options_to_cpu()
58 string_to_cpu(&o->filename, top->filename); in convert_thread_options_to_cpu()
59 string_to_cpu(&o->filename_format, top->filename_format); in convert_thread_options_to_cpu()
60 string_to_cpu(&o->opendir, top->opendir); in convert_thread_options_to_cpu()
61 string_to_cpu(&o->ioengine, top->ioengine); in convert_thread_options_to_cpu()
62 string_to_cpu(&o->mmapfile, top->mmapfile); in convert_thread_options_to_cpu()
[all …]
/external/zlib/src/win32/
DMakefile.msc14 TOP = .
50 $(SHAREDLIB): $(TOP)/win32/zlib.def $(OBJS) $(OBJA) zlib1.res
51 $(LD) $(LDFLAGS) -def:$(TOP)/win32/zlib.def -dll -implib:$(IMPLIB) \
76 {$(TOP)}.c.obj:
79 {$(TOP)/test}.c.obj:
80 $(CC) -c -I$(TOP) $(WFLAGS) $(CFLAGS) $<
82 {$(TOP)/contrib/masmx64}.c.obj:
85 {$(TOP)/contrib/masmx64}.asm.obj:
88 {$(TOP)/contrib/masmx86}.asm.obj:
91 adler32.obj: $(TOP)/adler32.c $(TOP)/zlib.h $(TOP)/zconf.h
[all …]
/external/libpcap/
Dpcap-sita.html11 <TD ALIGN=LEFT VALIGN=TOP>
15 <TD ALIGN=RIGHT VALIGN=TOP>
32 <TH VALIGN=TOP>SMP</TH>
33 <TD VALIGN=TOP>The Supervisory Management Processor where Wireshark (or equivalent)
37 <TH VALIGN=TOP>IOP</TH>
38 <TD VALIGN=TOP>I/O Processors where the monitored ports exist in conjunction
56 <TR><TH VALIGN=TOP NOWRAP>wireshark</TH>
57 <TD VALIGN=TOP>pcap_dispatch(all packets in one buffer of capture only)</TD>
58 <TD VALIGN=TOP>pcap_breakloop()</TD>
60 <TR><TH VALIGN=TOP NOWRAP>tshark</TH>
[all …]
/external/testng/doc/
Dbook-toc.html12 <div style="position:absolute;top:1148;left:738">v</div>
16 <div style="position:absolute;top:355;left:162"><b>Contents</b></div>
19 <div style="position:absolute;top:512;left:270">Foreword</div>
20 <div style="position:absolute;top:512;left:730">xiii</div>
21 <div style="position:absolute;top:530;left:270">Preface</div>
22 <div style="position:absolute;top:530;left:734">xv</div>
23 <div style="position:absolute;top:548;left:270">Acknowledgments</div>
24 <div style="position:absolute;top:548;left:730">xxi</div>
25 <div style="position:absolute;top:566;left:270">About the Authors</div>
27 <div style="position:absolute;top:566;left:723">xxiii</div>
[all …]
/external/mesa3d/src/gallium/targets/egl-static/
DMakefile14 TOP = ../../../.. macro
15 include $(TOP)/configs/current
20 -I$(TOP)/include \
21 -I$(TOP)/src/gallium/auxiliary \
22 -I$(TOP)/src/gallium/drivers \
23 -I$(TOP)/src/gallium/include \
24 -I$(TOP)/src/gallium/winsys
26 $(TOP)/src/gallium/drivers/identity/libidentity.a \
27 $(TOP)/src/gallium/drivers/trace/libtrace.a \
28 $(TOP)/src/gallium/drivers/rbug/librbug.a \
[all …]
/external/pdfium/core/fxcrt/
Dfx_coordinates.h204 CFX_RTemplate() : left(0), top(0), width(0), height(0) {} in CFX_RTemplate()
209 : left(dst_left), top(dst_top), width(dst_width), height(dst_height) {} in CFX_RTemplate()
212 top(dst_top), in CFX_RTemplate()
216 : left(p.x), top(p.y), width(dst_width), height(dst_height) {} in CFX_RTemplate()
218 : left(p1.x), top(p1.y), width(s2.width), height(s2.height) {} in CFX_RTemplate()
221 top(p1.y), in CFX_RTemplate()
227 : left(p.x), top(p.y), width(v.x), height(v.y) { in CFX_RTemplate()
234 top(other.top), in CFX_RTemplate()
241 static_cast<OtherType>(left), static_cast<OtherType>(top), in As()
247 top = 0; in Reset()
[all …]
Dfx_basic_coords.cpp35 if (top > bottom) { in Normalize()
36 int temp = top; in Normalize()
37 top = bottom; in Normalize()
46 top = top > src_n.top ? top : src_n.top; in Intersect()
49 if (left > right || top > bottom) { in Intersect()
50 left = top = right = bottom = 0; in Intersect()
80 bottom = (FX_FLOAT)(rect.top); in CFX_FloatRect()
81 top = (FX_FLOAT)(rect.bottom); in CFX_FloatRect()
90 if (bottom > top) { in Normalize()
91 temp = top; in Normalize()
[all …]
/external/webrtc/webrtc/modules/desktop_capture/
Ddesktop_region.cc23 DesktopRegion::Row::Row(int32_t top, int32_t bottom) in Row() argument
24 : top(top), bottom(bottom) { in Row()
65 it1->second->top != it2->second->top || in Equals()
92 // Top of the part of the |rect| that hasn't been inserted yet. Increased as in AddRect()
94 int top = rect.top(); in AddRect() local
98 Rows::iterator row = rows_.upper_bound(top); in AddRect()
99 while (top < rect.bottom()) { in AddRect()
100 if (row == rows_.end() || top < row->second->top) { in AddRect()
101 // If |top| is above the top of the current |row| then add a new row above in AddRect()
104 if (row != rows_.end() && row->second->top < bottom) in AddRect()
[all …]
/external/mesa3d/src/gallium/targets/libgl-xlib/
DMakefile7 TOP = ../../../.. macro
8 include $(TOP)/configs/current
17 -I$(TOP)/include \
18 -I$(TOP)/src/mapi \
19 -I$(TOP)/src/mesa \
20 -I$(TOP)/src/mesa/main \
21 -I$(TOP)/src/gallium/include \
22 -I$(TOP)/src/gallium/drivers \
23 -I$(TOP)/src/gallium/state_trackers/glx/xlib \
24 -I$(TOP)/src/gallium/auxiliary \
[all …]
/external/mesa3d/src/gallium/targets/
DMakefile.dri10 $(TOP)/src/mesa/libmesagallium.a \
14 $(TOP)/src/mesa/drivers/dri/common/utils.c \
15 $(TOP)/src/mesa/drivers/dri/common/dri_util.c \
16 $(TOP)/src/mesa/drivers/dri/common/xmlconfig.c
19 $(TOP)/src/mesa/drivers/common/driverfuncs.c
22 $(TOP)/src/mesa/drivers/dri/common/dri_bufmgr.c \
23 $(TOP)/src/mesa/drivers/dri/common/dri_drmpool.c
35 -I$(TOP)/src/mesa/drivers/dri/common \
37 -I$(TOP)/include \
38 -I$(TOP)/include/GL/internal \
[all …]
/external/syslinux/com32/lua/src/
Dlapi.c59 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr()
60 if (o >= L->top) return NONVALIDVALUE; in index2addr()
64 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr()
65 return L->top + idx; in index2addr()
96 if (L->stack_last - L->top > size) /* stack large enough? */ in lua_checkstack()
99 int inuse = cast_int(L->top - L->stack) + EXTRA_STACK; in lua_checkstack()
105 if (res && ci->top < L->top + size) in lua_checkstack()
106 ci->top = L->top + size; /* adjust frame top */ in lua_checkstack()
118 api_check(from, to->ci->top - to->top >= n, "not enough elements to move"); in lua_xmove()
119 from->top -= n; in lua_xmove()
[all …]
/external/skia/third_party/lua/src/
Dlapi.c59 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr()
60 if (o >= L->top) return NONVALIDVALUE; in index2addr()
64 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr()
65 return L->top + idx; in index2addr()
96 if (L->stack_last - L->top > size) /* stack large enough? */ in lua_checkstack()
99 int inuse = cast_int(L->top - L->stack) + EXTRA_STACK; in lua_checkstack()
105 if (res && ci->top < L->top + size) in lua_checkstack()
106 ci->top = L->top + size; /* adjust frame top */ in lua_checkstack()
118 api_check(from, to->ci->top - to->top >= n, "not enough elements to move"); in lua_xmove()
119 from->top -= n; in lua_xmove()
[all …]
/external/webp/src/dsp/
Denc.c229 const uint8_t* top, int size) { in VerticalPred() argument
231 if (top != NULL) { in VerticalPred()
232 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size); in VerticalPred()
251 const uint8_t* top, int size) { in TrueMotion() argument
254 if (top != NULL) { in TrueMotion()
260 dst[x] = clip_table[top[x]]; in TrueMotion()
269 // is equivalent to VE prediction where you just copy the top samples. in TrueMotion()
270 // Note that if top samples are not available, the default value is in TrueMotion()
272 if (top != NULL) { in TrueMotion()
273 VerticalPred(dst, top, size); in TrueMotion()
[all …]
Denc_msa.c261 static WEBP_INLINE void VE4(uint8_t* dst, const uint8_t* top) { // vertical in VE4() argument
262 const uint64_t val_m = LD(top - 1); in VE4()
273 static WEBP_INLINE void HE4(uint8_t* dst, const uint8_t* top) { // horizontal in HE4() argument
274 const int X = top[-1]; in HE4()
275 const int I = top[-2]; in HE4()
276 const int J = top[-3]; in HE4()
277 const int K = top[-4]; in HE4()
278 const int L = top[-5]; in HE4()
285 static WEBP_INLINE void DC4(uint8_t* dst, const uint8_t* top) { in DC4() argument
288 for (i = 0; i < 4; ++i) dc += top[i] + top[-5 + i]; in DC4()
[all …]
/external/mesa3d/src/gallium/targets/pipe-loader/
DMakefile5 TOP = ../../../.. macro
6 include $(TOP)/configs/current
14 -I$(TOP)/include \
15 -I$(TOP)/src/gallium/auxiliary \
16 -I$(TOP)/src/gallium/drivers \
17 -I$(TOP)/src/gallium/include \
18 -I$(TOP)/src/gallium/winsys
21 $(TOP)/src/gallium/drivers/identity/libidentity.a \
22 $(TOP)/src/gallium/drivers/galahad/libgalahad.a \
23 $(TOP)/src/gallium/drivers/trace/libtrace.a \
[all …]
/external/doclava/res/assets/templates/assets/
Dstyle.css17 margin-top: 3px;
22 margin-top: 0;
27 vertical-align: top;
29 padding-top: 2px;
34 border-top: 1px solid #d2d7d0;
49 vertical-align: top;
50 padding-top: 3px;
54 border-top: 1px solid #d2d7d0;
60 vertical-align: top;
61 padding-top: 3px;
[all …]
/external/pdfium/third_party/freetype/src/psaux/
Dt1decode.c318 /* Now load `achar' on top of */ in t1operator_seac()
393 decoder->top = decoder->stack; in t1_decoder_parse_charstrings()
432 FT_Long* top = decoder->top; in t1_decoder_parse_charstrings() local
443 FT_TRACE5(( " (%d)", decoder->top - decoder->stack )); in t1_decoder_parse_charstrings()
662 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in t1_decoder_parse_charstrings()
675 *top++ = value; in t1_decoder_parse_charstrings()
676 decoder->top = top; in t1_decoder_parse_charstrings()
689 if ( top - decoder->stack < 2 ) in t1_decoder_parse_charstrings()
692 top -= 2; in t1_decoder_parse_charstrings()
694 subr_no = Fix2Int( top[1] ); in t1_decoder_parse_charstrings()
[all …]
/external/freetype/src/psaux/
Dt1decode.c318 /* Now load `achar' on top of */ in t1operator_seac()
393 decoder->top = decoder->stack; in t1_decoder_parse_charstrings()
432 FT_Long* top = decoder->top; in t1_decoder_parse_charstrings() local
443 FT_TRACE5(( " (%d)", decoder->top - decoder->stack )); in t1_decoder_parse_charstrings()
662 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in t1_decoder_parse_charstrings()
675 *top++ = value; in t1_decoder_parse_charstrings()
676 decoder->top = top; in t1_decoder_parse_charstrings()
689 if ( top - decoder->stack < 2 ) in t1_decoder_parse_charstrings()
692 top -= 2; in t1_decoder_parse_charstrings()
694 subr_no = Fix2Int( top[1] ); in t1_decoder_parse_charstrings()
[all …]
/external/libnl/doc/stylesheets/
Dvolnitsky.css58 h2 { padding-top: 0.5em; }
71 margin-top: 0.5em;
76 margin-top: 0;
92 border-top: 2px solid silver;
93 padding-top: 0.5em;
94 margin-top: 4.0em;
108 margin-top: 1.5em;
115 margin-top: 1.5em;
120 margin-top: 2.5em;
133 margin-top: 1.0em;
[all …]
Dxhtml11.css37 margin-top: 1.2em;
46 padding-top: 0.5em;
65 margin-top: 0.5em;
70 margin-top: 0;
93 border-top: 2px solid silver;
94 padding-top: 0.5em;
95 margin-top: 4.0em;
107 margin-top: 1.5em;
113 margin-top: 1.5em;
117 margin-top: 2.5em;
[all …]
Dasciidoc.css50 margin-top: 1.2em;
59 padding-top: 0.5em;
80 margin-top: 0.5em;
85 margin-top: 0;
107 border-top: 2px solid silver;
108 padding-top: 0.5em;
109 margin-top: 4.0em;
121 margin-top: 1.5em;
127 margin-top: 1.0em;
131 margin-top: 2.0em;
[all …]
/external/libvncserver/webclients/novnc/include/
Dbase.css92 padding-top: 4px;
127 /*border-top-left-radius: 800px 600px;*/
153 margin-top:73px;
160 margin-top:73px;
164 #noVNC_controls.top:after {
172 margin-top:73px;
191 margin-top:60px;
208 margin-top:73px;
212 #noVNC_xvp.top:after {
218 margin-top:73px;
[all …]
Dblack.css15 …background: -moz-linear-gradient(top, #4c4c4c 0%, #2c2c2c 50%, #000000 51%, #131313 100%); /* FF3.…
16 …background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(50%…
17 …background: -webkit-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Chro…
18 …background: -o-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Opera11.1…
19 background: -ms-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* IE10+ */
20 background: linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* W3C */
24 …background: -moz-linear-gradient(top, #f04040 0%, #2c2c2c 50%, #000000 51%, #131313 100%); /* FF3.…
25 …background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f04040), color-stop(50%…
26 …background: -webkit-linear-gradient(top, #f04040 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Chro…
27 …background: -o-linear-gradient(top, #f04040 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Opera11.1…
[all …]
/external/mesa3d/docs/
Dsubset-A.html263 style="font-style: italic;">top,</span> GLdouble <span
270 style="font-style: italic;">top,</span> GLdouble <span
295 command replaces the current matrix with a copy of the top matrix off
326 style="font-style: italic;">top</span> parameters are the X and Y
337 style="font-style: italic;">top</span> parameters specify the X and
701 <td style="vertical-align: top;">Parameter (<span
704 <td style="vertical-align: top;">Value (<span
707 <td style="vertical-align: top;">Default<br>
711 <td style="vertical-align: top;">GL_UNPACK_ROW_LENGTH<br>
713 <td style="vertical-align: top;">Width of the image in memory, in
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowRect.java14 public void __constructor__(int left, int top, int right, int bottom) { in __constructor__() argument
16 realRect.top = top; in __constructor__()
23 realRect.top = otherRect.top; in __constructor__()
30 set(rect.left, rect.top, rect.right, rect.bottom); in set()
34 public void set(int left, int top, int right, int bottom) { in set() argument
36 realRect.top = top; in set()
48 return realRect.bottom - realRect.top; in height()
60 return realRect.left == r.left && realRect.top == r.top && realRect.right == r.right in equals()
70 sb.append(realRect.top); in toString()
82 && y >= realRect.top && y <= realRect.bottom; in contains()
[all …]

12345678910>>...275