/external/fio/ |
D | cconv.c | 48 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/ |
D | Makefile.msc | 14 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/ |
D | pcap-sita.html | 11 <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/ |
D | book-toc.html | 12 <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/pdfium/core/include/fxcrt/ |
D | fx_coordinates.h | 194 void Set(baseType left, baseType top, baseType width, baseType height) { in Set() argument 195 FXT_RECT::left = left, FXT_RECT::top = top, FXT_RECT::width = width, in Set() 198 void Set(baseType left, baseType top, const FXT_SIZE& size) { in Set() argument 199 FXT_RECT::left = left, FXT_RECT::top = top, FXT_RECT::Size(size); in Set() 213 FXT_RECT::left = FXT_RECT::top = FXT_RECT::width = FXT_RECT::height = 0; in Reset() 216 left += p.x, top += p.y; 220 left -= p.x, top -= p.y; 224 baseType bottom() const { return top + height; } in bottom() 231 top += height; in Normalize() 237 top += dy; in Offset() [all …]
|
/external/opencv3/3rdparty/libwebp/dsp/ |
D | enc.c | 237 const uint8_t* top, int size) { in VerticalPred() argument 239 if (top) { in VerticalPred() 240 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size); in VerticalPred() 259 const uint8_t* top, int size) { in TrueMotion() argument 262 if (top) { in TrueMotion() 268 dst[x] = clip_table[top[x]]; in TrueMotion() 277 // is equivalent to VE prediction where you just copy the top samples. in TrueMotion() 278 // Note that if top samples are not available, the default value is in TrueMotion() 280 if (top) { in TrueMotion() 281 VerticalPred(dst, top, size); in TrueMotion() [all …]
|
/external/mesa3d/src/gallium/targets/egl-static/ |
D | Makefile | 14 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/webrtc/webrtc/modules/desktop_capture/ |
D | desktop_region.cc | 23 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/webp/src/dsp/ |
D | enc.c | 229 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 …]
|
/external/pdfium/core/src/fxcrt/ |
D | fx_basic_coords.cpp | 18 if (top > bottom) { in Normalize() 19 int temp = top; in Normalize() 20 top = bottom; in Normalize() 29 top = top > src_n.top ? top : src_n.top; in Intersect() 32 if (left > right || top > bottom) { in Intersect() 33 left = top = right = bottom = 0; in Intersect() 43 top = top < other.top ? top : other.top; in Union() 71 bottom = (FX_FLOAT)(rect.top); in CFX_FloatRect() 72 top = (FX_FLOAT)(rect.bottom); in CFX_FloatRect() 81 if (bottom > top) { in Normalize() [all …]
|
/external/mesa3d/src/gallium/targets/ |
D | Makefile.dri | 10 $(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/mesa3d/src/gallium/targets/libgl-xlib/ |
D | Makefile | 7 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/freetype/src/psaux/ |
D | t1decode.c | 318 /* 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/pdfium/third_party/freetype/src/psaux/ |
D | t1decode.c | 318 /* 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/mesa3d/src/gallium/targets/pipe-loader/ |
D | Makefile | 5 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/ |
D | style.css | 17 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/libvncserver/webclients/novnc/include/ |
D | base.css | 92 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 …]
|
D | black.css | 15 …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/ |
D | subset-A.html | 263 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/pdfium/fpdfsdk/src/pdfwindow/ |
D | PWL_Utils.cpp | 78 rcRet.top = PWL_MAX(rect1.top, rect2.top); in MaxRect() 87 rect.top + y); in OffsetRect() 93 rcChild.right <= rcParent.right && rcChild.top <= rcParent.top; in ContainsRect() 101 FX_FLOAT top = rect1.top < rect2.top ? rect1.top : rect2.top; in IntersectRect() local 103 return left < right && bottom < top; in IntersectRect() 140 const FX_FLOAT fHeight = crBBox.top - crBBox.bottom; in GetAP_Check() 191 FX_FLOAT fHeight = crBBox.top - crBBox.bottom; in GetAP_Circle() 194 CPDF_Point pt2(crBBox.left + fWidth / 2, crBBox.top); in GetAP_Circle() 232 csAP << crBBox.left << " " << crBBox.top << " m\n"; in GetAP_Cross() 235 csAP << crBBox.right << " " << crBBox.top << " l\n"; in GetAP_Cross() [all …]
|
/external/clang/test/Index/ |
D | targeted-annotation.c | 2 #include "targeted-top.h" 8 // RUN: c-index-test -write-pch %t.h.pch %S/targeted-top.h 21 // LOCAL: Punctuation: "#" [2:1 - 2:2] inclusion directive=targeted-top.h 22 // LOCAL: Identifier: "include" [2:2 - 2:9] inclusion directive=targeted-top.h 23 // LOCAL: Literal: ""targeted-top.h"" [2:10 - 2:26] inclusion directive=targeted-top.h 68 // RUN: env CINDEXTEST_FAILONERROR=1 c-index-test -test-annotate-tokens=%S/targeted-top.h:1:1:12:1 … 71 // RUN: | FileCheck %s -check-prefix=TOP 74 // RUN: c-index-test -test-annotate-tokens=%S/targeted-top.h:1:1:12:1 %s -include %t.h \ 78 // RUN: | FileCheck %s -check-prefix=TOP 80 // TOP: Punctuation: "#" [2:1 - 2:2] preprocessing directive= [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowRect.java | 14 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 …]
|
/external/libavc/decoder/ |
D | ih264d_mvpred.c | 61 * \param ps_currMv: Pointer to the left top edge of the current block in 69 * the candidate predictors and the pointer to the top left edge of the 88 | ((ps_mv_pred[TOP]->i1_ref_frame[u1_B] in ih264d_get_motion_vector_predictor() 130 * \param ps_currMv: Pointer to the left top edge of the current block in 138 * the candidate predictors and the pointer to the top left edge of the 168 ps_mv_pred[TOP] = &(ps_dec->s_default_mv_pred); in ih264d_mbaff_mv_pred() 208 /* Check if the top subMB is available */ in ih264d_mbaff_mv_pred() 212 ps_mv_pred[TOP] = ps_mv_nmb - 4; in ih264d_mbaff_mv_pred() 230 ps_mv_pred[TOP] = ps_mvpred_tmp; in ih264d_mbaff_mv_pred() 231 pu0_scale[TOP] = u1_is_cur_mb_fld - u1_is_top_mb_fld; in ih264d_mbaff_mv_pred() [all …]
|
/external/mesa3d/src/glx/apple/ |
D | Makefile | 1 TOP = ../../.. macro 2 top_builddir = $(TOP) 5 top_srcdir = $(TOP) 7 include $(TOP)/configs/current 26 default: $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) 61 include $(TOP)/src/mesa/sources.mak 64 GLAPI_LIB = $(TOP)/src/mapi/glapi/libglapi.a 71 -I$(TOP)/include \ 72 -I$(TOP)/include/GL/internal \ 73 -I$(TOP)/src/mesa \ [all …]
|
/external/mesa3d/src/gallium/targets/xa-vmwgfx/ |
D | Makefile | 1 TOP = ../../../.. macro 2 include $(TOP)/configs/current 11 XA_INCLUDES= -I$(TOP)/src/gallium/ \ 12 -I$(TOP)/src/gallium/auxiliary \ 13 -I$(TOP)/src/gallium/include \ 14 -I$(TOP)/src/gallium/winsys \ 15 -I$(TOP)/src/gallium/drivers 21 $(TOP)/src/gallium/state_trackers/xa/libxatracker.o \ 22 $(TOP)/src/gallium/winsys/svga/drm/libsvgadrm.a \ 23 $(TOP)/src/gallium/drivers/svga/libsvga.a \ [all …]
|