Searched refs:top (Results 1 - 25 of 1979) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/
H A Ddiamond_top.h1 int top(int *);
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
H A Dhtmlrunner.js1 var startTest = top.startTest || function(){};
2 var test = top.test || function(name, fn){ fn(); };
3 var endTest = top.endTest || function(){};
4 var prep = top.prep || function(fn){ fn(); };
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2249423.js31 function top() { function
40 top();
/external/v8/test/mjsunit/regress/
H A Dregress-2249423.js31 function top() { function
40 top();
/external/linux-tools-perf/util/
H A Dtop.c4 * Refactored from builtin-top.c, see that files for further copyright notes.
15 #include "top.h"
21 static double sym_weight(const struct sym_entry *sym, struct perf_top *top) argument
26 if (!top->display_weighted)
29 for (counter = 1; counter < top->evlist->nr_entries - 1; counter++)
37 static void perf_top__remove_active_sym(struct perf_top *top, struct sym_entry *syme) argument
39 pthread_mutex_lock(&top->active_symbols_lock);
41 pthread_mutex_unlock(&top->active_symbols_lock);
70 size_t perf_top__header_snprintf(struct perf_top *top, char *bf, size_t size) argument
73 float samples_per_sec = top
163 perf_top__reset_sample_counters(struct perf_top *top) argument
170 perf_top__decay_samples(struct perf_top *top, struct rb_root *root) argument
213 perf_top__find_widths(struct perf_top *top, struct rb_root *root, int *dso_width, int *dso_short_width, int *sym_width) argument
[all...]
H A Dpstack.c19 unsigned short top; member in struct:pstack
40 return self->top == 0;
45 unsigned short i = self->top, last_index = self->top - 1;
53 --self->top;
62 if (self->top == self->max_nr_entries) {
63 pr_err("%s: top=%d, overflow!\n", __func__, self->top);
66 self->entries[self->top++] = key;
73 if (self->top
[all...]
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dpointer_overlay.css6 margin-top: 20px;
10 margin-top: 12px;
/external/chromium_org/ui/gfx/
H A Dinsets_f.cc15 InsetsF::InsetsF(float top, float left, float bottom, float right) argument
16 : InsetsBase<InsetsF, float>(top, left, bottom, right) {}
22 return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
H A Dinsets.cc19 Insets::Insets(int top, int left, int bottom, int right) argument
20 : InsetsBase<Insets, int>(top, left, bottom, right) {}
24 : InsetsBase<Insets, int>(border.top,
35 return base::StringPrintf("%d,%d,%d,%d", top(), left(), bottom(), right());
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2stack.c66 stack->top = &stack->buffer[0]; /* empty stack */
90 return (CF2_UInt)( stack->top - &stack->buffer[0] );
98 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] )
104 stack->top->u.i = val;
105 stack->top->type = CF2_NumberInt;
106 ++stack->top;
114 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] )
120 stack->top->u.r = val;
121 stack->top->type = CF2_NumberFixed;
122 ++stack->top;
[all...]
/external/freetype/src/cff/
H A Dcf2stack.c66 stack->top = &stack->buffer[0]; /* empty stack */
90 return (CF2_UInt)( stack->top - &stack->buffer[0] );
98 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] )
104 stack->top->u.i = val;
105 stack->top->type = CF2_NumberInt;
106 ++stack->top;
114 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] )
120 stack->top->u.r = val;
121 stack->top->type = CF2_NumberFixed;
122 ++stack->top;
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
H A Djquery.isonscreen.js18 top: $(window).scrollTop(),
26 box.top+box.height-container.top > 0 &&
27 box.top < container.height+container.top
40 top: $(window).scrollTop(),
48 $(this).offset().top+$(this).height()-container.top > 0 &&
49 $(this).offset().top < container.height+container.top
[all...]
/external/chromium_org/v8/src/
H A Dstore-buffer-inl.h45 Address* top = reinterpret_cast<Address*>(heap_->store_buffer_top()); local
46 *top++ = addr;
47 heap_->public_set_store_buffer_top(top);
48 if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) {
49 ASSERT(top == limit_);
52 ASSERT(top < limit_);
63 Address* top = old_top_; local
64 *top++ = addr;
65 old_top_ = top;
68 if (top >
[all...]
/external/v8/src/
H A Dstore-buffer-inl.h44 Address* top = reinterpret_cast<Address*>(heap_->store_buffer_top()); local
45 *top++ = addr;
46 heap_->public_set_store_buffer_top(top);
47 if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) {
48 ASSERT(top == limit_);
51 ASSERT(top < limit_);
62 Address* top = old_top_; local
63 *top++ = addr;
64 old_top_ = top;
67 if (top >
[all...]
/external/chromium_org/third_party/bintrees/bintrees/
H A Davltree.py159 top = 0
177 top = len(node_stack) - 1
178 while (top >= 0) and not done:
179 direction = dir_stack[top]
181 topnode = node_stack[top]
193 node_stack[top] = jsw_single(topnode, other_side)
195 node_stack[top] = jsw_double(topnode, other_side)
198 if top != 0:
199 node_stack[top - 1][dir_stack[top
[all...]
/external/linux-tools-perf/
H A Dbuiltin-top.c2 * builtin-top.c
4 * Builtin top command: Display a continuously updated profile of
32 #include "util/top.h"
83 static struct perf_top top = { variable in typeref:struct:perf_top
89 .active_symbols = LIST_HEAD_INIT(top.active_symbols),
145 top.print_entries = ws->ws_row;
147 if (top.print_entries > 9)
148 top.print_entries -= 9;
188 if (symbol__alloc_hist(sym, top.evlist->nr_entries) < 0) {
205 top
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DViewInnerTextTest.java27 LinearLayout top = new LinearLayout(activity);
28 top.addView(textView("blah"));
29 top.addView(new View(activity));
30 top.addView(textView("a b c"));
33 top.addView(innerLayout);
41 top.addView(textView("mnop"));
43 assertEquals("blah a b c d e f g h i jkl! mnop", shadowOf(top).innerText());
48 LinearLayout top = new LinearLayout(activity);
49 top.addView(textView("blah", View.VISIBLE));
50 top
[all...]
/external/stlport/test/unit/
H A Dstack_test.cpp39 CPPUNIT_ASSERT(s.top()==69);
41 CPPUNIT_ASSERT(s.top()==101);
43 CPPUNIT_ASSERT(s.top()==42);
53 CPPUNIT_ASSERT(s.top()==69);
55 CPPUNIT_ASSERT(s.top()==101);
57 CPPUNIT_ASSERT(s.top()==42);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntRectExtent.h47 IntRectExtent(int top, int right, int bottom, int left) argument
48 : m_top(top)
55 int top() const { return m_top; } function in class:WebCore::IntRectExtent
56 void setTop(int top) { m_top = top; } argument
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
74 rect.move(-left(), -top());
75 rect.expand(left() + right(), top() + bottom());
87 return a.top() == b.top()
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_rshd.c35 register mp_digit *bottom, *top; local
42 /* top [offset into digits] */
43 top = a->dp + b;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
59 /* zero the top digits */
/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/chromium/chrome/common/extensions/docs/examples/extensions/mappy/
H A Dmappy_content_script.js2 if (window == top) {
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dchromeos_view.css8 margin-top: 20px;
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dprint_header.css7 padding-top: 6px;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
H A Dmappy_content_script.js6 if (window == top) {

Completed in 7179 milliseconds

1234567891011>>