/linux-6.1.9/Documentation/sphinx-static/ |
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%; } 89 caption, .wy-table caption, .rst-content table.field-list caption { 108 .rst-content .section ul li:last-child, .rst-content .section ul li p:last-child { [all …]
|
/linux-6.1.9/tools/testing/ktest/examples/bootconfigs/ |
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
|
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
|
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-6.1.9/rust/macros/ |
D | module.rs | 22 fn emit_base(&mut self, field: &str, content: &str, builtin: bool) { in emit_base() 29 content = content in emit_base() 33 format!("{field}={content}\0", field = field, content = content) in emit_base() 60 fn emit_only_builtin(&mut self, field: &str, content: &str) { in emit_only_builtin() 61 self.emit_base(field, content, true) in emit_only_builtin() 64 fn emit_only_loadable(&mut self, field: &str, content: &str) { in emit_only_loadable() 65 self.emit_base(field, content, false) in emit_only_loadable() 68 fn emit(&mut self, field: &str, content: &str) { in emit() 69 self.emit_only_builtin(field, content); in emit() 70 self.emit_only_loadable(field, content); in emit()
|
/linux-6.1.9/tools/testing/selftests/damon/ |
D | _debugfs_common.sh | 6 content=$2 11 echo "$content" > "$file" 14 echo "writing $content to $file doesn't return $expected" 35 content=$(cat "$file") 36 if [ "$content" != "$expected" ] 38 echo "reading $file expected $expected but $content"
|
D | sysfs.sh | 10 content=$2 13 if ! echo "$content" > "$file" 15 echo "writing $content to $file failed" 24 content=$2 27 if echo "$content" > "$file" 29 echo "writing $content to $file succeed ($fail_reason)"
|
/linux-6.1.9/Documentation/sphinx/ |
D | rstFlatTable.py | 71 def c_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument 76 content = content if content is not None else [] 82 def r_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument 87 content = content if content is not None else [] 114 if not self.content: 123 self.state.nested_parse(self.content, self.content_offset, node) 288 cspan, rspan, content = row[-1] 289 row[-1] = (cspan + x, rspan, content) 304 content = col[2][0].astext() 305 if len (content) > 30: [all …]
|
D | kernel_abi.py | 132 content = ViewList() 154 if new_f != f and content: 155 self.do_parse(content, node) 156 content = ViewList() 166 content.append(line, f, ln) 170 if content: 171 self.do_parse(content, node) 175 def do_parse(self, content, node): argument 176 with switch_source_input(self.state, content): 177 self.state.nested_parse(content, 0, node, match_titles=1)
|
D | kernel_feat.py | 149 content = ViewList() 159 content.append(l, fname, c) 163 with switch_source_input(self.state, content): 164 self.state.nested_parse(content, 0, node, match_titles=1)
|
/linux-6.1.9/drivers/net/ethernet/hisilicon/hns3/ |
D | hns3_debugfs.c | 434 static void hns3_dbg_fill_content(char *content, u16 len, in hns3_dbg_fill_content() argument 438 char *pos = content; in hns3_dbg_fill_content() 441 memset(content, ' ', len); in hns3_dbg_fill_content() 509 char content[HNS3_DBG_INFO_LEN]; in hns3_dump_coal_info() local 518 hns3_dbg_fill_content(content, sizeof(content), coal_info_items, in hns3_dump_coal_info() 520 *pos += scnprintf(buf + *pos, len - *pos, "%s", content); in hns3_dump_coal_info() 525 hns3_dbg_fill_content(content, sizeof(content), coal_info_items, in hns3_dump_coal_info() 528 *pos += scnprintf(buf + *pos, len - *pos, "%s", content); in hns3_dump_coal_info() 559 char content[HNS3_DBG_INFO_LEN]; in hns3_dbg_tx_spare_info() local 572 hns3_dbg_fill_content(content, sizeof(content), tx_spare_info_items, in hns3_dbg_tx_spare_info() [all …]
|
/linux-6.1.9/scripts/ |
D | get_abi.pl | 130 my $content = $3; 150 $content =~ s/[,.;]$//; 152 push @{$symbols{$content}->{file}}, " $file:" . ($ln - 1); 155 $what .= "\xac" . $content; 165 $what = $content; 166 $label = $content; 169 push @labels, [($content, $label)]; 172 push @{$data{$nametag}->{symbols}}, $content if ($data{$nametag}->{what}); 208 $content = ' ' x length($new_tag) . $sep . $content; 209 while ($content =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {} [all …]
|
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 …]
|
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-6.1.9/drivers/s390/char/ |
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-6.1.9/fs/exfat/ |
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 …]
|
/linux-6.1.9/drivers/net/wireless/realtek/rtw88/ |
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-6.1.9/tools/testing/selftests/tc-testing/plugin-lib/ |
D | valgrindPlugin.py | 129 content = vfd.read() 130 def_mo = self.definitely_lost_re.search(content) 131 ind_mo = self.indirectly_lost_re.search(content) 132 pos_mo = self.possibly_lost_re.search(content) 133 nle_mo = self.non_leak_error_re.search(content) 149 res.append_failmsg(content)
|
/linux-6.1.9/fs/cachefiles/ |
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() 74 buf->content, in cachefiles_set_object_xattr() 82 buf->content, in cachefiles_set_object_xattr() 127 } else if (buf->content == CACHEFILES_CONTENT_DIRTY) { in cachefiles_check_auxdata() 137 buf->content, why); in cachefiles_check_auxdata()
|
/linux-6.1.9/Documentation/userspace-api/media/v4l/ |
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-6.1.9/arch/s390/include/asm/ |
D | cpu_mf.h | 196 static inline int __ecctr(u64 ctr, u64 *content) in __ecctr() argument 206 *content = _content; in __ecctr() 213 u64 content; in ecctr() local 216 cc = __ecctr(ctr, &content); in ecctr() 218 *val = content; in ecctr()
|
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/dcn20/ |
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-6.1.9/drivers/gpu/drm/amd/display/dc/dcn10/ |
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() 829 const uint32_t *content = in enc1_stream_encoder_send_immediate_sdp_message() local [all …]
|
/linux-6.1.9/drivers/net/ethernet/hisilicon/hns3/hns3pf/ |
D | hclge_debugfs.c | 86 static void hclge_dbg_fill_content(char *content, u16 len, in hclge_dbg_fill_content() argument 90 char *pos = content; in hclge_dbg_fill_content() 93 memset(content, ' ', len); in hclge_dbg_fill_content() 722 char content[HCLGE_DBG_TM_INFO_LEN]; in __hclge_dbg_dump_tm_pg() local 731 hclge_dbg_fill_content(content, sizeof(content), tm_pg_items, in __hclge_dbg_dump_tm_pg() 733 pos += scnprintf(buf + pos, len - pos, "%s", content); in __hclge_dbg_dump_tm_pg() 771 hclge_dbg_fill_content(content, sizeof(content), tm_pg_items, in __hclge_dbg_dump_tm_pg() 774 pos += scnprintf(buf + pos, len - pos, "%s", content); in __hclge_dbg_dump_tm_pg() 967 char content[HCLGE_DBG_TM_INFO_LEN]; in hclge_dbg_dump_tm_pri() local 978 hclge_dbg_fill_content(content, sizeof(content), tm_pri_items, in hclge_dbg_dump_tm_pri() [all …]
|
/linux-6.1.9/net/atm/ |
D | lec.c | 152 mesg->content.normal.flag = *buff & 0x01; in lec_handle_bridge() 358 eth_hw_addr_set(dev, mesg->content.normal.mac_addr); in lec_atm_send() 364 lec_addr_delete(priv, mesg->content.normal.atm_addr, in lec_atm_send() 365 mesg->content.normal.flag); in lec_atm_send() 368 priv->topology_change = mesg->content.normal.flag; in lec_atm_send() 371 lec_flush_complete(priv, mesg->content.normal.flag); in lec_atm_send() 375 entry = lec_arp_find(priv, mesg->content.normal.mac_addr); in lec_atm_send() 379 if (mesg->content.normal.no_source_le_narp) in lec_atm_send() 383 lec_arp_update(priv, mesg->content.normal.mac_addr, in lec_atm_send() 384 mesg->content.normal.atm_addr, in lec_atm_send() [all …]
|