Searched refs:top (Results 1 - 25 of 2342) 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/third_party/skia/third_party/lua/src/
H A Dlapi.h14 #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \
18 { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; }
20 #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2249423.js31 function top() { function
40 top();
/external/fio/
H A Dcconv.c48 struct thread_options_pack *top)
52 string_to_cpu(&o->description, top->description);
53 string_to_cpu(&o->name, top->name);
54 string_to_cpu(&o->directory, top->directory);
55 string_to_cpu(&o->filename, top->filename);
56 string_to_cpu(&o->filename_format, top->filename_format);
57 string_to_cpu(&o->opendir, top->opendir);
58 string_to_cpu(&o->ioengine, top->ioengine);
59 string_to_cpu(&o->mmapfile, top->mmapfile);
60 string_to_cpu(&o->read_iolog_file, top
47 convert_thread_options_to_cpu(struct thread_options *o, struct thread_options_pack *top) argument
252 convert_thread_options_to_net(struct thread_options_pack *top, struct thread_options *o) argument
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Dother_options_settings.css6 padding-top: 16px;
7 vertical-align: top;
/external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/
H A Dpop.pass.cpp23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
29 assert(q.top() == 2);
31 assert(q.top() == 1);
H A Demplace.pass.cpp26 assert(q.top() == Emplaceable(1, 2.5));
28 assert(q.top() == Emplaceable(3, 4.5));
30 assert(q.top() == Emplaceable(3, 4.5));
H A Dpush.pass.cpp23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
H A Dpush_rvalue.pass.cpp26 assert(q.top() == 1);
28 assert(q.top() == 3);
30 assert(q.top() == 3);
H A Dtop.pass.cpp14 // const_reference top() const;
23 assert(q.top() == 1);
25 assert(q.top() == 3);
27 assert(q.top() == 3);
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-top.c2 * builtin-top.c
4 * Builtin top command: Display a continuously updated profile of
34 #include "util/top.h"
76 static void perf_top__update_print_entries(struct perf_top *top) argument
78 top->print_entries = top->winsize.ws_row - HEADER_LINE_NR;
84 struct perf_top *top = arg; local
86 get_term_dimensions(&top->winsize);
87 perf_top__update_print_entries(top);
90 static int perf_top__parse_source(struct perf_top *top, struc argument
173 perf_top__record_precise_ip(struct perf_top *top, struct hist_entry *he, int counter, u64 ip) argument
209 perf_top__show_details(struct perf_top *top) argument
260 perf_top__print_sym_table(struct perf_top *top) argument
338 perf_top__prompt_symbol(struct perf_top *top, const char *msg) argument
379 perf_top__print_mapped_keys(struct perf_top *top) argument
411 perf_top__key_mapped(struct perf_top *top, int c) argument
435 perf_top__handle_keypress(struct perf_top *top, int c) argument
566 struct perf_top *top = arg; local
595 struct perf_top *top = arg; local
690 struct perf_top *top = container_of(tool, struct perf_top, tool); local
799 perf_top__mmap_read_idx(struct perf_top *top, int idx) argument
867 perf_top__mmap_read(struct perf_top *top) argument
875 perf_top__start_counters(struct perf_top *top) argument
930 __cmd_top(struct perf_top *top) argument
1042 struct perf_top *top = opt->value; local
1052 struct perf_top top = { local
[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/geometry/
H A Dinsets.cc15 Insets::Insets(int top, int left, int bottom, int right) argument
16 : InsetsBase<Insets, int>(top, left, bottom, right) {}
22 return base::StringPrintf("%d,%d,%d,%d", top(), left(), bottom(), right());
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());
/external/libcxx/test/containers/container.adaptors/stack/stack.defn/
H A Dpush.pass.cpp22 assert(q.top() == 1);
25 assert(q.top() == 2);
28 assert(q.top() == 3);
/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/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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/skia/experimental/Intersection/
H A DCubicBezierClip.cpp32 double top = distance[0]; local
34 if (top > bottom) {
35 SkTSwap(top, bottom);
37 if (top * bottom >= 0) {
39 if (top < 0) {
40 top *= scale;
43 top = 0;
48 top *= scale;
57 if (approximately_lesser_or_equal(distance2y[0].y, top)) {
65 if (approximately_lesser_or_equal(distance2y[3].y, top)) {
[all...]
/external/skia/experimental/Intersection/
H A DCubicBezierClip.cpp32 double top = distance[0]; local
34 if (top > bottom) {
35 SkTSwap(top, bottom);
37 if (top * bottom >= 0) {
39 if (top < 0) {
40 top *= scale;
43 top = 0;
48 top *= scale;
57 if (approximately_lesser_or_equal(distance2y[0].y, top)) {
65 if (approximately_lesser_or_equal(distance2y[3].y, top)) {
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpstack.c13 unsigned short top; member in struct:pstack
34 return pstack->top == 0;
39 unsigned short i = pstack->top, last_index = pstack->top - 1;
47 --pstack->top;
56 if (pstack->top == pstack->max_nr_entries) {
57 pr_err("%s: top=%d, overflow!\n", __func__, pstack->top);
60 pstack->entries[pstack->top++] = key;
67 if (pstack->top
[all...]
H A Dtop.c4 * Refactored from builtin-top.c, see that files for further copyright notes.
15 #include "top.h"
24 size_t perf_top__header_snprintf(struct perf_top *top, char *bf, size_t size) argument
29 struct perf_record_opts *opts = &top->record_opts;
33 if (top->samples) {
34 samples_per_sec = top->samples / top->delay_secs;
35 ksamples_per_sec = top->kernel_samples / top->delay_secs;
36 esamples_percent = (100.0 * top
112 perf_top__reset_sample_counters(struct perf_top *top) argument
[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/third_party/polymer/components-chromium/paper-menu-button/
H A Dpaper-menu-button-overlay-extracted.js46 if (this.valign === 'top') {
47 this.target.style.top = rect.top + 'px';
49 this.target.style.top = rect.bottom + 'px';
51 this.target.style.top = rect.top + 'px';
54 // this.target.style.top = rect.top + 'px';

Completed in 9617 milliseconds

1234567891011>>