/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 .section ul li:last-child, .rst-content .section ul li p:last-child { [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/scripts/ |
H A D | asn1_compiler.c | 305 char *content; member 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() 468 memcpy(tokens[tix].content, start, tokens[tix].size); 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/drivers/s390/char/ |
H A D | hmcdrv_cache.c | 42 void *content; member 95 hmcdrv_cache_file.content + pos, in hmcdrv_cache_get() 131 cftp.buf = hmcdrv_cache_file.content; /* and update */ in hmcdrv_cache_do() 146 memcpy(ftp->buf, hmcdrv_cache_file.content, len); in hmcdrv_cache_do() 220 hmcdrv_cache_file.content = in hmcdrv_cache_startup() 224 if (!hmcdrv_cache_file.content) { in hmcdrv_cache_startup() 243 if (hmcdrv_cache_file.content) { in hmcdrv_cache_shutdown() 244 free_pages((unsigned long) hmcdrv_cache_file.content, in hmcdrv_cache_shutdown() 246 hmcdrv_cache_file.content = NULL; in hmcdrv_cache_shutdown()
|
/linux/rust/macros/ |
H A D | module.rs | 40 fn emit_base(&mut self, field: &str, content: &str, builtin: bool) { in emit_base() 47 content = content 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: &str) { in emit() 87 self.emit_only_builtin(field, content); in emit() 88 self.emit_only_loadable(field, content); in emit()
|
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/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...] |
H A D | sysfs.sh | 12 content=$2 15 if ! echo "$content" > "$file" 17 echo "writing $content to $file failed" 26 content=$2 29 if (echo "$content" > "$file") 2> /dev/null 31 echo "writing $content to $file succeed ($fail_reason)"
|
/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 == EXFAT_BAD_CLUSTER) { in exfat_ent_get() [all …]
|
H A D | cache.c | 245 unsigned int content; in exfat_get_cluster() local 290 if (exfat_ent_get(sb, *dclus, &content)) in exfat_get_cluster() 294 *dclus = content; in exfat_get_cluster() 297 if (content == EXFAT_EOF_CLUSTER) { in exfat_get_cluster()
|
/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)
|
/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/fs/afs/ |
H A D | mntpt.c | 123 const char *content; in afs_mntpt_set_params() local 132 content = afs_get_link(mntpt, d_inode(mntpt), &cleanup); in afs_mntpt_set_params() 133 if (IS_ERR(content)) { in afs_mntpt_set_params() 135 return PTR_ERR(content); in afs_mntpt_set_params() 139 if (content[size - 1] == '.') in afs_mntpt_set_params() 140 ret = vfs_parse_fs_string(fc, "source", content, size - 1); in afs_mntpt_set_params()
|
/linux/tools/testing/selftests/tc-testing/plugin-lib/ |
H A D | valgrindPlugin.py | 130 content = vfd.read() 131 def_mo = self.definitely_lost_re.search(content) 132 ind_mo = self.indirectly_lost_re.search(content) 133 pos_mo = self.possibly_lost_re.search(content) 134 nle_mo = self.non_leak_error_re.search(content) 150 res.append_failmsg(content)
|
/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 that originates 157 from a computer as opposed to content from a TV broadcast or an [all …]
|
/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/net/wireless/realtek/rtw89/ |
H A D | acpi.c | 559 const void *content, in rtw89_acpi_sar_load_std_legacy() argument 562 const struct rtw89_acpi_sar_std_legacy *ptr = content; in rtw89_acpi_sar_load_std_legacy() 582 const void *content, in rtw89_acpi_sar_load_std_has_6ghz() argument 585 const struct rtw89_acpi_sar_std_has_6ghz *ptr = content; in rtw89_acpi_sar_load_std_has_6ghz() 603 const void *content, in rtw89_acpi_sar_load_sml_legacy() argument 606 const struct rtw89_acpi_sar_sml_legacy *ptr = content; in rtw89_acpi_sar_load_sml_legacy() 626 const void *content, in rtw89_acpi_sar_load_sml_has_6ghz() argument 629 const struct rtw89_acpi_sar_sml_has_6ghz *ptr = content; in rtw89_acpi_sar_load_sml_has_6ghz() 725 const void *content, in rtw89_acpi_geo_sar_load_hp_legacy() argument 729 const struct rtw89_acpi_geo_sar_hp_legacy *ptr = content; in rtw89_acpi_geo_sar_load_hp_legacy() [all …]
|
H A D | acpi.h | 160 u8 content[]; member 167 u8 content[]; member 191 const void *content, 270 const void *content,
|
/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 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()
|
/linux/Documentation/admin-guide/hw-vuln/ |
H A D | rsb.rst | 226 … `Retpoline: A Branch Target Injection Mitigation <https://www.intel.com/content/www/us/en/develop… 228 …3" in `Software Techniques for Managing Speculation <https://www.amd.com/content/dam/amd/en/docume… 234 …l Volume 3: General-Purpose and System Instructions <https://www.amd.com/content/dam/amd/en/docume… 236 …tre Attacks: Exploiting Speculative Execution <https://comsec.ethz.ch/wp-content/files/ibpb_sp25.p… 238 …fer Predictions / CVE-2022-26373 / INTEL-SA-00706 <https://www.intel.com/content/www/us/en/develop… 240 …nical Guidance for Mitigating Branch Type Confusion <https://www.amd.com/content/dam/amd/en/docume… 242 … IBRS" in `Indirect Branch Restricted Speculation <https://www.intel.com/content/www/us/en/develop… 244 …re Programmer's Manual Volume 2: System Programming <https://www.amd.com/content/dam/amd/en/docume… 246 … IBRS" in `Indirect Branch Restricted Speculation <https://www.intel.com/content/www/us/en/develop… 248 …fer Predictions / CVE-2022-26373 / INTEL-SA-00706 <https://www.intel.com/content/www/us/en/develop… [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.normal.atm_addr, in lec_atm_send() [all …]
|
/linux/drivers/input/rmi4/ |
H A D | rmi_f34v7.c | 886 const void *content; in rmi_f34v7_parse_img_header_10_bl_container() local 895 content = image + le32_to_cpu(descriptor->content_address); in rmi_f34v7_parse_img_header_10_bl_container() 900 f34->v7.img.bl_config.data = content; in rmi_f34v7_parse_img_header_10_bl_container() 905 f34->v7.img.lockdown.data = content; in rmi_f34v7_parse_img_header_10_bl_container() 923 const u8 *content; in rmi_f34v7_parse_image_header_10() local 945 content = image + le32_to_cpu(descriptor->content_address); in rmi_f34v7_parse_image_header_10() 955 f34->v7.img.ui_firmware.data = content; in rmi_f34v7_parse_image_header_10() 960 f34->v7.img.ui_config.data = content; in rmi_f34v7_parse_image_header_10() 964 f34->v7.img.bl_version = *content; in rmi_f34v7_parse_image_header_10() 965 f34->v7.img.bootloader.data = content; in rmi_f34v7_parse_image_header_10() [all …]
|