Home
last modified time | relevance | path

Searched full:rss (Results 1 – 25 of 316) sorted by relevance

12345678910>>...13

/external/perfetto/test/trace_processor/diff_tests/parsing/
Dtests_rss_stats.py36 90,"mem.rss.file",3,"kthreadd_child",9.000000
37 99,"mem.rss.file",3,"kthreadd_child",10.000000
38 100,"mem.rss.file",10,"process",1000.000000
39 101,"mem.rss.file",10,"process",900.000000
54 100,"mem.rss.file",3,"kernel_thread",10.000000
55 100,"mem.rss.file",10,"parent_process",100.000000
56 102,"mem.rss.file",4,"kernel_thread2",20.000000
57 102,"mem.rss.file",11,"child_process",90.000000
58 104,"mem.rss.file",11,"child_process",10.000000
59 105,"mem.rss.file",10,"parent_process",95.000000
[all …]
Doom_query_test.sql16 /* Create the file RSS table. */
25 WHERE process_counter_track.name IN ("mem.rss.file", "rss_stat.mm_filepages");
27 /* Create the anon RSS table. */
36 WHERE process_counter_track.name IN ("mem.rss.anon", "rss_stat.mm_anonpages");
54 /* For each span, compute the RSS (for a given upid) for each category of oom_adj */
67 /* Convert the raw RSS values to the change in RSS (for a given upid) over time */
/external/openthread/tests/scripts/expect/
Dcli-macfilter.exp99 send "macfilter rss\n"
102 send "macfilter rss add-lqi * 2\n"
105 send "macfilter rss add-lqi aabbccddeeff0011 3\n"
108 send "macfilter rss\n"
109 expect -re {aabbccddeeff0011 : rss -?\d+ \(lqi 3\)}
110 expect -re {Default rss: -?\d+ \(lqi 2\)}
116 expect -re {aabbccddeeff0011 : rss -?\d+ \(lqi 3\)}
117 expect -re {Default rss : -?\d+ \(lqi 2\)}
120 send "macfilter rss remove *\n"
123 send "macfilter rss remove aabbccddeeff0011\n"
[all …]
/external/openthread/tests/unit/
Dtest_link_quality.cpp59 // This struct contains RSS values and test data for checking link quality info calss.
62 const int8_t *mRssList; // Array of RSS values.
63 size_t mRssListSize; // Size of RSS list.
69 // Check and verify the raw average RSS value to match the value from GetAverage().
92 int8_t rss, ave, min, max; in TestLinkQualityData() local
106 rss = aRssData.mRssList[i]; in TestLinkQualityData()
107 min = MIN_RSS(rss, min); in TestLinkQualityData()
108 max = MAX_RSS(rss, max); in TestLinkQualityData()
109 linkInfo.AddRss(rss); in TestLinkQualityData()
110 VerifyOrQuit(linkInfo.GetLastRss() == rss); in TestLinkQualityData()
[all …]
/external/libcups/notifier/
Drss.c2 * RSS notifier for CUPS.
27 typedef struct _cups_rss_s /**** RSS message data ****/
41 static char *rss_password; /* Password for remote RSS */
49 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,
71 char scheme[32], /* URI scheme ("rss") */ in main()
72 username[256], /* Username for remote RSS */ in main()
73 host[1024], /* Hostname for remote RSS */ in main()
74 resource[1024], /* RSS file */ in main()
[all …]
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
137 # rss
140 rss: rss.o ../cups/$(LIBCUPS) target
142 $(LD_CC) $(ALL_LDFLAGS) -o rss rss.o $(LINKCUPS)
/external/compiler-rt/test/asan/TestCases/Linux/
Dnohugepage_test.cc60 s = strstr(s, "Rss:"); in ReadShadowRss()
75 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()
[all …]
/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 …]
/external/ltp/testcases/kernel/controllers/memcg/functional/
Dmemcg_stat_rss.sh20 test_mem_stat "--mmap-anon" $PAGESIZES $PAGESIZES "rss" $PAGESIZES $PAGESIZES false
25 test_mem_stat "--mmap-file" $PAGESIZE $PAGESIZE "rss" 0 0 false
30 test_mem_stat "--shm -k 3" $PAGESIZE $PAGESIZE "rss" 0 0 false
36 $PAGESIZES $((PAGESIZES * 3)) "rss" $PAGESIZES $PAGESIZES false
41 test_mem_stat "--mmap-lock1" $PAGESIZES $PAGESIZES "rss" $PAGESIZES $PAGESIZES false
46 test_mem_stat "--mmap-anon" $PAGESIZES $PAGESIZES "rss" $PAGESIZES $PAGESIZES true
51 test_mem_stat "--mmap-file" $PAGESIZE $PAGESIZE "rss" 0 0 true
56 test_mem_stat "--shm -k 8" $PAGESIZE $PAGESIZE "rss" 0 0 true
62 $PAGESIZES $((PAGESIZES * 3)) "rss" $PAGESIZES $PAGESIZES true
67 test_mem_stat "--mmap-lock1" $PAGESIZES $PAGESIZES "rss" $PAGESIZES $PAGESIZES true
/external/perfetto/src/trace_processor/importers/ftrace/
Drss_stat_tracker.cc34 rss_members_.emplace_back(context->storage->InternString("mem.rss.file")); in RssStatTracker()
35 rss_members_.emplace_back(context->storage->InternString("mem.rss.anon")); in RssStatTracker()
37 rss_members_.emplace_back(context->storage->InternString("mem.rss.shmem")); in RssStatTracker()
54 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 = std::make_optional(static_cast<bool>(rss.curr())); in ParseRssStat()
61 if (rss.has_mm_id()) { in ParseRssStat()
62 mm_id = std::make_optional(rss.mm_id()); in ParseRssStat()
[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/openthread/src/core/thread/
Dlink_quality.hpp100 * This class implements a Received Signal Strength (RSS) averager.
117 …* This method indicates whether the averager contains an average (i.e., at least one RSS value has…
119 * @retval true If the average value is available (at least one RSS value has been added).
120 * @retval false Averager is empty (no RSS value added yet).
126 * This method adds a received signal strength (RSS) value to the average.
129 …* The value of RSS is capped at 0dBm (i.e., for any given RSS value higher than 0dBm, 0dBm is used…
133 * @retval kErrorNone New RSS value added to average successfully.
157 …* This method converts the current average RSS value to a human-readable string (e.g., "-80.375").…
160 * @returns An `InfoString` object containing the string representation of average RSS.
168 * current average and the number of added RSS values (up to a 8).
[all …]
/external/perfetto/src/trace_processor/metrics/sql/android/
Dprocess_mem.sql18 -- Anon RSS
21 'counter_name', 'mem.rss.anon');
23 -- File RSS
26 'counter_name', 'mem.rss.file');
30 'counter_name', 'mem.rss.shmem');
40 -- Anon RSS + Swap
52 -- Anon RSS + file RSS + Swap
60 -- RSS + Swap
Dandroid_camera.sql17 -- This gives us access to the RSS breakdowns.
25 -- RSS of GCA.
37 -- RSS of camera HAL.
49 -- RSS of cameraserver.
61 -- RSS of GCA + HAL.
66 -- RSS of GCA + HAL + cameraserver.
71 -- RSS of GCA + HAL + cameraserver + DMA.
/external/linux-kselftest/tools/testing/selftests/net/
Dtoeplitz.sh4 # extended toeplitz test: test rxhash plus, optionally, either (1) rss mapping
5 # from rxhash to rx queue ('-rss') or (2) rps mapping from rxhash to cpu
12 # [(-rss -irq_prefix <irq-pattern-prefix>)|(-rps <rps_map>)]
31 # Return the number of rxqs among which RSS is configured to spread packets.
32 # This is determined by reading the RSS indirection table using ethtool.
51 # Consider only as many queues as RSS actually uses. We assume that
52 # if RSS_CFG_NUM_RXQS=N, then RSS uses rxqs 0-(N-1).
130 elif [[ "$1" = "-rss" ]]; then
140 [(-rss -irq_prefix <irq-pattern-prefix>)|(-rps <rps_map>)]"
171 # which breaks the PACKET_FANOUT_CPU identification of RSS decisions.
/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/llvm/lib/Target/Hexagon/
DHexagonInstrInfoV5.td18 //Rdd[+]=vrmpybsu(Rss,Rtt)
23 //Rdd[+]=vrmpybu(Rss,Rtt)
41 // Rd=vaddhub(Rss,Rtt):sat
127 def S5_popcountp : ALU64_rr<(outs IntRegs:$Rd), (ins DoubleRegs:$Rss),
128 "$Rd = popcount($Rss)",
129 [(set I32:$Rd, (HexagonPOPCOUNT I64:$Rss))], "", S_2op_tc_2_SLOT23>,
132 bits<5> Rss;
139 let Inst{20-16} = Rss;
438 // Rss <= Rtt -> Rtt >= Rss.
510 // Rss <= Rtt -> Rtt >= Rss.
[all …]
/external/pigweed/pw_fuzzer/
Ddocs.rst214 #2 INITED cov: 2 ft: 3 corp: 1/1b exec/s: 0 rss: 27Mb
215 …#4 NEW cov: 3 ft: 4 corp: 2/3b lim: 4 exec/s: 0 rss: 27Mb L: 2/2 MS: 2 ShuffleBytes-Insert…
216 …#11 NEW cov: 7 ft: 8 corp: 3/7b lim: 4 exec/s: 0 rss: 27Mb L: 4/4 MS: 2 EraseBytes-CrossOve…
217 #27 REDUCE cov: 7 ft: 8 corp: 3/6b lim: 4 exec/s: 0 rss: 27Mb L: 3/3 MS: 1 EraseBytes-
218 …#29 REDUCE cov: 7 ft: 8 corp: 3/5b lim: 4 exec/s: 0 rss: 27Mb L: 2/2 MS: 2 ChangeBit-EraseByte…
219 …#445 REDUCE cov: 9 ft: 10 corp: 4/13b lim: 8 exec/s: 0 rss: 27Mb L: 8/8 MS: 1 InsertRepeatedByt…
220 …#12104 NEW cov: 11 ft: 12 corp: 5/24b lim: 122 exec/s: 0 rss: 28Mb L: 11/11 MS: 4 CMP-InsertBy…
221 …#12321 NEW cov: 12 ft: 13 corp: 6/31b lim: 122 exec/s: 0 rss: 28Mb L: 7/11 MS: 2 CopyPart-Eras…
222 …#12459 REDUCE cov: 12 ft: 13 corp: 6/28b lim: 122 exec/s: 0 rss: 28Mb L: 8/8 MS: 3 CMP-InsertByte…
223 …#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/libxml2/result/valid/
Drss.xml.err1 ./test/valid/rss.xml:177: element rss: validity error : Element rss does not carry attribute version
2 </rss>
Drss.xml.err.rdr1 ./test/valid/rss.xml:177: element rss: validity error : Element rss does not carry attribute version
2 </rss>
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/
Dtimer_test.cpp26 // CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of page faults.
35 long RSS() const override { return 360L; } in RSS() function in spvtools::utils::__anon9f55bfb60111::MockTimer
40 // same as fixed CPU/WALL/USR/SYS time, RSS delta, and the delta of the number
66 // the fixed CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of
83 // fixed CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of page
96 long RSS() const override { return count_stop_ * 360L; } in RSS() function in spvtools::utils::__anon9f55bfb60111::MockCumulativeTimer
107 // cumulative CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of
/external/deqp-deps/SPIRV-Tools/test/
Dtimer_test.cpp26 // CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of page faults.
35 long RSS() const override { return 360L; } in RSS() function in spvtools::utils::__anonec543c090111::MockTimer
40 // same as fixed CPU/WALL/USR/SYS time, RSS delta, and the delta of the number
66 // the fixed CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of
83 // fixed CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of page
96 long RSS() const override { return count_stop_ * 360L; } in RSS() function in spvtools::utils::__anonec543c090111::MockCumulativeTimer
107 // cumulative CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of
/external/swiftshader/third_party/SPIRV-Tools/test/
Dtimer_test.cpp26 // CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of page faults.
35 long RSS() const override { return 360L; } in RSS() function in spvtools::utils::__anon6068c6030111::MockTimer
40 // same as fixed CPU/WALL/USR/SYS time, RSS delta, and the delta of the number
66 // the fixed CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of
83 // fixed CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of page
96 long RSS() const override { return count_stop_ * 360L; } in RSS() function in spvtools::utils::__anon6068c6030111::MockCumulativeTimer
107 // cumulative CPU/WALL/USR/SYS time, RSS delta, and the delta of the number of
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/_includes/article/footer/
Dsubscribe.html1 {%- assign _paths_rss = site.paths.rss | default: site.data.variables.default.paths.rss -%}
6 <div class="subscribe"><i class="fas fa-rss"></i> <a type="application/rss+xml" href="{{ _paths_rss…

12345678910>>...13