Home
last modified time | relevance | path

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

12345678910>>...61

/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/linux-tools-perf/src/tools/perf/
Dbuiltin-top.c76 static void perf_top__update_print_entries(struct perf_top *top) in perf_top__update_print_entries() argument
78 top->print_entries = top->winsize.ws_row - HEADER_LINE_NR; in perf_top__update_print_entries()
84 struct perf_top *top = arg; in perf_top__sig_winch() local
86 get_term_dimensions(&top->winsize); in perf_top__sig_winch()
87 perf_top__update_print_entries(top); in perf_top__sig_winch()
90 static int perf_top__parse_source(struct perf_top *top, struct hist_entry *he) in perf_top__parse_source() argument
133 top->sym_filter_entry = he; in perf_top__parse_source()
173 static void perf_top__record_precise_ip(struct perf_top *top, in perf_top__record_precise_ip() argument
182 ((top->sym_filter_entry == NULL || in perf_top__record_precise_ip()
183 top->sym_filter_entry->ms.sym != he->ms.sym) && use_browser != 1)) in perf_top__record_precise_ip()
[all …]
/external/linux-tools-perf/src/tools/perf/util/
Dtop.c24 size_t perf_top__header_snprintf(struct perf_top *top, char *bf, size_t size) in perf_top__header_snprintf() argument
29 struct perf_record_opts *opts = &top->record_opts; in perf_top__header_snprintf()
33 if (top->samples) { in perf_top__header_snprintf()
34 samples_per_sec = top->samples / top->delay_secs; in perf_top__header_snprintf()
35 ksamples_per_sec = top->kernel_samples / top->delay_secs; in perf_top__header_snprintf()
36 esamples_percent = (100.0 * top->exact_samples) / top->samples; in perf_top__header_snprintf()
52 float us_samples_per_sec = top->us_samples / top->delay_secs; in perf_top__header_snprintf()
53 float guest_kernel_samples_per_sec = top->guest_kernel_samples / top->delay_secs; in perf_top__header_snprintf()
54 float guest_us_samples_per_sec = top->guest_us_samples / top->delay_secs; in perf_top__header_snprintf()
73 if (top->evlist->nr_entries == 1) { in perf_top__header_snprintf()
[all …]
Dpstack.c13 unsigned short top; member
34 return pstack->top == 0; in pstack__empty()
39 unsigned short i = pstack->top, last_index = pstack->top - 1; in pstack__remove()
47 --pstack->top; in pstack__remove()
56 if (pstack->top == pstack->max_nr_entries) { in pstack__push()
57 pr_err("%s: top=%d, overflow!\n", __func__, pstack->top); in pstack__push()
60 pstack->entries[pstack->top++] = key; in pstack__push()
67 if (pstack->top == 0) { in pstack__pop()
72 ret = pstack->entries[--pstack->top]; in pstack__pop()
73 pstack->entries[pstack->top] = NULL; in pstack__pop()
/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/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/webp/src/dsp/
Denc.c208 const uint8_t* top, int size) { in VerticalPred() argument
210 if (top) { in VerticalPred()
211 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size); in VerticalPred()
230 const uint8_t* top, int size) { in TrueMotion() argument
233 if (top) { in TrueMotion()
239 dst[x] = clip_table[top[x]]; in TrueMotion()
251 if (top) { in TrueMotion()
252 VerticalPred(dst, top, size); in TrueMotion()
260 const uint8_t* top, in DCMode() argument
264 if (top) { in DCMode()
[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/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/robolectric/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.h241 void Set(baseType left, baseType top, baseType width, baseType height) in Set() argument
243 … FXT_RECT::left = left, FXT_RECT::top = top, FXT_RECT::width = width, FXT_RECT::height = height; in Set()
245 void Set(baseType left, baseType top, const FXT_SIZE &size) in Set() argument
247 FXT_RECT::left = left, FXT_RECT::top = top, FXT_RECT::Size(size); in Set()
263 FXT_RECT::left = FXT_RECT::top = FXT_RECT::width = FXT_RECT::height = 0; in Reset()
267 left += p.x, top += p.y;
272 left -= p.x, top -= p.y;
281 return top + height; in bottom()
290 top += height; in Normalize()
297 top += dy; in Offset()
[all …]
/external/robolectric/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.c593 if (a->top == 1 && !a->neg && BN_get_flags(p, BN_FLG_CONSTTIME) == 0) { in BN_mod_exp()
687 j = m->top; /* borrow j */ in BN_mod_exp_mont()
697 r->top = j; in BN_mod_exp_mont()
777 static int copy_to_prebuf(const BIGNUM *b, int top, unsigned char *buf, int idx, in copy_to_prebuf() argument
781 if (top > b->top) { in copy_to_prebuf()
782 top = b->top; /* this works because 'buf' is explicitly zeroed */ in copy_to_prebuf()
784 for (i = 0, j = idx; i < top * sizeof b->d[0]; i++, j += width) { in copy_to_prebuf()
791 static int copy_from_prebuf(BIGNUM *b, int top, unsigned char *buf, int idx, in copy_from_prebuf() argument
795 if (bn_wexpand(b, top) == NULL) { in copy_from_prebuf()
799 for (i = 0, j = idx; i < top * sizeof b->d[0]; i++, j += width) { in copy_from_prebuf()
[all …]
Dadd.c107 if (a->top < b->top) { in BN_uadd()
112 max = a->top; in BN_uadd()
113 min = b->top; in BN_uadd()
120 r->top = max; in BN_uadd()
145 r->top++; in BN_uadd()
186 for (i = 0; w != 0 && i < a->top; i++) { in BN_add_word()
191 if (w && i == a->top) { in BN_add_word()
192 if (bn_wexpand(a, a->top + 1) == NULL) { in BN_add_word()
195 a->top++; in BN_add_word()
239 max = (a->top > b->top) ? a->top : b->top; in BN_sub()
[all …]
/external/pdfium/core/src/fxcrt/
Dfx_basic_coords.cpp16 if (top > bottom) { in Normalize()
17 int temp = top; in Normalize()
18 top = bottom; in Normalize()
28 top = top > src_n.top ? top : src_n.top; in Intersect()
31 if (left > right || top > bottom) { in Intersect()
32 left = top = right = bottom = 0; in Intersect()
43 top = top < other.top ? top : other.top; in Union()
70 bottom = (FX_FLOAT)(rect.top); in CFX_FloatRect()
71 top = (FX_FLOAT)(rect.bottom); in CFX_FloatRect()
81 if (bottom > top) { in Normalize()
[all …]
/external/openssh/
Dbitmap.c33 size_t top; /* index of top word allocated */ member
48 ret->top = 0; in bitmap_new()
66 b->top = 0; in bitmap_zero()
72 if (b->top >= b->len) in bitmap_test_bit()
74 if (b->len == 0 || (n / BITMAP_BITS) > b->top) in bitmap_test_bit()
85 if (b->top >= b->len || n > BITMAP_MAX) in reserve()
107 if (offset > b->top) in bitmap_set_bit()
108 b->top = offset; in bitmap_set_bit()
117 if (b->top >= b->len) in retop()
119 while (b->top > 0 && b->d[b->top] == 0) in retop()
[all …]
/external/libvncserver/webclients/novnc/include/
Dblack.css7 …background: -moz-linear-gradient(top, #4c4c4c 0%, #2c2c2c 50%, #000000 51%, #131313 100%); /* FF3.…
8 …background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(50%…
9 …background: -webkit-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Chro…
10 …background: -o-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Opera11.1…
11 background: -ms-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* IE10+ */
12 background: linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* W3C */
27 …background: -moz-linear-gradient(top, #4c4c4c 0%, #2c2c2c 50%, #000000 51%, #131313 100%); /* FF3.…
28 …background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(50%…
29 …background: -webkit-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Chro…
30 …background: -o-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Opera11.1…
[all …]
Dbase.css61 padding-top:4px;
68 padding-top:4px;
72 margin-top: 0px;
78 padding-top: 4px;
124 /*border-top-left-radius: 800px 600px;*/
150 margin-top:77px;
157 margin-top:77px;
161 #noVNC_controls.top:after {
169 margin-top:77px;
184 margin-top:77px;
[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/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/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Utils.cpp79 rcRet.top = PWL_MAX(rect1.top,rect2.top); in MaxRect()
87 rect.right + x,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()
144 FX_FLOAT fHeight = crBBox.top - crBBox.bottom; in GetAP_Check()
227 FX_FLOAT fHeight = crBBox.top - crBBox.bottom; in GetAP_Circle()
230 CPDF_Point pt2(crBBox.left + fWidth / 2,crBBox.top); in GetAP_Circle()
271 csAP << crBBox.left << " " << crBBox.top << " m\n"; in GetAP_Cross()
274 csAP << crBBox.right << " " << crBBox.top << " l\n"; in GetAP_Cross()
[all …]
/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/pdfium/core/src/fxge/ge/
Dfx_ge_device.cpp37 m_ClipBox.top = 0; in InitDeviceInfo()
105 …_FLOAT)(pRect->left), (FX_FLOAT)(pRect->bottom), (FX_FLOAT)(pRect->right), (FX_FLOAT)(pRect->top)); in SetClip_Rect()
118 m_ClipBox.top = 0; in UpdateClipBox()
168 int height = (int)FXSYS_ceil(rect_f.top - rect_f.bottom); in DrawPath()
171 if (rect_i.bottom == rect_i.top) { in DrawPath()
183 … if (rect_f.top - (FX_FLOAT)(rect_i.top) > (FX_FLOAT)(rect_i.bottom) - rect_f.bottom) { in DrawPath()
184 rect_i.top ++; in DrawPath()
244 if (!m_pDeviceDriver->GetDIBits(&bitmap, rect.left, rect.top, NULL)) { in DrawPath()
255 matrix.TranslateI(-rect.left, -rect.top); in DrawPath()
261 … return m_pDeviceDriver->SetDIBits(&bitmap, 0, &src_rect, rect.left, rect.top, FXDIB_BLEND_NORMAL); in DrawPath()
[all …]

12345678910>>...61