HomeSort by relevance Sort by last modified time
    Searched refs:top (Results 1 - 25 of 2319) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
diamond_top.h 1 int top(int *);
  /external/linux-tools-perf/util/
top.c 4 * 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)
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)
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)
73 float samples_per_sec = top->samples / top->delay_secs
    [all...]
pstack.c 19 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 == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/priority.queue/priqueue.members/
pop.pass.cpp 23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
29 assert(q.top() == 2);
31 assert(q.top() == 1);
emplace.pass.cpp 26 assert(q.top() == Emplaceable(1, 2.5));
28 assert(q.top() == Emplaceable(3, 4.5));
30 assert(q.top() == Emplaceable(3, 4.5));
push.pass.cpp 23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
push_rvalue.pass.cpp 26 assert(q.top() == 1);
28 assert(q.top() == 3);
30 assert(q.top() == 3);
top.pass.cpp 14 // const_reference top() const;
23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
  /frameworks/base/graphics/java/android/graphics/
RectF.java 28 * represented by the coordinates of its 4 edges (left, top, right bottom).
31 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
35 public float top; field in class:RectF
47 * top <= bottom.
50 * @param top The Y coordinate of the top of the rectangle
54 public RectF(float left, float top, float right, float bottom) {
56 this.top = top;
70 left = top = right = bottom = 0.0f
    [all...]
Insets.java 32 public final int top; field in class:Insets
36 private Insets(int left, int top, int right, int bottom) {
38 this.top = top;
49 * @param top the top inset
55 public static Insets of(int left, int top, int right, int bottom) {
56 if (left == 0 && top == 0 && right == 0 && bottom == 0) {
59 return new Insets(left, top, right, bottom);
70 return (r == null) ? NONE : of(r.left, r.top, r.right, r.bottom)
    [all...]
Rect.java 28 * represented by the coordinates of its 4 edges (left, top, right bottom).
31 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
35 public int top; field in class:Rect
50 * top <= bottom.
53 * @param top The Y coordinate of the top of the rectangle
57 public Rect(int left, int top, int right, int bottom) {
59 this.top = top;
73 left = top = right = bottom = 0
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.defn/
push.pass.cpp 22 assert(q.top() == 1);
25 assert(q.top() == 2);
28 assert(q.top() == 3);
push_rv.pass.cpp 25 assert(q.top() == MoveOnly(1));
28 assert(q.top() == MoveOnly(2));
31 assert(q.top() == MoveOnly(3));
  /packages/apps/Mms/src/com/android/mms/ui/
AdaptableSlideViewInterface.java 27 void setTextRegion(int left, int top, int width, int height);
31 void setImageRegion(int left, int top, int width, int height);
35 void setVideoRegion(int left, int top, int width, int height);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
SelectionRenderer.java 24 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
26 canvas.drawRect(left, top, right, top + stroke, paint);
28 canvas.drawRect(left, top, left + stroke, bottom, paint);
29 canvas.drawRect(right - stroke, top, right, bottom, paint);
32 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
34 canvas.drawRect(left, top, right, top + stroke, selectPaint);
36 canvas.drawRect(left, top, left + stroke, bottom, selectPaint);
37 canvas.drawRect(right - stroke, top, right, bottom, selectPaint)
    [all...]
  /frameworks/native/libs/ui/
Rect.cpp 32 top = 0;
39 if (top<rhs.top) {
41 } else if (top == rhs.top) {
60 bottom -= top - y;
62 top = y;
69 top += y;
77 const Rect result(left+rhs.x, top+rhs.y, right+rhs.x, bottom+rhs.y);
83 const Rect result(left-rhs.x, top-rhs.y, right-rhs.x, bottom-rhs.y)
108 int top = result.left; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 48 public boolean computeEventRect(int date, int left, int top, int cellWidth, Event event) {
87 event.top = top;
88 event.top += (int) (startTime * cellMinuteHeight);
89 event.top += startHour * mHourGap;
91 event.bottom = top;
96 if (event.bottom < event.top + mMinEventHeight) {
97 event.bottom = event.top + mMinEventHeight;
111 && event.top < selection.bottom && event.bottom >= selection.top) {
123 float top = event.top; local
    [all...]
  /external/v8/src/
store-buffer-inl.h 44 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 >= old_limit_)
    [all...]
  /external/linux-tools-perf/
builtin-top.c 2 * 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.sym_filter_entry = syme
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewInnerTextTest.java 27 LinearLayout top = new LinearLayout(activity); local
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); local
49 top.addView(textView("blah", View.VISIBLE));
50 top.addView(textView("blarg", View.GONE))
58 LinearLayout top = new LinearLayout(activity); local
    [all...]
  /external/stlport/test/unit/
stack_test.cpp 39 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);
  /ndk/tests/device/test-gnustl-full/unit/
stack_test.cpp 39 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);
  /ndk/tests/device/test-stlport/unit/
stack_test.cpp 39 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);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
Utilities.java 10 int top = y - h / 2; local
12 int bottom = top + h;
13 d.setBounds(left, top, right, bottom);
  /external/dropbear/libtommath/
bn_mp_rshd.c 35 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 */

Completed in 888 milliseconds

1 2 3 4 5 6 7 8 91011>>