Home
last modified time | relevance | path

Searched full:summary (Results 1 – 25 of 5693) sorted by relevance

12345678910>>...228

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dsymbol-summary.h1 /* Callgraph summary data structure.
34 m_allocator ("function summary" PASS_MEM_STAT) in function_summary_base()
80 /* Internal summary insertion hook pointer. */
82 /* Internal summary removal hook pointer. */
84 /* Internal summary duplication hook pointer. */
86 /* Symbol table the summary is registered to. */
93 /* Return true when the summary uses GGC memory for allocation. */
119 /* Function summary is a helper class that is used to associate a data structure
121 create a temporary pass-related structures. The summary class registers
123 A user of a summary class can ovewrite virtual methods than are triggered by
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dsymbol-summary.h1 /* Callgraph summary data structure.
34 m_allocator ("function summary" PASS_MEM_STAT) in function_summary_base()
80 /* Internal summary insertion hook pointer. */
82 /* Internal summary removal hook pointer. */
84 /* Internal summary duplication hook pointer. */
86 /* Symbol table the summary is registered to. */
93 /* Return true when the summary uses GGC memory for allocation. */
119 /* Function summary is a helper class that is used to associate a data structure
121 create a temporary pass-related structures. The summary class registers
123 A user of a summary class can ovewrite virtual methods than are triggered by
[all …]
/OK3568_Linux_fs/kernel/fs/jffs2/
H A Dsummary.c30 c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); in jffs2_sum_init()
32 if (!c->summary) { in jffs2_sum_init()
33 JFFS2_WARNING("Can't allocate memory for summary information!\n"); in jffs2_sum_init()
37 c->summary->sum_buf = kmalloc(sum_size, GFP_KERNEL); in jffs2_sum_init()
39 if (!c->summary->sum_buf) { in jffs2_sum_init()
40 JFFS2_WARNING("Can't allocate buffer for writing out summary information!\n"); in jffs2_sum_init()
41 kfree(c->summary); in jffs2_sum_init()
54 jffs2_sum_disable_collecting(c->summary); in jffs2_sum_exit()
56 kfree(c->summary->sum_buf); in jffs2_sum_exit()
57 c->summary->sum_buf = NULL; in jffs2_sum_exit()
[all …]
H A Dsummary.h16 /* Limit summary size to 64KiB so that we can kmalloc it. If the summary
17 is larger than that, we have to just ditch it and avoid using summary
38 /* Summary structures used on flash */
91 /* Summary structures used in the memory */
149 /* Summary related information stored in superblock */
153 uint32_t sum_size; /* collected summary information for nextblock */
159 jint32_t *sum_buf; /* buffer for writing out summary */
162 /* Summary marker is stored at the end of every sumarized erase block */
166 jint32_t offset; /* offset of the summary node in the jeb */
172 #ifdef CONFIG_JFFS2_SUMMARY /* SUMMARY SUPPORT ENABLED */
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/rcutorture/bin/
H A Dparse-console.sh125 summary=""
129 summary="$summary Badness: $n_badness"
134 summary="$summary Warnings: $n_warn"
139 summary="$summary Bugs: $n_bugs"
144 summary="$summary Call Traces: $n_calltrace"
149 summary="$summary lockdep: $n_badness"
154 summary="$summary Stalls: $n_stalls"
159 summary="$summary Starves: $n_starves"
161 print_warning Summary: $summary
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/packagegroups/
H A Dpackagegroup-base.bb1 SUMMARY = "Merge machine and distro options to create a basic machine task/package"
127 SUMMARY:packagegroup-distro-base = "${DISTRO} extras"
135 SUMMARY:packagegroup-machine-base = "${MACHINE} extras"
136 SUMMARY:packagegroup-machine-base = "Extra packages required to fully support ${MACHINE} hardware"
140 SUMMARY:packagegroup-base-keyboard = "Keyboard support"
144 SUMMARY:packagegroup-base-pci = "PCI bus support"
148 SUMMARY:packagegroup-base-acpi = "ACPI support"
152 SUMMARY:packagegroup-base-apm = "APM support"
157 SUMMARY:packagegroup-base-ext2 = "ext2 filesystem support"
166 SUMMARY:packagegroup-base-vfat = "FAT filesystem support"
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/alsa/
H A Dalsa-utils.inc1 SUMMARY = "ALSA sound utilities"
78 SUMMARY:alsa-utils-alsabat = "Command-line sound tester for ALSA sound card driver"
79 SUMMARY:alsa-utils-alsatplg = "Converts topology text files into binary format for kernel"
80 SUMMARY:alsa-utils-aplay = "Play (and record) sound files using ALSA"
81 SUMMARY:alsa-utils-amixer = "Command-line control for ALSA mixer and settings"
82 SUMMARY:alsa-utils-alsamixer = "ncurses-based control for ALSA mixer and settings"
83 SUMMARY:alsa-utils-speakertest = "ALSA surround speaker test utility"
84 SUMMARY:alsa-utils-midi = "Miscellaneous MIDI utilities for ALSA"
85 SUMMARY:alsa-utils-aconnect = "ALSA sequencer connection manager"
86 SUMMARY:alsa-utils-aseqnet = "Network client/server for ALSA sequencer"
[all …]
/OK3568_Linux_fs/kernel/fs/xfs/
H A Dxfs_rtalloc.c24 * Read and return the summary information for a given extent size,
26 * Keeps track of a current summary block, so we don't keep reading
35 xfs_buf_t **rbpp, /* in/out: summary block buffer */ in xfs_rtget_summary()
36 xfs_fsblock_t *rsb, /* in/out: summary block number */ in xfs_rtget_summary()
37 xfs_suminfo_t *sum) /* out: summary info for this block */ in xfs_rtget_summary()
53 xfs_buf_t **rbpp, /* in/out: summary block buffer */ in xfs_rtany_summary()
54 xfs_fsblock_t *rsb, /* in/out: summary block number */ in xfs_rtany_summary()
59 xfs_suminfo_t sum; /* summary data */ in xfs_rtany_summary()
70 * Get one summary datum. in xfs_rtany_summary()
97 * Copy and transform the summary file, given the old and new
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/
H A Dpython3-manifest.json16 # fill up the SUMMARY section as well, the script should handle all the rest.
24 # "summary": "Python Web Browser support"}
33 # "summary": "Python Web Browser support"}
93 "summary": "Python test suite", string
107 "summary": "Python automated Python 2 to 3 code translator", string
118 "summary": "Python Asynchronous I/O", string
136 "summary": "Python Audio Handling", string
156 "summary": "Python codec", string
169 "summary": "Python bytecode compilation support", string
185 "summary": "Python high-level compression support", string
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/tl/backend/
H A Dmali_kbase_timeline_jm.c34 struct kbase_tlstream *summary = in kbase_create_timeline_objects() local
41 __kbase_tlstream_tl_new_lpu(summary, lpu, lpu_id, *lpu); in kbase_create_timeline_objects()
46 __kbase_tlstream_tl_new_as(summary, &kbdev->as[as_nr], as_nr); in kbase_create_timeline_objects()
49 __kbase_tlstream_tl_new_gpu(summary, in kbase_create_timeline_objects()
57 __kbase_tlstream_tl_lifelink_lpu_gpu(summary, lpu, kbdev); in kbase_create_timeline_objects()
61 __kbase_tlstream_tl_lifelink_as_gpu(summary, in kbase_create_timeline_objects()
73 __kbase_tlstream_tl_new_ctx(summary, in kbase_create_timeline_objects()
80 * This ensures we can't fire both summary and normal tracepoints for in kbase_create_timeline_objects()
84 * constructed the summary stream tracepoints, but before we reset in kbase_create_timeline_objects()
91 /* Static object are placed into summary packet that needs to be in kbase_create_timeline_objects()
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/libpcre/
H A Dlibpcre_8.45.bb5 SUMMARY = "Perl Compatible Regular Expressions"
41 SUMMARY:libpcrecpp = "${SUMMARY} - C++ wrapper functions"
42 SUMMARY:libpcreposix = "${SUMMARY} - C wrapper functions based on the POSIX regex API"
43 SUMMARY:pcregrep = "grep utility that uses perl 5 compatible regexes"
44 SUMMARY:pcregrep-doc = "grep utility that uses perl 5 compatible regexes - docs"
45 SUMMARY:pcretest = "program for testing Perl-comatible regular expressions"
46 SUMMARY:pcretest-doc = "program for testing Perl-comatible regular expressions - docs"
/OK3568_Linux_fs/kernel/tools/power/pm-graph/
H A Dsleepgraph.8127 for duration: suspend-{date}-{time}-Nm. When the multitest run is done, the \fI-summary\fR
128 command is called automatically to create summary html files for all the data (unless you
130 or summary html files. You can then run the tool again at a later time with \fI-summary\fR
139 by running \fI-summary\fR and \fI-genhtml\fR.
193 \fB-summary \fIindir\fR
194 Create a set of summary pages for all tests in \fIindir\fR recursively.
195 Creates summary.html, summary-issues.html, and summary-devices.html in the current folder.
196 summary.html is a table of tests with relevant info sorted by kernel/host/mode,
199 summary-issues.html is a list of kernel issues found in dmesg from all the tests.
200 summary-devices.html is a list of devices and times from all the tests.
[all …]
H A DREADME214 individual test data and a set of summary pages in the root. The summary.html
216 summary-issue.html and summary-devices.html files include data taken from
220 summary.html
221 summary-issues.html
222 summary-devices.html
245 run is done, the -summary command is called automatically to create summary
247 speed up the testing by not creating timelines or summary html files. You
248 can then run the tool again at a later time with -summary and -genhtml to
252 Run the test and capture the trace logs, but skip the timeline and summary
254 copy the data to a faster host machine and run -summary -genhtml to
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/
H A Dgcc-runtime.inc3 SUMMARY = "Runtime libraries from GCC"
202 SUMMARY:libg2c = "Companion runtime library for g77"
208 SUMMARY:libg2c-dev = "Companion runtime library for g77 - development files"
211 SUMMARY:libstdc++ = "GNU standard C++ library"
218 SUMMARY:libstdc++-dev = "GNU standard C++ library - development files"
223 SUMMARY:libstdc++-staticdev = "GNU standard C++ library - static development files"
226 SUMMARY:libstdc++-precompile-dev = "GNU standard C++ library - precompiled header files"
229 SUMMARY:libssp = "GNU stack smashing protection library"
236 SUMMARY:libssp-dev = "GNU stack smashing protection library - development files"
238 SUMMARY:libssp-staticdev = "GNU stack smashing protection library - static development files"
[all …]
/OK3568_Linux_fs/kernel/net/rxrpc/
H A Dinput.c40 struct rxrpc_ack_summary *summary, in rxrpc_congestion_management() argument
48 summary->flight_size = in rxrpc_congestion_management()
49 (call->tx_top - call->tx_hard_ack) - summary->nr_acks; in rxrpc_congestion_management()
52 summary->retrans_timeo = true; in rxrpc_congestion_management()
54 summary->flight_size / 2, 2); in rxrpc_congestion_management()
64 cumulative_acks += summary->nr_new_acks; in rxrpc_congestion_management()
65 cumulative_acks += summary->nr_rot_new_acks; in rxrpc_congestion_management()
69 summary->mode = call->cong_mode; in rxrpc_congestion_management()
70 summary->cwnd = call->cong_cwnd; in rxrpc_congestion_management()
71 summary->ssthresh = call->cong_ssthresh; in rxrpc_congestion_management()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/manual/
H A Dbsp-hw.json33 "summary": "boot_and_install_from_USB" string
59 "summary": "live_boot_from_USB" string
89 "summary": "switch_among_multi_applications_and_desktop" string
111 "summary": "connman_offline_mode_in_connman-gnome" string
141 "summary": "check_CPU_utilization_after_standby" string
167 "summary": "Add_multiple_files_in_media_player" string
193 "summary": "video_-_libva_check_(ogg_video_play)" string
215 "summary": "media_player_-_play_video_(ogv)" string
245 "summary": "media_player_-_stop/play_button_(ogv)" string
271 "summary": "audio_-_play_(ogg)_with_HDMI" string
[all …]
H A Dtoaster-managed-mode.json25 …"action": "Check that by default the following columns are shown: Layer, Summary, Revision, Depend…
45 "summary": "All_layers:_default_view" string
83 "summary": "All_layers:_Add/delete_layers" string
117 "summary": "All_targets:_Default_view" string
151 "summary": "Configuration_variables:_default_view" string
213 "summary": "Configuration_variables:_Test_UI_elements" string
247 "summary": "Project_builds:_Default_view" string
285 "summary": "Project_builds:_Sorting_the_project_builds_table" string
319 "summary": "Project_builds:_customize_the_columns_of_the_table" string
353 "summary": "Project_builds:_filter_the_contents_of_the_table" string
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/initrdscripts/
H A Dinitramfs-framework_1.0.bb1 SUMMARY = "Modular initramfs system"
84 SUMMARY:initramfs-module-exec = "initramfs support for easy execution of applications"
88 SUMMARY:initramfs-module-mdev = "initramfs support for mdev"
92 SUMMARY:initramfs-module-udev = "initramfs support for udev"
96 SUMMARY:initramfs-module-e2fs = "initramfs support for ext4/ext3/ext2 filesystems"
100 SUMMARY:initramfs-module-nfsrootfs = "initramfs support for locating and mounting the root partitio…
104 SUMMARY:initramfs-module-rootfs = "initramfs support for locating and mounting the root partition"
108 SUMMARY:initramfs-module-debug = "initramfs dynamic debug support"
112 SUMMARY:initramfs-module-lvm = "initramfs lvm rootfs support"
116 SUMMARY:initramfs-module-overlayroot = "initramfs support for mounting a RW overlay on top of a RO …
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/gdb/
H A DFree-Software.html28 <link href="Summary.html#Summary" rel="up" title="Summary">
30 <link href="Summary.html#Summary" rel="previous" title="Summary">
33 a.summary-letter {text-decoration: none}
67 …" rel="next">Free Documentation</a>, Up: <a href="Summary.html#Summary" accesskey="u" rel="up">Sum…
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/gdb/
H A DFree-Software.html28 <link href="Summary.html#Summary" rel="up" title="Summary">
30 <link href="Summary.html#Summary" rel="previous" title="Summary">
33 a.summary-letter {text-decoration: none}
67 …" rel="next">Free Documentation</a>, Up: <a href="Summary.html#Summary" accesskey="u" rel="up">Sum…
/OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath11k/
H A Dspectral.c474 struct spectral_summary_fft_report *summary, in ath11k_spectral_pull_summary() argument
477 report->timestamp = __le32_to_cpu(summary->timestamp); in ath11k_spectral_pull_summary()
479 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
481 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
483 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
485 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
487 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
489 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
491 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
493 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
[all …]
/OK3568_Linux_fs/external/xserver/test/scripts/
H A Drun-piglit.sh47 SHORT_SUMMARY=$PIGLIT_RESULTS_DIR/summary
48 LONG_SUMMARY=$PIGLIT_RESULTS_DIR/long-summary
49 $PIGLIT_DIR/piglit summary console -s $PIGLIT_RESULTS_DIR > $SHORT_SUMMARY
50 $PIGLIT_DIR/piglit summary console $PIGLIT_RESULTS_DIR > $LONG_SUMMARY
52 # Write the short summary to make check's log file.
55 # Parse the piglit summary to decide on our exit status.
69 $PIGLIT_DIR/piglit summary html \
/OK3568_Linux_fs/kernel/Documentation/translations/ja_JP/
H A DSubmittingPatches471 Subject: [PATCH 001/123] subsystem: summary phrase
499 電子メールのサブジェクトの「summary phrase」はそのパッチの概要を正確
500 に表現しなければなりません。「summary phrase」をファイル名にしてはい
501 けません。パッチシリーズ中でそれぞれのパッチは同じ「summary phrase」を
505 あなたの電子メールの「summary phrase」がそのパッチにとって世界で唯一の識別子に
506 なるように心がけてください。「summary phrase」は git のチェンジログの中へ
507 ずっと伝播していきます。「summary phrase」は、開発者が後でパッチを参照する
509 人々はそのパッチに関連した議論を読むために「summary phrase」を使って google で
514 これらの理由のため、「summary phrase」はなぜパッチが必要であるか、パッチが何を
516summary phrase」は簡潔であり説明的である表現を目指しつつ、うまく
[all …]
/OK3568_Linux_fs/u-boot/fs/yaffs2/
H A Dyaffs_summary.c22 * The summary could also be used during gc.
33 * The summary is built up in an array of summary tags.
35 * A summary header is written as the first part of each chunk of summary data.
36 * The summary header must match or the summary is rejected.
39 /* Summary tags don't need the sequence number because that is redundant. */
46 /* Summary header */
76 int chunks_used; /* Number of chunks used by summary */ in yaffs_summary_init()
266 /* Time to write out the summary */ in yaffs_summary_add()
/OK3568_Linux_fs/kernel/tools/power/x86/turbostat/
H A Dturbostat.855summary plus the specified cpu-set. If cpu-set is the string "core", then the system summary plus…
81 \fB--Summary\fP limits output to a 1-line System Summary for each interval.
91summary line. The system summary line has a '-' in the columns for the Package, Core, and CPU. T…
94 …led by default, and is enabled with "--enable usec", or --debug. On the summary row, usec refers …
95 …can be enabled with "--enable Time_Of_Day_Seconds" or "--debug". On the summary row, Time_Of_Day_…
103 …f interrupts serviced across all CPUs. turbostat parses /proc/interrupts to generate this summary.
105 …d the C1, C2, C3 idle state during the measurement interval. The system summary line shows the su…
106 …The residency percentage that Linux requested C1, C2, C3.... The system summary is the average of…
117 …al that RAPL throttling was active on the Package. Note that the system summary is the sum of the…

12345678910>>...228