HomeSort by relevance Sort by last modified time
    Searched full:lines (Results 26 - 50 of 5102) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/srtp/
timing 18 # timing.plt # # gnuplot script file for plotting the output generated by srtp_driver -t # # David A. McGrew # Cisco Systems, Inc. # set xrange [0:2500] set term pict "Times-Roman" 9 # # plot authentication-only data # set title "Authentication Only" set ylabel "Megabits per second" set xlabel "Octets in packet" set yrange [0:2000] set output "plot-auth.pict" plot "timing.dat" index 0 title "HMAC SHA1" with lines, "timing.dat" index 1 title "TMMH/AES" with lines, "timing.dat" index 2 title "TMMH/SEAL" with lines # # plot encryption-only data # set title "Encryption Only" set ylabel "Megabits per second" set xlabel "Octets in packet" set output "plot-enc.pict" set yrange [0:1200] plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "AES ICM" with lines # # plot encryption and authentication data # set title "Encryption and Authentication" set ylabel "Megabits per second" set xlabel "Octets in packet" set yrange [0:1000] set output "plot-enc-auth.pict" plot "timing.dat" index 5 title "TMMH/SEAL" with lines, "timing.dat" index 6 title "TMMH/AES" with lines, "timing.dat" index 7 title "HMAC/AES" with lines
  /packages/apps/Calendar/src/com/android/calendar/
ColorChipView.java 116 float[] lines = new float[16]; local
118 lines [ptr++] = 0;
119 lines [ptr++] = top;
120 lines [ptr++] = right;
121 lines [ptr++] = top;
122 lines [ptr++] = 0;
123 lines [ptr++] = bottom - halfBorderWidth;
124 lines [ptr++] = right;
125 lines [ptr++] = bottom - halfBorderWidth;
126 lines [ptr++] = left
    [all...]
  /external/llvm/utils/lint/
generic_lint.py 12 def RunOnFile(self, filename, lines):
13 common_lint.VerifyLineLength(filename, lines,
15 common_lint.VerifyTrailingWhitespace(filename, lines)
  /external/pcre/dist/testdata/
grepinputx 11 of lines
14 of lines all by themselves.
17 of lines
  /external/clang/test/Preprocessor/
invalid-__has_warning1.c 3 // These must be the last lines in this test.
invalid-__has_warning2.c 3 // These must be the last lines in this test.
  /external/libcap-ng/
README 4 Except for some "#if !defined(ANDROID)" lines, this
  /external/llvm/test/FileCheck/
two-checks-for-same-match.txt 1 // Check that two distinct CHECK lines won't match the same string
  /external/markdown/MarkdownTest/Tests_2007/
Code Blocks.text 9 the lines in this block
  /external/markdown/tests/misc/
lists5.txt 2 > With just two lines
  /external/pcre/dist/
Detrail 3 # This is a script for removing trailing whitespace from lines in files that
12 @lines = <IN>;
14 foreach (@lines)
25 print OUT @lines;
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
LoggingPrintStreamTest.java 46 String[] lines = sout.toString().split("\\n"); local
47 assertEquals(Arrays.asList(lines), out.lines);
56 assertEquals(Arrays.asList("4" + o + "2"), out.lines);
65 assertEquals(Arrays.asList("4" + o, "2"), out.lines);
70 assertEquals(Arrays.asList("Name: Bob"), out.lines);
72 assertEquals(Arrays.asList("Name: Bob", "Employer: Google"), out.lines);
78 assertTrue(out.lines.isEmpty());
80 assertEquals(Collections.singletonList("42"), out.lines);
86 assertEquals(Arrays.asList("4", "2"), out.lines);
182 final List<String> lines = new ArrayList<String>(); field in class:LoggingPrintStreamTest.TestPrintStream
    [all...]
  /external/elfutils/src/libdw/
dwarf_getsrc_die.c 41 Dwarf_Lines *lines; local
44 if (INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines) != 0)
47 /* The lines are sorted by address, so we can use binary search. */
52 if (addr < lines->info[idx].addr)
54 else if (addr > lines->info[idx].addr || lines->info[idx].end_sequence)
57 return &lines->info[idx];
61 assert (lines->info[nlines - 1].end_sequence);
68 if (u > 0 && u < nlines && addr > lines->info[u - 1].addr)
70 while (lines->info[u - 1].end_sequence && u > 0
    [all...]
dwarf_onesrcline.c 1 /* Return one of the sources lines of a CU.
38 dwarf_onesrcline (Dwarf_Lines *lines, size_t idx)
40 if (lines == NULL)
43 if (idx >= lines->nlines)
49 return &lines->info[idx];
  /external/llvm/test/tools/llvm-cov/Inputs/
test_-b.output 2 Lines executed:84.21% of 38
9 Lines executed:100.00% of 1
test_long_file_names.output 2 Lines executed:100.00% of 1
6 Lines executed:84.21% of 38
test_long_paths.output 2 Lines executed:100.00% of 1
6 Lines executed:84.21% of 38
test_preserve_paths.output 2 Lines executed:100.00% of 1
6 Lines executed:84.21% of 38
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/
leda.py 49 lines=(line.decode(encoding) for line in path)
50 G=parse_leda(lines)
54 def parse_leda(lines):
59 lines : string or iterable
74 if is_string_like(lines): lines=iter(lines.split('\n'))
75 lines = iter([line.rstrip('\n') for line in lines \
78 next(lines)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
linecache.py 1 """Cache lines from files.
3 This is intended to read lines from modules imported -- hence if a filename
14 lines = getlines(filename, module_globals)
15 if 1 <= lineno <= len(lines):
16 return lines[lineno-1]
34 """Get the lines for a file from the cache.
56 size, mtime, lines, fullname = cache[filename]
69 """Update a cache entry and return its list of lines.
128 lines = fp.readlines()
131 if lines and not lines[-1].endswith('\n')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
linecache.py 1 """Cache lines from files.
3 This is intended to read lines from modules imported -- hence if a filename
14 lines = getlines(filename, module_globals)
15 if 1 <= lineno <= len(lines):
16 return lines[lineno-1]
34 """Get the lines for a file from the cache.
56 size, mtime, lines, fullname = cache[filename]
69 """Update a cache entry and return its list of lines.
128 lines = fp.readlines()
131 if lines and not lines[-1].endswith('\n')
    [all...]
  /external/elfutils/src/libdwfl/
lines.c 36 if (cu->lines == NULL)
38 Dwarf_Lines *lines; local
40 if (INTUSE(dwarf_getsrclines) (&cu->die, &lines, &nlines) != 0)
43 cu->lines = malloc (offsetof (struct Dwfl_Lines, idx[nlines]));
44 if (cu->lines == NULL)
46 cu->lines->cu = cu;
48 cu->lines->idx[i].idx = i;
  /external/strace/tests/
net-yy-connect.awk 2 lines = 5
32 NR == lines && $0 == "+++ exited with 0 +++" {next}
40 if (NR != lines) {
41 print "Expected " lines " lines, found " NR " line(s)."
unix-yy-connect.awk 2 lines = 6
31 NR == lines && $0 == "+++ exited with 0 +++" {next}
39 if (NR != lines) {
40 print "Expected " lines " lines, found " NR " line(s)."
  /external/toybox/toys/posix/
tail.c 1 /* tail.c - copy last lines from input to stdout.
15 Copy last lines from files to stdout. If no files listed, copy from
18 -n output the last NUMBER lines (default 10), +X counts from start.
34 long lines;
72 // Note: bytes and lines are negative here.
73 static int try_lseek(int fd, long bytes, long lines)
89 // Read from end to find enough lines, then output them.
92 while (lines && pos) {
113 else if (list->data[offset] == '\n' && !++lines) {
134 long bytes = TT.bytes, lines = TT.lines local
    [all...]

Completed in 356 milliseconds

12 3 4 5 6 7 8 91011>>