Home
last modified time | relevance | path

Searched refs:top (Results 1 – 25 of 2075) sorted by relevance

12345678910>>...83

/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/freetype/src/psaux/
Dt1decode.c393 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()
695 arg_cnt = Fix2Int( top[0] ); in t1_decoder_parse_charstrings()
[all …]
/external/pdfium/third_party/freetype/src/psaux/
Dt1decode.c393 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()
695 arg_cnt = Fix2Int( top[0] ); in t1_decoder_parse_charstrings()
[all …]
/external/opencv3/3rdparty/libwebp/dsp/
Denc.c237 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()
280 if (top) { in TrueMotion()
281 VerticalPred(dst, top, size); in TrueMotion()
289 const uint8_t* top, in DCMode() argument
293 if (top) { in DCMode()
[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()
272 if (top != NULL) { in TrueMotion()
273 VerticalPred(dst, top, size); in TrueMotion()
281 const uint8_t* top, in DCMode() argument
285 if (top != NULL) { in DCMode()
[all …]
Dlossless_mips_dsp_r2.c190 static uint32_t Predictor5(uint32_t left, const uint32_t* const top) { in Predictor5() argument
191 return Average3(left, top[0], top[1]); in Predictor5()
194 static uint32_t Predictor6(uint32_t left, const uint32_t* const top) { in Predictor6() argument
195 return Average2(left, top[-1]); in Predictor6()
198 static uint32_t Predictor7(uint32_t left, const uint32_t* const top) { in Predictor7() argument
199 return Average2(left, top[0]); in Predictor7()
202 static uint32_t Predictor8(uint32_t left, const uint32_t* const top) { in Predictor8() argument
204 return Average2(top[-1], top[0]); in Predictor8()
207 static uint32_t Predictor9(uint32_t left, const uint32_t* const top) { in Predictor9() argument
209 return Average2(top[0], top[1]); in Predictor9()
[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()
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()
104 if (row != rows_.end() && row->second->top < bottom) in AddRect()
105 bottom = row->second->top; in AddRect()
107 row, Rows::value_type(bottom, new Row(top, bottom))); in AddRect()
[all …]
/external/pdfium/third_party/freetype/src/cff/
Dcf2stack.c66 stack->top = &stack->buffer[0]; /* empty stack */ in cf2_stack_init()
90 return (CF2_UInt)( stack->top - &stack->buffer[0] ); in cf2_stack_count()
98 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] ) in cf2_stack_pushInt()
104 stack->top->u.i = val; in cf2_stack_pushInt()
105 stack->top->type = CF2_NumberInt; in cf2_stack_pushInt()
106 ++stack->top; in cf2_stack_pushInt()
114 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] ) in cf2_stack_pushFixed()
120 stack->top->u.r = val; in cf2_stack_pushFixed()
121 stack->top->type = CF2_NumberFixed; in cf2_stack_pushFixed()
122 ++stack->top; in cf2_stack_pushFixed()
[all …]
/external/freetype/src/cff/
Dcf2stack.c66 stack->top = &stack->buffer[0]; /* empty stack */ in cf2_stack_init()
90 return (CF2_UInt)( stack->top - &stack->buffer[0] ); in cf2_stack_count()
98 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] ) in cf2_stack_pushInt()
104 stack->top->u.i = val; in cf2_stack_pushInt()
105 stack->top->type = CF2_NumberInt; in cf2_stack_pushInt()
106 ++stack->top; in cf2_stack_pushInt()
114 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] ) in cf2_stack_pushFixed()
120 stack->top->u.r = val; in cf2_stack_pushFixed()
121 stack->top->type = CF2_NumberFixed; in cf2_stack_pushFixed()
122 ++stack->top; in cf2_stack_pushFixed()
[all …]
/external/libvncserver/webclients/novnc/include/
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 …]
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 …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DViewInnerTextTest.java27 LinearLayout top = new LinearLayout(activity); in testInnerText() local
28 top.addView(textView("blah")); in testInnerText()
29 top.addView(new View(activity)); in testInnerText()
30 top.addView(textView("a b c")); in testInnerText()
33 top.addView(innerLayout); in testInnerText()
41 top.addView(textView("mnop")); in testInnerText()
43 assertEquals("blah a b c d e f g h i jkl! mnop", shadowOf(top).innerText()); in testInnerText()
48 LinearLayout top = new LinearLayout(activity); in shouldOnlyIncludeViewTextViewsText() local
49 top.addView(textView("blah", View.VISIBLE)); in shouldOnlyIncludeViewTextViewsText()
50 top.addView(textView("blarg", View.GONE)); in shouldOnlyIncludeViewTextViewsText()
[all …]
/external/pdfium/core/include/fxcrt/
Dfx_coordinates.h194 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/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 …]
/external/boringssl/src/crypto/bn/
Dshift.c78 if (bn_wexpand(r, a->top + nw + 1) == NULL) { in BN_lshift()
85 t[a->top + nw] = 0; in BN_lshift()
87 for (i = a->top - 1; i >= 0; i--) { in BN_lshift()
91 for (i = a->top - 1; i >= 0; i--) { in BN_lshift()
98 r->top = a->top + nw + 1; in BN_lshift()
110 if (bn_wexpand(r, a->top + 1) == NULL) { in BN_lshift1()
113 r->top = a->top; in BN_lshift1()
115 if (bn_wexpand(r, a->top + 1) == NULL) { in BN_lshift1()
122 for (i = 0; i < a->top; i++) { in BN_lshift1()
129 r->top++; in BN_lshift1()
[all …]
Dexponentiation.c608 if (a->top == 1 && !a->neg && BN_get_flags(p, BN_FLG_CONSTTIME) == 0) { in BN_mod_exp()
701 j = m->top; /* borrow j */ in BN_mod_exp_mont()
711 r->top = j; in BN_mod_exp_mont()
789 static int copy_to_prebuf(const BIGNUM *b, int top, unsigned char *buf, int idx, in copy_to_prebuf() argument
793 if (top > b->top) { in copy_to_prebuf()
794 top = b->top; /* this works because 'buf' is explicitly zeroed */ in copy_to_prebuf()
796 for (i = 0, j = idx; i < top * sizeof b->d[0]; i++, j += width) { in copy_to_prebuf()
803 static int copy_from_prebuf(BIGNUM *b, int top, unsigned char *buf, int idx, in copy_from_prebuf() argument
807 if (bn_wexpand(b, top) == NULL) { in copy_from_prebuf()
811 for (i = 0, j = idx; i < top * sizeof b->d[0]; i++, j += width) { in copy_from_prebuf()
[all …]
Dadd.c109 if (a->top < b->top) { in BN_uadd()
114 max = a->top; in BN_uadd()
115 min = b->top; in BN_uadd()
122 r->top = max; in BN_uadd()
147 r->top++; in BN_uadd()
188 for (i = 0; w != 0 && i < a->top; i++) { in BN_add_word()
193 if (w && i == a->top) { in BN_add_word()
194 if (bn_wexpand(a, a->top + 1) == NULL) { in BN_add_word()
197 a->top++; in BN_add_word()
241 max = (a->top > b->top) ? a->top : b->top; in BN_sub()
[all …]
/external/pdfium/core/src/fxcrt/
Dfx_basic_coords.cpp18 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/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/javassist/src/main/javassist/bytecode/analysis/
DFrame.java26 private int top; field in Frame
86 top = 0; in clearStack()
98 return top - 1; in getTopIndex()
117 if (top < 1) in peek()
120 return stack[top - 1]; in peek()
129 if (top < 1) in pop()
131 return stack[--top]; in pop()
140 stack[top++] = type; in push()
154 frame.top = top; in copy()
167 frame.top = top; in copyStack()
[all …]
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Utils.cpp78 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/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
DMockRectF.java41 it.top = rhs.top; in $init()
47 public void $init(float left, float top, float right, float bottom) { in $init() argument
49 it.top = top; in $init()
64 it.top = it.top + dy; in offset()
69 public void offsetTo(float left, float top) { in offsetTo() argument
72 it.bottom = top + height(); in offsetTo()
75 it.top = top; in offsetTo()
82 return it.bottom - it.top; in height()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
DTooltip.css7 body { overflow: auto; margin-top: 0px; margin-bottom: 0px; margin-left: 0.3em; margin-right: …
9 h1 { margin-top: 0.3em; margin-bottom: 0.04em; }
10 h2 { margin-top: 2em; margin-bottom: 0.25em; }
11 h3 { margin-top: 1.7em; margin-bottom: 0.25em; }
12 h4 { margin-top: 2em; margin-bottom: 0.3em; }
13 h5 { margin-top: 0px; margin-bottom: 0px; }
14 p { margin-top: 0em; margin-bottom: 0em; }
16 ul { margin-top: 0px; margin-bottom: 1em; }
17 li { margin-top: 0px; margin-bottom: 0px; }
18 li p { margin-top: 0px; margin-bottom: 0px; }
[all …]
/external/v8/src/heap/
Dstore-buffer-inl.h17 Address* top = reinterpret_cast<Address*>(heap_->store_buffer_top()); in Mark() local
18 *top++ = addr; in Mark()
19 heap_->set_store_buffer_top(reinterpret_cast<Smi*>(top)); in Mark()
20 if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) { in Mark()
21 DCHECK(top == limit_); in Mark()
24 DCHECK(top < limit_); in Mark()
39 Address* top = old_top_; in EnterDirectlyIntoStoreBuffer() local
40 *top++ = addr; in EnterDirectlyIntoStoreBuffer()
41 old_top_ = top; in EnterDirectlyIntoStoreBuffer()
44 if (top >= old_limit_) { in EnterDirectlyIntoStoreBuffer()
/external/pdfium/core/src/fxge/ge/
Dfx_ge_device.cpp29 m_ClipBox.top = 0; in InitDeviceInfo()
97 (FX_FLOAT)(pRect->right), (FX_FLOAT)(pRect->top)); in SetClip_Rect()
109 m_ClipBox.top = 0; in UpdateClipBox()
167 int height = (int)FXSYS_ceil(rect_f.top - rect_f.bottom); in DrawPath()
170 if (rect_i.bottom == rect_i.top) { in DrawPath()
183 if (rect_f.top - (FX_FLOAT)(rect_i.top) > in DrawPath()
185 rect_i.top++; in DrawPath()
254 if (!m_pDeviceDriver->GetDIBits(&bitmap, rect.left, rect.top, NULL)) { in DrawPath()
265 matrix.TranslateI(-rect.left, -rect.top); in DrawPath()
275 rect.top, FXDIB_BLEND_NORMAL); in DrawPath()
[all …]

12345678910>>...83