Home
last modified time | relevance | path

Searched refs:ofs (Results 1 – 25 of 257) sorted by relevance

1234567891011

/kernel/linux/linux-5.10/fs/overlayfs/
Dsuper.c215 static void ovl_free_fs(struct ovl_fs *ofs) in ovl_free_fs() argument
220 iput(ofs->workbasedir_trap); in ovl_free_fs()
221 iput(ofs->indexdir_trap); in ovl_free_fs()
222 iput(ofs->workdir_trap); in ovl_free_fs()
223 dput(ofs->whiteout); in ovl_free_fs()
224 dput(ofs->indexdir); in ovl_free_fs()
225 dput(ofs->workdir); in ovl_free_fs()
226 if (ofs->workdir_locked) in ovl_free_fs()
227 ovl_inuse_unlock(ofs->workbasedir); in ovl_free_fs()
228 dput(ofs->workbasedir); in ovl_free_fs()
[all …]
Dutil.c20 struct ovl_fs *ofs = dentry->d_sb->s_fs_info; in ovl_want_write() local
21 return mnt_want_write(ovl_upper_mnt(ofs)); in ovl_want_write()
26 struct ovl_fs *ofs = dentry->d_sb->s_fs_info; in ovl_drop_write() local
27 mnt_drop_write(ovl_upper_mnt(ofs)); in ovl_drop_write()
32 struct ovl_fs *ofs = dentry->d_sb->s_fs_info; in ovl_workdir() local
33 return ofs->workdir; in ovl_workdir()
38 struct ovl_fs *ofs = sb->s_fs_info; in ovl_override_creds() local
40 return override_creds(ofs->creator_cred); in ovl_override_creds()
61 struct ovl_fs *ofs = sb->s_fs_info; in ovl_indexdir() local
63 return ofs->indexdir; in ovl_indexdir()
[all …]
Dnamei.c33 struct ovl_fs *ofs = OVL_FS(d->sb); in ovl_check_redirect() local
35 buf = ovl_get_redirect_xattr(ofs, dentry, prelen + strlen(post)); in ovl_check_redirect()
108 static struct ovl_fh *ovl_get_fh(struct ovl_fs *ofs, struct dentry *dentry, in ovl_get_fh() argument
114 res = ovl_do_getxattr(ofs, dentry, ox, NULL, 0); in ovl_get_fh()
128 res = ovl_do_getxattr(ofs, dentry, ox, fh->buf, res); in ovl_get_fh()
342 int ovl_check_origin_fh(struct ovl_fs *ofs, struct ovl_fh *fh, bool connected, in ovl_check_origin_fh() argument
348 for (i = 1; i < ofs->numlayer; i++) { in ovl_check_origin_fh()
353 if (ofs->layers[i].fsid && in ovl_check_origin_fh()
354 ofs->layers[i].fs->bad_uuid) in ovl_check_origin_fh()
357 origin = ovl_decode_real_fh(fh, ofs->layers[i].mnt, in ovl_check_origin_fh()
[all …]
/kernel/linux/linux-5.10/sound/soc/fsl/
Dfsl_sai.h19 #define FSL_SAI_TCSR(ofs) (0x00 + ofs) /* SAI Transmit Control */ argument
20 #define FSL_SAI_TCR1(ofs) (0x04 + ofs) /* SAI Transmit Configuration 1 */ argument
21 #define FSL_SAI_TCR2(ofs) (0x08 + ofs) /* SAI Transmit Configuration 2 */ argument
22 #define FSL_SAI_TCR3(ofs) (0x0c + ofs) /* SAI Transmit Configuration 3 */ argument
23 #define FSL_SAI_TCR4(ofs) (0x10 + ofs) /* SAI Transmit Configuration 4 */ argument
24 #define FSL_SAI_TCR5(ofs) (0x14 + ofs) /* SAI Transmit Configuration 5 */ argument
46 #define FSL_SAI_RCSR(ofs) (0x80 + ofs) /* SAI Receive Control */ argument
47 #define FSL_SAI_RCR1(ofs) (0x84 + ofs)/* SAI Receive Configuration 1 */ argument
48 #define FSL_SAI_RCR2(ofs) (0x88 + ofs) /* SAI Receive Configuration 2 */ argument
49 #define FSL_SAI_RCR3(ofs) (0x8c + ofs) /* SAI Receive Configuration 3 */ argument
[all …]
Dfsl_sai.c61 unsigned int ofs = sai->soc_data->reg_offset; in fsl_sai_isr() local
74 regmap_read(sai->regmap, FSL_SAI_TCSR(ofs), &xcsr); in fsl_sai_isr()
104 regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), flags | xcsr); in fsl_sai_isr()
108 regmap_read(sai->regmap, FSL_SAI_RCSR(ofs), &xcsr); in fsl_sai_isr()
138 regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), flags | xcsr); in fsl_sai_isr()
172 unsigned int ofs = sai->soc_data->reg_offset; in fsl_sai_set_dai_sysclk_tr() local
193 regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs), in fsl_sai_set_dai_sysclk_tr()
226 unsigned int ofs = sai->soc_data->reg_offset; in fsl_sai_set_dai_fmt_tr() local
321 regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs), in fsl_sai_set_dai_fmt_tr()
323 regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx, ofs), in fsl_sai_set_dai_fmt_tr()
[all …]
/kernel/linux/linux-5.10/fs/jffs2/
Dnodelist.c66 if (frag && frag->ofs != size) { in jffs2_truncate_fragtree()
67 if (frag->ofs+frag->size > size) { in jffs2_truncate_fragtree()
68 frag->size = size - frag->ofs; in jffs2_truncate_fragtree()
72 while (frag && frag->ofs >= size) { in jffs2_truncate_fragtree()
88 if (frag->ofs + frag->size < size) in jffs2_truncate_fragtree()
89 return frag->ofs + frag->size; in jffs2_truncate_fragtree()
93 if (frag->node && (frag->ofs & (PAGE_SIZE - 1)) == 0) { in jffs2_truncate_fragtree()
95 frag->ofs, frag->ofs + frag->size); in jffs2_truncate_fragtree()
109 ref_offset(this->node->raw), this->node->ofs, this->node->ofs+this->node->size); in jffs2_obsolete_node_frag()
114 …ref_offset(this->node->raw), this->node->ofs, this->node->ofs+this->node->size, this->node->frags); in jffs2_obsolete_node_frag()
[all …]
Dscan.c47 struct jffs2_raw_inode *ri, uint32_t ofs, struct jffs2_summary *s);
49 struct jffs2_raw_dirent *rd, uint32_t ofs, struct jffs2_summary *s);
289 uint32_t ofs, uint32_t len) in jffs2_fill_scan_buf() argument
294 ret = jffs2_flash_read(c, ofs, len, &retlen, buf); in jffs2_fill_scan_buf()
297 len, ofs, ret); in jffs2_fill_scan_buf()
302 ofs, retlen); in jffs2_fill_scan_buf()
329 struct jffs2_raw_xattr *rx, uint32_t ofs, in jffs2_scan_xattr_node() argument
339 ofs, je32_to_cpu(rx->node_crc), crc); in jffs2_scan_xattr_node()
352 ofs, je32_to_cpu(rx->totlen), totlen); in jffs2_scan_xattr_node()
364 = jffs2_link_node_ref(c, jeb, ofs | REF_PRISTINE, totlen, NULL); in jffs2_scan_xattr_node()
[all …]
Dread.c25 int ofs, int len) in jffs2_read_dnode() argument
71 D1(if(ofs + len > je32_to_cpu(ri->dsize)) { in jffs2_read_dnode()
73 len, ofs, je32_to_cpu(ri->dsize)); in jffs2_read_dnode()
143 memcpy(buf, decomprbuf+ofs, len); in jffs2_read_dnode()
177 if (unlikely(!frag || frag->ofs > offset || in jffs2_read_inode_range()
178 frag->ofs + frag->size <= offset)) { in jffs2_read_inode_range()
180 if (frag && frag->ofs > offset) { in jffs2_read_inode_range()
182 f->inocache->ino, frag->ofs, offset); in jffs2_read_inode_range()
183 holesize = min(holesize, frag->ofs - offset); in jffs2_read_inode_range()
192 uint32_t holeend = min(end, frag->ofs + frag->size); in jffs2_read_inode_range()
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/mt7915/
Dregs.h9 #define MT_MCU_WFDMA1(ofs) (MT_MCU_WFDMA1_BASE + (ofs)) argument
18 #define MT_PLE(ofs) (MT_PLE_BASE + (ofs)) argument
30 #define MT_MDP(ofs) (MT_MDP_BASE + (ofs)) argument
52 #define MT_WF_TMAC(_band, ofs) (MT_WF_TMAC_BASE(_band) + (ofs)) argument
72 #define MT_WF_DMA(ofs) (MT_WF_DMA_BASE + (ofs)) argument
80 #define MT_WF_ETBF(_band, ofs) (MT_WF_ETBF_BASE(_band) + (ofs)) argument
98 #define MT_WF_LPON(_band, ofs) (MT_WF_LPON_BASE(_band) + (ofs)) argument
109 #define MT_WF_MIB(_band, ofs) (MT_WF_MIB_BASE(_band) + (ofs)) argument
149 #define MT_WTBLON_TOP(ofs) (MT_WTBLON_TOP_BASE + (ofs)) argument
167 #define MT_WF_AGG(_band, ofs) (MT_WF_AGG_BASE(_band) + (ofs)) argument
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/intel/iwlwifi/
Diwl-io.h64 void iwl_write8(struct iwl_trans *trans, u32 ofs, u8 val);
65 void iwl_write32(struct iwl_trans *trans, u32 ofs, u32 val);
66 void iwl_write64(struct iwl_trans *trans, u64 ofs, u64 val);
67 u32 iwl_read32(struct iwl_trans *trans, u32 ofs);
89 u32 iwl_read_prph_no_grab(struct iwl_trans *trans, u32 ofs);
90 u32 iwl_read_prph(struct iwl_trans *trans, u32 ofs);
91 void iwl_write_prph_no_grab(struct iwl_trans *trans, u32 ofs, u32 val);
92 void iwl_write_prph64_no_grab(struct iwl_trans *trans, u64 ofs, u64 val);
93 void iwl_write_prph(struct iwl_trans *trans, u32 ofs, u32 val);
96 void iwl_set_bits_prph(struct iwl_trans *trans, u32 ofs, u32 mask);
[all …]
Diwl-io.c73 void iwl_write8(struct iwl_trans *trans, u32 ofs, u8 val) in iwl_write8() argument
75 trace_iwlwifi_dev_iowrite8(trans->dev, ofs, val); in iwl_write8()
76 iwl_trans_write8(trans, ofs, val); in iwl_write8()
80 void iwl_write32(struct iwl_trans *trans, u32 ofs, u32 val) in iwl_write32() argument
82 trace_iwlwifi_dev_iowrite32(trans->dev, ofs, val); in iwl_write32()
83 iwl_trans_write32(trans, ofs, val); in iwl_write32()
87 void iwl_write64(struct iwl_trans *trans, u64 ofs, u64 val) in iwl_write64() argument
89 trace_iwlwifi_dev_iowrite64(trans->dev, ofs, val); in iwl_write64()
90 iwl_trans_write32(trans, ofs, lower_32_bits(val)); in iwl_write64()
91 iwl_trans_write32(trans, ofs + 4, upper_32_bits(val)); in iwl_write64()
[all …]
/kernel/linux/linux-5.10/drivers/tty/serial/
Dstm32-usart.c102 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; in stm32_usart_config_rs485() local
107 stm32_usart_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); in stm32_usart_config_rs485()
114 cr1 = readl_relaxed(port->membase + ofs->cr1); in stm32_usart_config_rs485()
115 cr3 = readl_relaxed(port->membase + ofs->cr3); in stm32_usart_config_rs485()
116 usartdiv = readl_relaxed(port->membase + ofs->brr); in stm32_usart_config_rs485()
138 writel_relaxed(cr3, port->membase + ofs->cr3); in stm32_usart_config_rs485()
139 writel_relaxed(cr1, port->membase + ofs->cr1); in stm32_usart_config_rs485()
141 stm32_usart_clr_bits(port, ofs->cr3, in stm32_usart_config_rs485()
143 stm32_usart_clr_bits(port, ofs->cr1, in stm32_usart_config_rs485()
147 stm32_usart_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); in stm32_usart_config_rs485()
[all …]
/kernel/linux/linux-5.10/drivers/media/pci/pt3/
Dpt3_dma.c61 static u8 *next_unit(struct pt3_adapter *adap, int *idx, int *ofs) in next_unit() argument
63 *ofs += PT3_ACCESS_UNIT; in next_unit()
64 if (*ofs >= DATA_BUF_SZ) { in next_unit()
65 *ofs -= DATA_BUF_SZ; in next_unit()
70 return &adap->buffer[*idx].data[*ofs]; in next_unit()
75 int idx, ofs; in pt3_proc_dma() local
78 ofs = adap->buf_ofs; in pt3_proc_dma()
80 if (adap->buffer[idx].data[ofs] == PT3_BUF_CANARY) in pt3_proc_dma()
83 while (*next_unit(adap, &idx, &ofs) != PT3_BUF_CANARY) { in pt3_proc_dma()
93 adap->buffer[idx].data, ofs / TS_PACKET_SZ); in pt3_proc_dma()
[all …]
/kernel/linux/linux-5.10/security/selinux/ss/
Debitmap.h50 unsigned int ofs; in ebitmap_start_positive() local
53 ofs = find_first_bit((*n)->maps, EBITMAP_SIZE); in ebitmap_start_positive()
54 if (ofs < EBITMAP_SIZE) in ebitmap_start_positive()
55 return (*n)->startbit + ofs; in ebitmap_start_positive()
69 unsigned int ofs; in ebitmap_next_positive() local
71 ofs = find_next_bit((*n)->maps, EBITMAP_SIZE, bit - (*n)->startbit + 1); in ebitmap_next_positive()
72 if (ofs < EBITMAP_SIZE) in ebitmap_next_positive()
73 return ofs + (*n)->startbit; in ebitmap_next_positive()
76 ofs = find_first_bit((*n)->maps, EBITMAP_SIZE); in ebitmap_next_positive()
77 if (ofs < EBITMAP_SIZE) in ebitmap_next_positive()
[all …]
/kernel/linux/linux-5.10/arch/xtensa/variants/test_mmuhifi_c3/include/variant/
Dtie-asm.h36 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
37 xchal_sa_start \continue, \ofs
63 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
64 xchal_sa_start \continue, \ofs
97 .macro xchal_cp1_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
98 xchal_sa_start \continue, \ofs
133 .macro xchal_cp1_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
134 xchal_sa_start \continue, \ofs
167 .macro xchal_cp0_store p a b c d continue=0 ofs=-1 select=-1 ; .endm
168 .macro xchal_cp0_load p a b c d continue=0 ofs=-1 select=-1 ; .endm
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/mt7615/
Dregs.h36 #define MT_HW_INFO(ofs) (MT_HW_INFO_BASE + (ofs)) argument
52 #define MT_MCU(ofs) (MT_MCU_BASE + (ofs)) argument
64 #define MT_HIF(ofs) ((dev)->reg_map[MT_HIF_BASE] + (ofs)) argument
83 #define MT_HIF2(ofs) (MT_HIF2_BASE + (ofs)) argument
151 #define MT_CSR(ofs) ((dev)->reg_map[MT_CSR_BASE] + (ofs)) argument
154 #define MT_PLE(ofs) ((dev)->reg_map[MT_PLE_BASE] + (ofs)) argument
166 #define MT_PSE(ofs) ((dev)->reg_map[MT_PSE_BASE] + (ofs)) argument
178 #define MT_PP(ofs) ((dev)->reg_map[MT_PP_BASE] + (ofs)) argument
184 #define MT_WF_PHY(ofs) (MT_WF_PHY_BASE + (ofs)) argument
231 #define MT_WF_CFG(ofs) (MT_WF_CFG_BASE + (ofs)) argument
[all …]
/kernel/linux/linux-5.10/fs/erofs/
Ddir.c25 void *dentry_blk, unsigned int *ofs, in erofs_fill_dentries() argument
28 struct erofs_dirent *de = dentry_blk + *ofs; in erofs_fill_dentries()
62 *ofs += sizeof(struct erofs_dirent); in erofs_fill_dentries()
64 *ofs = maxsize; in erofs_fill_dentries()
74 unsigned int ofs = ctx->pos % EROFS_BLKSIZ; in erofs_readdir() local
109 dirsize - ctx->pos + ofs, PAGE_SIZE); in erofs_readdir()
115 ofs = roundup(ofs, sizeof(struct erofs_dirent)); in erofs_readdir()
116 if (ofs >= nameoff) in erofs_readdir()
120 err = erofs_fill_dentries(dir, ctx, de, &ofs, in erofs_readdir()
127 ctx->pos = blknr_to_addr(i) + ofs; in erofs_readdir()
[all …]
Dxattr.c16 unsigned int ofs; member
96 it.ofs = erofs_blkoff(iloc(sbi, vi->nid) + vi->inode_isize); in init_inode_xattrs()
108 ih = (struct erofs_xattr_ibody_header *)(it.kaddr + it.ofs); in init_inode_xattrs()
120 it.ofs += sizeof(struct erofs_xattr_ibody_header); in init_inode_xattrs()
123 if (it.ofs >= EROFS_BLKSIZ) { in init_inode_xattrs()
125 DBG_BUGON(it.ofs != EROFS_BLKSIZ); in init_inode_xattrs()
138 it.ofs = 0; in init_inode_xattrs()
141 le32_to_cpu(*(__le32 *)(it.kaddr + it.ofs)); in init_inode_xattrs()
142 it.ofs += sizeof(__le32); in init_inode_xattrs()
173 if (it->ofs < EROFS_BLKSIZ) in xattr_iter_fixup()
[all …]
/kernel/linux/linux-5.10/drivers/mtd/maps/
Dpci.c25 unsigned long (*translate)(struct map_pci_info *map, unsigned long ofs);
33 unsigned long (*translate)(struct map_pci_info *map, unsigned long ofs);
37 static map_word mtd_pci_read8(struct map_info *_map, unsigned long ofs) in mtd_pci_read8() argument
41 val.x[0]= readb(map->base + map->translate(map, ofs)); in mtd_pci_read8()
45 static map_word mtd_pci_read32(struct map_info *_map, unsigned long ofs) in mtd_pci_read32() argument
49 val.x[0] = readl(map->base + map->translate(map, ofs)); in mtd_pci_read32()
59 static void mtd_pci_write8(struct map_info *_map, map_word val, unsigned long ofs) in mtd_pci_write8() argument
62 writeb(val.x[0], map->base + map->translate(map, ofs)); in mtd_pci_write8()
65 static void mtd_pci_write32(struct map_info *_map, map_word val, unsigned long ofs) in mtd_pci_write32() argument
68 writel(val.x[0], map->base + map->translate(map, ofs)); in mtd_pci_write32()
[all …]
/kernel/linux/linux-5.10/drivers/s390/char/
Dhmcdrv_cache.c40 loff_t ofs; member
50 .ofs = -1,
71 if (ftp->ofs >= hmcdrv_cache_file.fsize) /* EOF ? */ in hmcdrv_cache_get()
74 if ((hmcdrv_cache_file.ofs < 0) || /* has content? */ in hmcdrv_cache_get()
81 len = hmcdrv_cache_file.fsize - ftp->ofs; in hmcdrv_cache_get()
89 pos = ftp->ofs - hmcdrv_cache_file.ofs; in hmcdrv_cache_get()
143 hmcdrv_cache_file.ofs = ftp->ofs; in hmcdrv_cache_do()
150 hmcdrv_cache_file.ofs = -1; /* invalidate content */ in hmcdrv_cache_do()
205 hmcdrv_cache_file.ofs = -1; in hmcdrv_cache_cmd()
251 hmcdrv_cache_file.ofs = -1; in hmcdrv_cache_shutdown()
/kernel/linux/linux-5.10/arch/mips/txx9/generic/
Dirq_tx4939.c57 int ofs; in tx4939_irq_unmask() local
65 ofs = (irq_nr & 16) + (irq_nr & 1) * 8; in tx4939_irq_unmask()
66 __raw_writel((__raw_readl(lvlp) & ~(0xff << ofs)) in tx4939_irq_unmask()
67 | (tx4939irq[irq_nr].level << ofs), in tx4939_irq_unmask()
75 int ofs; in tx4939_irq_mask() local
83 ofs = (irq_nr & 16) + (irq_nr & 1) * 8; in tx4939_irq_mask()
84 __raw_writel((__raw_readl(lvlp) & ~(0xff << ofs)) in tx4939_irq_mask()
85 | (irc_dlevel << ofs), in tx4939_irq_mask()
109 int ofs; in tx4939_irq_set_type() local
137 ofs = (((irq_nr & 16) >> 1) | (irq_nr & (8 - 1))) * 2; in tx4939_irq_set_type()
[all …]
/kernel/linux/linux-5.10/arch/xtensa/variants/test_kc705_be/include/variant/
Dtie-asm.h76 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
77 xchal_sa_start \continue, \ofs
142 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
143 xchal_sa_start \continue, \ofs
201 .macro xchal_cp1_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
202 xchal_sa_start \continue, \ofs
249 .macro xchal_cp1_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
250 xchal_sa_start \continue, \ofs
292 .macro xchal_cp0_store p a b c d continue=0 ofs=-1 select=-1 ; .endm
293 .macro xchal_cp0_load p a b c d continue=0 ofs=-1 select=-1 ; .endm
[all …]
/kernel/linux/linux-5.10/drivers/net/arcnet/
Darc-rawmode.c45 int ofs; in rx() local
50 ofs = 512 - length; in rx()
52 ofs = 256 - length; in rx()
70 lp->hw.copy_from_card(dev, bufnum, ofs + sizeof(pkt->soft), in rx()
118 int ofs; in prepare_tx() local
134 hard->offset[1] = ofs = 512 - length; in prepare_tx()
137 hard->offset[1] = ofs = 512 - length - 3; in prepare_tx()
139 hard->offset[0] = ofs = 256 - length; in prepare_tx()
143 length, ofs); in prepare_tx()
146 lp->hw.copy_to_card(dev, bufnum, ofs, &pkt->soft, length); in prepare_tx()
/kernel/linux/linux-5.10/fs/f2fs/
Dextent_cache.c19 unsigned int ofs) in __lookup_rb_tree_fast() argument
22 if (cached_re->ofs <= ofs && in __lookup_rb_tree_fast()
23 cached_re->ofs + cached_re->len > ofs) { in __lookup_rb_tree_fast()
31 unsigned int ofs) in __lookup_rb_tree_slow() argument
39 if (ofs < re->ofs) in __lookup_rb_tree_slow()
41 else if (ofs >= re->ofs + re->len) in __lookup_rb_tree_slow()
50 struct rb_entry *cached_re, unsigned int ofs) in f2fs_lookup_rb_tree() argument
54 re = __lookup_rb_tree_fast(cached_re, ofs); in f2fs_lookup_rb_tree()
56 return __lookup_rb_tree_slow(root, ofs); in f2fs_lookup_rb_tree()
87 unsigned int ofs, bool *leftmost) in f2fs_lookup_rb_tree_for_insert() argument
[all …]
/kernel/linux/linux-5.10/arch/xtensa/variants/test_kc705_hifi/include/variant/
Dtie-asm.h77 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
78 xchal_sa_start \continue, \ofs
143 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
144 xchal_sa_start \continue, \ofs
205 .macro xchal_cp1_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
206 xchal_sa_start \continue, \ofs
262 .macro xchal_cp1_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
263 xchal_sa_start \continue, \ofs
313 .macro xchal_cp0_store p a b c d continue=0 ofs=-1 select=-1 ; .endm
314 .macro xchal_cp0_load p a b c d continue=0 ofs=-1 select=-1 ; .endm
[all …]

1234567891011