Home
last modified time | relevance | path

Searched refs:rss (Results 1 – 25 of 81) sorted by relevance

1234

/external/compiler-rt/test/asan/TestCases/Linux/
Dnohugepage_test.cc75 long rss[5]; in main() local
76 rss[0] = ReadShadowRss(); in main()
81 rss[1] = ReadShadowRss(); in main()
86 rss[2] = ReadShadowRss(); in main()
91 rss[3] = ReadShadowRss(); in main()
95 rss[4] = ReadShadowRss(); in main()
99 assert(rss[i] > 0); in main()
100 assert(rss[i+1] >= rss[i]); in main()
101 long diff = rss[i+1] / rss[i]; in main()
103 diff < 10 ? "SMALL" : "LARGE", rss[i], rss[i + 1]); in main()
/external/catch2/include/internal/
Dcatch_tostring.h104 ReusableStringStream rss; in convert() local
107 rss.operator<<(value); in convert()
108 return rss.str(); in convert()
314 ReusableStringStream rss;
315 rss << "{ ";
317 rss << ::Catch::Detail::stringify(*first);
319 rss << ", " << ::Catch::Detail::stringify(*first);
321 rss << " }";
322 return rss.str();
371 ReusableStringStream rss;
[all …]
Dcatch_tostring.cpp59 ReusableStringStream rss; in rawMemoryToString() local
60 rss << "0x" << std::setfill('0') << std::hex; in rawMemoryToString()
62 rss << std::setw(2) << static_cast<unsigned>(bytes[i]); in rawMemoryToString()
63 return rss.str(); in rawMemoryToString()
74 ReusableStringStream rss; in fpToString() local
75 rss << std::setprecision( precision ) in fpToString()
78 std::string d = rss.str(); in fpToString()
185 ReusableStringStream rss; in convert() local
186 rss << value; in convert()
188 rss << " (0x" << std::hex << value << ')'; in convert()
[all …]
Dcatch_to_string.hpp21 ReusableStringStream rss; in to_string()
22 rss << t; in to_string()
23 return rss.str(); in to_string()
Dcatch_approx.cpp47 ReusableStringStream rss; in toString() local
48 rss << "Approx( " << ::Catch::Detail::stringify( m_value ) << " )"; in toString()
49 return rss.str(); in toString()
Dcatch_assertionresult.cpp20 ReusableStringStream rss; in reconstructExpression() local
21 rss << lazyExpression; in reconstructExpression()
22 reconstructedExpression = rss.str(); in reconstructExpression()
Dcatch_xmlwriter.h84 ReusableStringStream rss; in writeAttribute() local
85 rss << attribute; in writeAttribute()
86 return writeAttribute( name, rss.str() ); in writeAttribute()
/external/perfetto/test/trace_processor/parsing/
Drss_stat_mm_id_clone.out2 100,"mem.rss.file",10,"parent_process",100.000000
3 100,"mem.rss.file",2,"kthreadd",10.000000
4 102,"mem.rss.file",2,"kthreadd",20.000000
5 102,"mem.rss.file",11,"child_process",90.000000
6 104,"mem.rss.file",11,"child_process",10.000000
7 105,"mem.rss.file",10,"parent_process",95.000000
8 107,"mem.rss.file",10,"parent_process",105.000000
9 108,"mem.rss.file",10,"parent_process",110.000000
Drss_stat_legacy.out2 90,"mem.rss.file",2,"kthreadd",9.000000
3 91,"mem.rss.file",2,"kthreadd",900.000000
4 99,"mem.rss.file",10,"process",10.000000
5 100,"mem.rss.file",10,"process",1000.000000
6 101,"mem.rss.file",2,"kthreadd",900.000000
Drss_stat_mm_id.out2 90,"mem.rss.file",2,"kthreadd",9.000000
3 99,"mem.rss.file",2,"kthreadd",10.000000
4 100,"mem.rss.file",10,"process",1000.000000
5 101,"mem.rss.file",10,"process",900.000000
Drss_stat_mm_id_reuse.out2 100,"mem.rss.file",10,"parent_process",100.000000
3 103,"mem.rss.file",10,"new_process",10.000000
/external/perfetto/src/trace_processor/importers/ftrace/
Drss_stat_tracker.cc54 protos::pbzero::RssStatFtraceEvent::Decoder rss(blob.data, blob.size); in ParseRssStat() local
56 member = static_cast<uint32_t>(rss.member()); in ParseRssStat()
57 size = rss.size(); in ParseRssStat()
58 if (rss.has_curr()) { in ParseRssStat()
59 curr = base::make_optional(static_cast<bool>(rss.curr())); in ParseRssStat()
61 if (rss.has_mm_id()) { in ParseRssStat()
62 mm_id = base::make_optional(rss.mm_id()); in ParseRssStat()
67 protos::pbzero::RssStatThrottledFtraceEvent::Decoder rss(blob.data, in ParseRssStat() local
70 member = static_cast<uint32_t>(rss.member()); in ParseRssStat()
71 size = rss.size(); in ParseRssStat()
[all …]
/external/libcups/notifier/
DMakefile13 NOTIFIERS = $(DBUS_NOTIFIER) mailto rss
15 OBJS = dbus.o mailto.o rss.o testnotify.o
59 $(INSTALL_DIR) -m 775 -g $(CUPS_GROUP) $(CACHEDIR)/rss
105 -$(RMDIR) $(CACHEDIR)/rss
140 rss: rss.o ../cups/$(LIBCUPS) target
142 $(LD_CC) $(ALL_LDFLAGS) -o rss rss.o $(LINKCUPS)
Drss.c49 static void delete_message(_cups_rss_t *rss);
50 static void load_rss(cups_array_t *rss, const char *filename);
55 static int save_rss(cups_array_t *rss, const char *filename,
94 cups_array_t *rss; /* RSS message array */ in main() local
134 rss = cupsArrayNew((cups_array_func_t)compare_rss, NULL); in main()
219 load_rss(rss, filename); in main()
221 changed = cupsArrayCount(rss) == 0; in main()
241 if (save_rss(rss, newname, baseurl)) in main()
352 cupsArrayAdd(rss, msg); in main()
360 while (cupsArrayCount(rss) > max_events) in main()
[all …]
/external/oss-fuzz/infra/cifuzz/test_data/
Dexample_crash_fuzzer_output.txt6 INFO: seed corpus: files: 7 min: 1264b max: 46328b total: 136996b rss: 36Mb
7 #8 INITED cov: 265 ft: 523 corp: 7/133Kb exec/s: 0 rss: 43Mb
8 #10 NEW cov: 266 ft: 538 corp: 8/147Kb lim: 46328 exec/s: 0 rss: 44Mb L: 13929/46328 MS: 2 Chang…
9 #12 NEW cov: 270 ft: 550 corp: 9/192Kb lim: 46328 exec/s: 0 rss: 44Mb L: 46328/46328 MS: 2 Shuff…
10 #14 NEW cov: 270 ft: 557 corp: 10/201Kb lim: 46328 exec/s: 0 rss: 45Mb L: 9103/46328 MS: 2 Chang…
11 #15 NEW cov: 270 ft: 565 corp: 11/218Kb lim: 46328 exec/s: 0 rss: 45Mb L: 16991/46328 MS: 1 Inse…
12 #21 NEW cov: 272 ft: 568 corp: 12/227Kb lim: 46328 exec/s: 0 rss: 45Mb L: 9132/46328 MS: 1 Inser…
13 #25 NEW cov: 275 ft: 575 corp: 13/236Kb lim: 46328 exec/s: 0 rss: 45Mb L: 9262/46328 MS: 4 Chang…
14 #26 NEW cov: 280 ft: 602 corp: 14/244Kb lim: 46328 exec/s: 0 rss: 45Mb L: 9133/46328 MS: 1 Inser…
15 #44 NEW cov: 280 ft: 609 corp: 15/254Kb lim: 46328 exec/s: 0 rss: 45Mb L: 9290/46328 MS: 3 Chang…
[all …]
/external/catch2/include/reporters/
Dcatch_reporter_junit.cpp247 ReusableStringStream rss; in writeAssertion() local
249 rss << "FAILED" << ":\n"; in writeAssertion()
251 rss << " "; in writeAssertion()
252 rss << result.getExpressionInMacro(); in writeAssertion()
253 rss << '\n'; in writeAssertion()
256 rss << "with expansion:\n"; in writeAssertion()
257 rss << Column(result.getExpandedExpression()).indent(2) << '\n'; in writeAssertion()
260 rss << '\n'; in writeAssertion()
264 rss << result.getMessage() << '\n'; in writeAssertion()
267 rss << msg.message << '\n'; in writeAssertion()
[all …]
/external/libxml2/result/valid/
Drss.xml.err.rdr1 ./test/valid/rss.xml:177: element rss: validity error : Element rss does not carry attribute version
2 </rss>
Drss.xml.err1 ./test/valid/rss.xml:177: element rss: validity error : Element rss does not carry attribute version
2 </rss>
/external/compiler-rt/lib/tsan/rtl/
Dtsan_platform_linux.cc89 void FillProfileCallback(uptr p, uptr rss, bool file, in FillProfileCallback() argument
91 mem[MemTotal] += rss; in FillProfileCallback()
93 mem[MemShadow] += rss; in FillProfileCallback()
95 mem[MemMeta] += rss; in FillProfileCallback()
98 mem[MemHeap] += rss; in FillProfileCallback()
100 mem[file ? MemFile : MemMmap] += rss; in FillProfileCallback()
102 mem[file ? MemFile : MemMmap] += rss; in FillProfileCallback()
105 mem[file ? MemFile : MemMmap] += rss; in FillProfileCallback()
108 mem[MemTrace] += rss; in FillProfileCallback()
110 mem[MemOther] += rss; in FillProfileCallback()
/external/markdown/docs/extensions/
DRSS.txt18 >>> rss = markdown.markdown(text, ['rss'])
33 >>> rss = markdown.markdown(text, extensions = \
34 ... ['rss(URL=http://example.com,CREATOR=JOHN DOE,TITLE=My Document)']
/external/markdown/markdown/extensions/
Drss.py65 rss = etree.Element("rss")
66 rss.set("version", "2.0")
68 channel = etree.SubElement(rss, "channel")
109 return rss
/external/bcc/tests/python/
Dtest_free_bcc_memory.py19 rss = None
23 rss = line.split(b' ')[-2]
27 return [rss, unit]
/external/pigweed/pw_fuzzer/
Ddocs.rst171 #2 INITED cov: 2 ft: 3 corp: 1/1b exec/s: 0 rss: 27Mb
172 …#4 NEW cov: 3 ft: 4 corp: 2/3b lim: 4 exec/s: 0 rss: 27Mb L: 2/2 MS: 2 ShuffleBytes-Insert…
173 …#11 NEW cov: 7 ft: 8 corp: 3/7b lim: 4 exec/s: 0 rss: 27Mb L: 4/4 MS: 2 EraseBytes-CrossOve…
174 #27 REDUCE cov: 7 ft: 8 corp: 3/6b lim: 4 exec/s: 0 rss: 27Mb L: 3/3 MS: 1 EraseBytes-
175 …#29 REDUCE cov: 7 ft: 8 corp: 3/5b lim: 4 exec/s: 0 rss: 27Mb L: 2/2 MS: 2 ChangeBit-EraseByte…
176 …#445 REDUCE cov: 9 ft: 10 corp: 4/13b lim: 8 exec/s: 0 rss: 27Mb L: 8/8 MS: 1 InsertRepeatedByt…
177 …#12104 NEW cov: 11 ft: 12 corp: 5/24b lim: 122 exec/s: 0 rss: 28Mb L: 11/11 MS: 4 CMP-InsertBy…
178 …#12321 NEW cov: 12 ft: 13 corp: 6/31b lim: 122 exec/s: 0 rss: 28Mb L: 7/11 MS: 2 CopyPart-Eras…
179 …#12459 REDUCE cov: 12 ft: 13 corp: 6/28b lim: 122 exec/s: 0 rss: 28Mb L: 8/8 MS: 3 CMP-InsertByte…
180 …#12826 REDUCE cov: 12 ft: 13 corp: 6/26b lim: 122 exec/s: 0 rss: 28Mb L: 5/8 MS: 2 ShuffleBytes-E…
[all …]
/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/
DTestReferenceStringSearch.java136 ReferenceStringSearch rss = new ReferenceStringSearch() in checkNew() local
140 rss.searchForwards(range); in checkNew()
146 while (rss.searchForwards(range)) { in checkNew()
158 static DirectStringSearch rss = new DirectStringSearch().setCollator( field in TestReferenceStringSearch
167 rss.setKey(key).setTarget(bigText); in checkDirect()
169 rss.searchForwards(range); in checkDirect()
175 while (rss.searchForwards(range)) { in checkDirect()
/external/ltp/testcases/kernel/syscalls/ipc/shmctl/
Dshmctl04.c62 int shmid, size, rss, swap; in parse_proc_sysvipc() local
72 &shmid, &size, &rss, &swap) > 0) { in parse_proc_sysvipc()
74 shm_rss += rss/page_size; in parse_proc_sysvipc()

1234