/linux/Documentation/sphinx-static/ |
H A D | theme_overrides.css | 15 h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend { 43 .rst-content .highlight > pre { 48 .rst-content table.field-list th.field-name { 52 .rst-content table.field-list td.field-body { 59 /* content column 61 * RTD theme's default is 800px as max width for the content, but we have 65 .wy-nav-content{max-width: none; } 76 .rst-content table.docutils caption { text-align: left; font-size: 100%; } 84 caption, .wy-table caption, .rst-content table.field-list caption { 103 .rst-content [all...] |
/linux/tools/testing/ktest/examples/bootconfigs/ |
H A D | verify-functiongraph.sh | 8 content=`cat $file` 9 if [ "$content" != "$val" ]; then 10 echo "FAILED: $file has '$content', expected '$val'" 18 content=`cat $file | sed -ne "/^$val/p"` 19 if [ -z "$content" ]; then 41 content=`cat $file | sed -ne "/^[0 ]*$val/p"` 42 if [ -z "$content" ]; then
|
H A D | verify-tracing.sh | 8 content=`cat $file` 9 if [ "$content" != "$val" ]; then 10 echo "FAILED: $file has '$content', expected '$val'" 18 content=`cat $file | sed -ne "/^$val/p"` 19 if [ -z "$content" ]; then 41 content=`cat $file | sed -ne "/^[0 ]*$val/p"` 42 if [ -z "$content" ]; then
|
H A D | verify-boottrace.sh | 8 content=`cat $file` 9 if [ "$content" != "$val" ]; then 10 echo "FAILED: $file has '$content', expected '$val'" 18 content=`cat $file | sed -ne "/^$val/p"` 19 if [ -z "$content" ]; then 41 content=`cat $file | sed -ne "/^[0 ]*$val/p"` 42 if [ -z "$content" ]; then
|
/linux/Documentation/sphinx/ |
H A D | rstFlatTable.py | 72 def c_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument 77 content = content if content is not None else [] 83 def r_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument 88 content = content if content is not None else [] 115 if not self.content: 117 'The "%s" directive is empty; content require [all...] |
H A D | kernel_abi.py | 106 content = ViewList() 145 content.append(line, f, ln - 1) 157 # add content symbol by symbol 158 if content: 159 self.do_parse(content, node) 160 content = ViewList() 171 def do_parse(self, content, node): argument 172 with switch_source_input(self.state, content): 173 self.state.nested_parse(content, 0, node, match_titles=1)
|
H A D | kernel_feat.py | 116 content = ViewList() 126 content.append(l, fname, c) 130 with switch_source_input(self.state, content): 131 self.state.nested_parse(content, 0, node, match_titles=1)
|
/linux/scripts/lib/abi/ |
H A D | abi_parser.py | 99 content = None 105 content = match.group(3) 127 if content not in self.what_symbols: 128 self.add_symbol(what=content, fname=fdata.fname, ln=fdata.ln) 131 fdata.what.append(content.strip("\n")) 141 fdata.label = content 144 key = "abi_" + content.lower() 161 "what": [content], 169 self.what_refs[content] = fdata.key 174 t = (content, fdat [all...] |
/linux/drivers/s390/char/ |
H A D | hmcdrv_cache.c | 25 * @content: kernel-space buffer, 4k aligned 26 * @len: size of @content cache (0 if caching disabled) 27 * @ofs: start of content within file (-1 if no cached content) 33 * read/dir requests. But content is cached only under some preconditions. 34 * Uncached content is signalled by a negative value of @ofs. 42 void *content; member 56 * hmcdrv_cache_get() - looks for file data/content in read cache 60 * in content cache (for the file/cmd specified in @ftp) 74 if ((hmcdrv_cache_file.ofs < 0) || /* has content in hmcdrv_cache_get() [all...] |
/linux/scripts/ |
H A D | asn1_compiler.c | 305 char *content; member 327 //debug("cmp(%s,%s) = ", token->content, dir); in directive_compare() 329 val = memcmp(token->content, dir, clen); in directive_compare() 423 tokens[tix].content = malloc(tokens[tix].size + 1); in tokenise() 424 if (!tokens[tix].content) { in tokenise() 428 memcpy(tokens[tix].content, start, tokens[tix].size); in tokenise() 429 tokens[tix].content[tokens[tix].size] = 0; in tokenise() 434 if (islower(tokens[tix].content[0])) { in tokenise() 463 tokens[tix].content = malloc(tokens[tix].size + 1); in tokenise() 464 if (!tokens[tix].content) { in tokenise() [all...] |
H A D | insert-sys-cert.c | 64 void *content; member 130 s->content = (void *)hdr + s->offset; in get_symbol_from_map() 181 s->content = (void *)hdr + s->offset; in get_symbol_from_table() 380 lsize = (unsigned long *)lsize_sym.content; in main() 381 used = (int *)used_sym.content; in main() 390 strncmp(cert_sym.content, cert, cert_size) == 0) { in main() 398 memcpy(cert_sym.content, cert, cert_size); in main() 400 memset(cert_sym.content + cert_size, in main()
|
/linux/rust/macros/ |
H A D | module.rs | 40 fn emit_base(&mut self, field: &str, content: &str, builtin: bool) { in emit_base() 44 "{module}.{field}={content}\0", in emit_base() 47 content = content in emit_base() 51 format!("{field}={content}\0") in emit_base() 78 fn emit_only_builtin(&mut self, field: &str, content: &str) { in emit_only_builtin() 79 self.emit_base(field, content, true) in emit_only_builtin() 82 fn emit_only_loadable(&mut self, field: &str, content: &str) { in emit_only_loadable() 83 self.emit_base(field, content, false) in emit_only_loadable() 86 fn emit(&mut self, field: &str, content [all...] |
H A D | helpers.rs | 24 let content = &string[1..string.len() - 1]; in try_string() localVariable 25 if content.contains('\\') { in try_string() 28 Some(content.to_string()) in try_string()
|
/linux/tools/verification/rvgen/rvgen/ |
H A D | generator.py | 59 content = fd.read() 62 return content 143 content = self._read_file(file_to_patch) 144 content = content.replace(marker, line + "\n" + marker) 145 self.__write_file(file_to_patch, content) 207 def __write_file(self, file_name, content): argument 213 file.write(content) 217 def _create_file(self, file_name, content): argument 221 self.__write_file(path, content) [all...] |
/linux/fs/exfat/ |
H A D | fatent.c | 39 unsigned int *content) in __exfat_ent_get() argument 52 *content = le32_to_cpu(*(__le32 *)(&bh->b_data[off])); in __exfat_ent_get() 55 if (*content > EXFAT_BAD_CLUSTER) in __exfat_ent_get() 56 *content = EXFAT_EOF_CLUSTER; in __exfat_ent_get() 63 unsigned int content) in exfat_ent_set() argument 78 *fat_entry = cpu_to_le32(content); in exfat_ent_set() 86 unsigned int *content) in exfat_ent_get() argument 97 err = __exfat_ent_get(sb, loc, content); in exfat_ent_get() 105 if (*content == EXFAT_FREE_CLUSTER) { in exfat_ent_get() 112 if (*content in exfat_ent_get() [all...] |
/linux/drivers/net/wireless/realtek/rtw88/ |
H A D | sec.c | 31 u32 content; in rtw_sec_write_cam() local 50 content = ((key->keyidx & 0x3)) | in rtw_sec_write_cam() 58 content = (cam->addr[2]) | in rtw_sec_write_cam() 65 content = 0; in rtw_sec_write_cam() 69 content = (key->key[j]) | in rtw_sec_write_cam() 77 rtw_write32(rtwdev, RTW_SEC_WRITE_REG, content); in rtw_sec_write_cam()
|
/linux/Documentation/userspace-api/media/v4l/ |
H A D | ext-ctrls-dv.rst | 97 the AVI InfoFrame. The term 'IT Content' is used for content that 98 originates from a computer as opposed to content from a TV broadcast 100 the possible content types: 109 - Graphics content. Pixel data should be passed unfiltered and 112 - Photo content. The content is derived from digital still pictures. 113 The content should be passed through with minimal scaling and 116 - Cinema content. 118 - Game content. Audio and video latency should be minimized. 156 InfoFrame. The term 'IT Content' is used for content tha [all...] |
/linux/arch/s390/include/asm/ |
H A D | cpu_mf.h | 198 static inline int __ecctr(u64 ctr, u64 *content) in __ecctr() argument 209 *content = _content; in __ecctr() 216 u64 content; in ecctr() local 219 cc = __ecctr(ctr, &content); in ecctr() 221 *val = content; in ecctr()
|
/linux/fs/cachefiles/ |
H A D | xattr.c | 24 __u8 content; /* Content presence (enum cachefiles_content) */ member 60 buf->content = object->content_info; in cachefiles_set_object_xattr() 62 buf->content = CACHEFILES_CONTENT_DIRTY; in cachefiles_set_object_xattr() 81 buf->content, in cachefiles_set_object_xattr() 90 buf->content, in cachefiles_set_object_xattr() 140 } else if (buf->content == CACHEFILES_CONTENT_DIRTY) { in cachefiles_check_auxdata() 152 buf->content, why); in cachefiles_check_auxdata()
|
/linux/drivers/gpu/drm/amd/display/dc/dio/dcn10/ |
H A D | dcn10_stream_encoder.c | 107 const uint32_t *content = in enc1_update_generic_info_packet() local 110 REG_WRITE(AFMT_GENERIC_0, *content++); in enc1_update_generic_info_packet() 111 REG_WRITE(AFMT_GENERIC_1, *content++); in enc1_update_generic_info_packet() 112 REG_WRITE(AFMT_GENERIC_2, *content++); in enc1_update_generic_info_packet() 113 REG_WRITE(AFMT_GENERIC_3, *content++); in enc1_update_generic_info_packet() 114 REG_WRITE(AFMT_GENERIC_4, *content++); in enc1_update_generic_info_packet() 115 REG_WRITE(AFMT_GENERIC_5, *content++); in enc1_update_generic_info_packet() 116 REG_WRITE(AFMT_GENERIC_6, *content++); in enc1_update_generic_info_packet() 117 REG_WRITE(AFMT_GENERIC_7, *content); in enc1_update_generic_info_packet() 835 const uint32_t *content in enc1_stream_encoder_send_immediate_sdp_message() local [all...] |
/linux/drivers/gpu/drm/amd/display/dc/dio/dcn20/ |
H A D | dcn20_stream_encoder.c | 223 const uint32_t *content = (const uint32_t *) &info_packet->sb[0]; in enc2_update_gsp7_128_info_packet() local 253 /* Write generic packet content 128 bytes long. Four sets are used (indexes 7 in enc2_update_gsp7_128_info_packet() 260 REG_WRITE(AFMT_GENERIC_0, *content++); in enc2_update_gsp7_128_info_packet() 261 REG_WRITE(AFMT_GENERIC_1, *content++); in enc2_update_gsp7_128_info_packet() 262 REG_WRITE(AFMT_GENERIC_2, *content++); in enc2_update_gsp7_128_info_packet() 263 REG_WRITE(AFMT_GENERIC_3, *content++); in enc2_update_gsp7_128_info_packet() 264 REG_WRITE(AFMT_GENERIC_4, *content++); in enc2_update_gsp7_128_info_packet() 265 REG_WRITE(AFMT_GENERIC_5, *content++); in enc2_update_gsp7_128_info_packet() 266 REG_WRITE(AFMT_GENERIC_6, *content++); in enc2_update_gsp7_128_info_packet() 267 REG_WRITE(AFMT_GENERIC_7, *content in enc2_update_gsp7_128_info_packet() [all...] |
/linux/tools/testing/selftests/damon/ |
H A D | _damon_sysfs.py | 33 '''Returns the read content and error string. The read content is None if 183 content, err = read_file(nr_goals_file) 186 if int(content) != len(self.goals): 627 content, err = read_file(nr_targets_file) 630 if int(content) != len(self.targets): 641 content, err = read_file(nr_schemes_file) 644 if int(content) != len(self.schemes): 673 content, err = read_file(nr_contexts_file) 676 if int(content) ! [all...] |
/linux/drivers/mailbox/ |
H A D | cv1800-mailbox.c | 51 u64 __iomem *content[MAILBOX_MAX_CHAN]; member 64 if (mbox->content[i] && mbox->chans[i].cl) { in cv1800_mbox_isr() 65 memcpy_fromio(&msg, mbox->content[i], MAILBOX_MSG_LEN); in cv1800_mbox_isr() 66 mbox->content[i] = NULL; in cv1800_mbox_isr() 90 mbox->content[i] = in cv1800_mbox_irq()
|
/linux/Documentation/admin-guide/hw-vuln/ |
H A D | rsb.rst | 226 .. [#intel-rsb-filling] "Empty RSB Mitigation on Skylake-generation" in `Retpoline: A Branch Target Injection Mitigation <https://www.intel.com/content/www/us/en/developer/articles/technical/software-security-guidance/technical-documentation/retpoline-branch-target-injection-mitigation.html#inpage-nav-5-1>`_ 228 .. [#amd-rsb-filling] "Mitigation V2-3" in `Software Techniques for Managing Speculation <https://www.amd.com/content/dam/amd/en/documents/processor-tech-docs/programmer-references/software-techniques-for-managing-speculation.pdf>`_ 234 .. [#amd-ibpb-rsb] "Function 8000_0008h -- Processor Capacity Parameters and Extended Feature Identification" in `AMD64 Architecture Programmer's Manual Volume 3: General-Purpose and System Instructions <https://www.amd.com/content/dam/amd/en/documents/processor-tech-docs/programmer-references/24594.pdf>`_. SBPB behaves the same way according to `this email <https://lore.kernel.org/5175b163a3736ca5fd01cedf406735636c99a>`_. 236 .. [#amd-ibpb-no-rsb] `Spectre Attacks: Exploiting Speculative Execution <https://comsec.ethz.ch/wp-content/files/ibpb_sp25.pdf>`_ 238 .. [#intel-ibpb-rsb] "Introduction" in `Post-barrier Return Stack Buffer Predictions / CVE-2022-26373 / INTEL-SA-00706 <https://www.intel.com/content/www/us/en/developer/articles/technical/software-security-guidance/advisory-guidance/post-barrier-return-stack-buffer-predictions.html>`_ 240 .. [#amd-smep-rsb] "Existing Mitigations" in `Technical Guidance for Mitigating Branch Type Confusion <https://www.amd.com/content/dam/amd/en/documents/resources/technical-guidance-for-mitigating-branch-type-confusion.pdf>`_ 242 .. [#intel-smep-rsb] "Enhanced IBRS" in `Indirect Branch Restricted Speculation <https://www.intel.com/content/www/us/en/developer/articles/technical/software-security-guidance/technical-documentation/indirect-branch-restricted-speculation.html>`_ 244 .. [#amd-eibrs-vmexit] "Extended Feature Enable Register (EFER)" in `AMD64 Architecture Programmer's Manual Volume 2: System Programming <https://www.amd.com/content/dam/amd/en/documents/processor-tech-docs/programmer-references/24593.pdf>`_ 246 .. [#intel-eibrs-vmexit] "Enhanced IBRS" in `Indirect Branch Restricted Speculation <https://www.intel.com/content/www/us/en/developer/articles/technical/software-security-guidance/technical-documentation/indirect-branch-restricted-speculation.html>`_ 248 .. [#intel-pbrsb] `Post-barrier Return Stack Buffer Predictions / CVE-2022-26373 / INTEL-SA-00706 <https://www.intel.com/content/ww [all...] |
/linux/net/atm/ |
H A D | lec.c | 153 mesg->content.normal.flag = *buff & 0x01; in lec_handle_bridge() 360 eth_hw_addr_set(dev, mesg->content.normal.mac_addr); in lec_atm_send() 366 lec_addr_delete(priv, mesg->content.normal.atm_addr, in lec_atm_send() 367 mesg->content.normal.flag); in lec_atm_send() 370 priv->topology_change = mesg->content.normal.flag; in lec_atm_send() 373 lec_flush_complete(priv, mesg->content.normal.flag); in lec_atm_send() 377 entry = lec_arp_find(priv, mesg->content.normal.mac_addr); in lec_atm_send() 381 if (mesg->content.normal.no_source_le_narp) in lec_atm_send() 385 lec_arp_update(priv, mesg->content.normal.mac_addr, in lec_atm_send() 386 mesg->content in lec_atm_send() [all...] |