HomeSort by relevance Sort by last modified time
    Searched full:comm (Results 1 - 25 of 500) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
localcomm.asm 3 .comm failmsg,100,32
5 .comm failed,1000,32
7 .comm from_dec_data,8,8
9 .comm op2static,8,8
11 .comm op1static,8,8
13 .comm spare,8,8
15 .comm result,8,8
17 .comm conv_bv,8,8
  /external/llvm/test/MC/AsmParser/
directive_comm.s 4 # CHECK: .comm a,6,2
5 # CHECK: .comm b,8
6 # CHECK: .comm c,8
8 .comm a, 4+2, 2
9 .comm b,8
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
gas-movabs.asm 1 .comm _CONE, 4, 16
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/
rw-by-file-report 3 # args: <comm>
5 echo "usage: rw-by-file <comm>"
8 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rw-by-file.pl $comm
failed-syscalls-report 3 # args: [comm]
6 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/failed-syscalls.pl $comm
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
thread.c 19 self->comm = malloc(32);
20 if (self->comm)
21 snprintf(self->comm, 32, ":%d", self->tid);
30 free(self->comm);
34 int thread__set_comm(struct thread *self, const char *comm)
38 if (self->comm)
39 free(self->comm);
40 self->comm = strdup(comm);
41 err = self->comm == NULL ? -ENOMEM : 0
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
failed-syscalls-by-pid-report 3 # args: [comm]
6 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/failed-syscalls-by-pid.py $comm
syscall-counts-by-pid-report 3 # args: [comm]
6 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts-by-pid.py $comm
syscall-counts-report 3 # args: [comm]
6 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts.py $comm
sctop-report 3 # args: [comm] [interval]
13 echo "usage: sctop-report [comm] [interval]"
17 comm=$1
24 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval
  /external/llvm/test/CodeGen/PowerPC/
2004-12-12-ZeroSizeCommon.ll 1 ; RUN: llc < %s -march=ppc32 | not grep .comm.*X,0
align.ll 42 ;ELF: .comm bar,75,128
43 ;DARWIN: .comm _bar,75,7
45 ;; Darwin8 doesn't support aligned comm. Just miscompile this.
46 ; DARWIN8: .comm _bar,75 ;
  /external/llvm/test/CodeGen/X86/
cstring.ll 1 ; RUN: llc < %s -mtriple=i386-apple-darwin | not grep comm
alignment.ll 18 ; CHECK: .comm GlobalB,384,8
23 ; CHECK: .comm GlobalC,384,2
40 ; CHECK: .comm GlobalBS,384,8
43 ; CHECK: .comm GlobalCS,384,2
  /external/clang/test/Preprocessor/
macro_paste_c_block_comment.c 4 #define COMM / ## *
5 COMM // expected-error {{pasting formed '/*', an invalid preprocessing token}}
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/
failed-syscalls.pl 6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
31 printf("\nfailed syscalls by comm:\n\n");
33 printf("%-20s %10s\n", "comm", "# errors");
36 foreach my $comm (sort {$failed_syscalls{$b} <=> $failed_syscalls{$a}}
38 next if ($for_comm && $comm ne $for_comm);
40 printf("%-20s %10s\n", $comm, $failed_syscalls{$comm});
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
keep-tracking.c 26 static int find_comm(struct perf_evlist *evlist, const char *comm)
35 (pid_t)event->comm.pid == getpid() &&
36 (pid_t)event->comm.tid == getpid() &&
37 strcmp(event->comm.comm, comm) == 0)
68 const char *comm; local
88 evsel->attr.comm = 1;
101 * First, test that a 'comm' event can be found when the event is
107 comm = "Test COMM 1"
    [all...]
  /external/llvm/test/CodeGen/ARM/
elf-lcomm-align.ll 7 ; .lcomm doesn't support alignment, so we always use .local/.comm.
9 ; CHECK-NEXT: .comm c,1,1
11 ; CHECK-NEXT: .comm x,4,4
  /external/llvm/test/MC/COFF/
comm.ll 11 ; .comm uses log2 alignment
12 ; CHECK: .comm _c,1
13 ; CHECK: .comm _d,8
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
failed-syscalls-by-pid.py 6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
18 usage = "perf script -s syscall-counts-by-pid.py [comm|pid]\n";
59 print "%-30s %10s\n" % ("comm [pid]", "count"),
64 for comm in comm_keys:
65 pid_keys = syscalls[comm].keys()
67 print "\n%s [%d]\n" % (comm, pid),
68 id_keys = syscalls[comm][pid].keys()
71 ret_keys = syscalls[comm][pid][id].keys()
72 for ret, val in sorted(syscalls[comm][pid][id].iteritems(), key = lambda(k, v): (v, k), reverse = True)
    [all...]
syscall-counts-by-pid.py 6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
17 usage = "perf script -s syscall-counts-by-pid.py [comm]\n";
55 print "\nsyscall events by comm/pid:\n\n",
57 print "%-40s %10s\n" % ("comm [pid]/syscalls", "count"),
62 for comm in comm_keys:
63 pid_keys = syscalls[comm].keys()
65 print "\n%s [%d]\n" % (comm, pid),
66 id_keys = syscalls[comm][pid].keys()
67 for id, val in sorted(syscalls[comm][pid].iteritems(),
    [all...]
netdev-times.py 132 if 'comm' in event.keys():
136 event['pid'], event['comm'])
227 def irq__softirq_entry(name, context, cpu, sec, nsec, pid, comm, vec):
230 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
233 def irq__softirq_exit(name, context, cpu, sec, nsec, pid, comm, vec):
236 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
239 def irq__softirq_raise(name, context, cpu, sec, nsec, pid, comm, vec):
242 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
245 def irq__irq_handler_entry(name, context, cpu, sec, nsec, pid, comm,
247 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
EventClass.py 24 def create_event(name, comm, dso, symbol, raw_buf):
26 event = PebsEvent(name, comm, dso, symbol, raw_buf)
28 event = PebsNHM(name, comm, dso, symbol, raw_buf)
30 event = PerfEvent(name, comm, dso, symbol, raw_buf)
36 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC):
38 self.comm = comm
46 print "PMU event: name=%12s, symbol=%24s, comm=%8s, dso=%12s" % (self.name, self.symbol, self.comm, self.dso)
55 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS)
    [all...]
  /external/chromium_org/url/third_party/mozilla/
README.chromium 2 URL: http://mxr.mozilla.org/comm-central/source/mozilla/netwerk/base/src/nsURLParsers.cpp
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
ProvisionParserTests.java 47 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\AE\\" +
52 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\">" +
55 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\">" +
58 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">" +
61 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">" +
73 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\AE\\" +
78 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\">" +
81 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\">" +
84 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">" +
87 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">"
    [all...]

Completed in 3111 milliseconds

1 2 3 4 5 6 7 8 91011>>