Searched refs:blk (Results 1 - 25 of 285) sorted by path

1234567891011>>

/linux-master/arch/mips/alchemy/common/
H A Dvss.c18 #define VSS_ADDR(blk) (KSEG1ADDR(AU1300_VSS_PHYS_ADDR) + (blk * 0x0c))
/linux-master/arch/powerpc/include/asm/
H A Drheap.h87 void rh_dump_blk(rh_info_t *info, rh_block_t *blk);
/linux-master/arch/powerpc/lib/
H A Drheap.c47 rh_block_t *block, *blk; local
73 for (i = 0, blk = block; i < info->max_blocks; i++, blk++)
74 fixup(blks, blke, delta, &blk->list);
91 blk = block + info->max_blocks - new_blocks;
92 for (i = 0; i < new_blocks; i++, blk++)
93 list_add(&blk->list, &info->empty_list);
123 rh_block_t *blk; local
133 blk = list_entry(info->empty_list.next, rh_block_t, list);
134 list_del_init(&blk
145 release_slot(rh_info_t * info, rh_block_t * blk) argument
153 rh_block_t *blk; local
234 rh_block_t *blk; local
304 rh_block_t *blk; local
331 rh_block_t *blk; local
373 rh_block_t *blk, *newblk; local
445 rh_block_t *blk; local
530 rh_block_t *blk, *newblk1, *newblk2; local
614 rh_block_t *blk, *blk2; local
643 rh_block_t *blk; local
681 rh_block_t *blk, *blk2; local
740 rh_dump_blk(rh_info_t * info, rh_block_t * blk) argument
[all...]
/linux-master/arch/sparc/lib/
H A DM7memset.S179 and %o2, 63, %o3 ! %o3 = bytes left after blk stores.
/linux-master/arch/x86/mm/
H A Dnuma_internal.h16 struct numa_memblk blk[NR_NODE_MEMBLKS]; member in struct:numa_meminfo
H A Dnuma.c146 mi->blk[mi->nr_blks].start = start;
147 mi->blk[mi->nr_blks].end = end;
148 mi->blk[mi->nr_blks].nid = nid;
158 * Remove @idx'th numa_memblk from @mi by shifting @mi->blk[] and
164 memmove(&mi->blk[idx], &mi->blk[idx + 1],
165 (mi->nr_blks - idx) * sizeof(mi->blk[0]));
177 dst->blk[dst->nr_blks++] = src->blk[idx];
248 struct numa_memblk *bi = &mi->blk[
957 struct numa_memblk **blk = &numa_memblk_list[0]; local
[all...]
H A Dnuma_emulation.c27 if (mi->blk[i].nid == nid)
50 struct numa_memblk *eb = &ei->blk[ei->nr_blks];
51 struct numa_memblk *pb = &pi->blk[phys_blk];
137 start = pi->blk[phys_blk].start;
138 limit = pi->blk[phys_blk].end;
285 start = pi->blk[phys_blk].start;
286 limit = pi->blk[phys_blk].end;
404 * The reason we pass in blk[0] is due to
407 * and then move everything else up in the pi.blk
409 * at blk[
[all...]
/linux-master/drivers/net/ethernet/chelsio/cxgb/
H A Dvsc7326_reg.h14 #define CRA(blk,sub,adr) ((((blk) & 0x7) << 13) | (((sub) & 0xf) << 9) | (((adr) & 0xff) << 1))
/linux-master/fs/affs/
H A Dbitmap.c44 u32 blk, bmap, bit, mask, tmp; local
52 blk = block - sbi->s_reserved;
53 bmap = blk / sbi->s_bmap_bits;
54 bit = blk % sbi->s_bmap_bits;
122 u32 blk, bmap, bit, mask, mask2, tmp; local
144 blk = goal - sbi->s_reserved;
145 bmap = blk / sbi->s_bmap_bits;
167 blk = bmap * sbi->s_bmap_bits;
182 bit = blk % sbi->s_bmap_bits;
186 blk
249 u32 size, blk, end, offset, mask; local
[all...]
/linux-master/fs/squashfs/
H A Dnamei.c200 unsigned int blk, off, ino_num; local
202 blk = le32_to_cpu(dirh.start_block);
206 ino = SQUASHFS_MKINODE(blk, off);
210 blk, off, ino_num);
/linux-master/fs/ufs/
H A Dufs_fs.h218 #define ufs_cgsblock(c) (ufs_cgstart(c) + uspi->s_sblkno) /* super blk */
220 #define ufs_cgimin(c) (ufs_cgstart(c) + uspi->s_iblkno) /* inode blk */
257 #define ufs_lblktosize(blk) ((blk) << uspi->s_bshift)
373 __fs32 fs_bmask; /* ``blkoff'' calc of blk offsets */
408 __fs32 fs_csaddr; /* blk addr of cyl grp summary area */
456 __fs64 fs_csaddr; /* blk addr of cyl grp summary area */
744 __u32 s_bmask; /* `blkoff'' calc of blk offsets */
759 __u64 s_csaddr; /* blk addr of cyl grp summary area */
921 __fs64 fs_csaddr; /* blk add
[all...]
/linux-master/include/sound/
H A Dutil_mem.h21 #define snd_util_memblk_argptr(blk) (void*)((char*)(blk) + sizeof(struct snd_util_memblk))
41 int snd_util_mem_free(struct snd_util_memhdr *hdr, struct snd_util_memblk *blk);
46 void __snd_util_mem_free(struct snd_util_memhdr *hdr, struct snd_util_memblk *blk);
/linux-master/sound/synth/
H A Dutil_mem.c62 struct snd_util_memblk *blk; local
79 blk = get_memblk(p);
80 if (blk->offset - prev_offset >= units)
82 prev_offset = blk->offset + blk->size;
100 struct snd_util_memblk *blk; local
102 blk = kmalloc(sizeof(struct snd_util_memblk) + hdr->block_extra_size,
104 if (blk == NULL)
108 blk->offset = 0;
111 blk
127 struct snd_util_memblk *blk; local
140 __snd_util_mem_free(struct snd_util_memhdr *hdr, struct snd_util_memblk *blk) argument
151 snd_util_mem_free(struct snd_util_memhdr *hdr, struct snd_util_memblk *blk) argument
[all...]
/linux-master/arch/arm64/crypto/
H A DMakefile56 obj-$(CONFIG_CRYPTO_AES_ARM64_CE_BLK) += aes-ce-blk.o
57 aes-ce-blk-y := aes-glue-ce.o aes-ce.o
59 obj-$(CONFIG_CRYPTO_AES_ARM64_NEON_BLK) += aes-neon-blk.o
60 aes-neon-blk-y := aes-glue-neon.o aes-neon.o
/linux-master/arch/loongarch/include/asm/
H A Dnuma.h34 struct numa_memblk blk[NR_NODE_MEMBLKS]; member in struct:numa_meminfo
/linux-master/arch/loongarch/kernel/
H A Dnuma.c170 mi->blk[mi->nr_blks].start = PFN_ALIGN(start);
171 mi->blk[mi->nr_blks].end = PFN_ALIGN(end - PAGE_SIZE + 1);
172 mi->blk[mi->nr_blks].nid = nid;
261 struct numa_memblk *mb = &numa_meminfo.blk[i];
/linux-master/arch/um/drivers/
H A Dubd_kern.c27 #include <linux/blk-mq.h>
/linux-master/arch/x86/events/intel/
H A Dds.c261 u8 dse, bool tlb, bool lock, bool blk)
272 if (blk)
260 __adl_latency_data_small(struct perf_event *event, u64 status, u8 dse, bool tlb, bool lock, bool blk) argument
/linux-master/block/
H A DMakefile6 obj-y := bdev.o fops.o bio.o elevator.o blk-core.o blk-sysfs.o \
7 blk-flush.o blk-settings.o blk-ioc.o blk-map.o \
8 blk-merge.o blk-timeout.o \
9 blk-lib.o blk
[all...]
H A Dbdev.c15 #include <linux/blk-integrity.h>
31 #include "blk.h"
H A Dbio-integrity.c9 #include <linux/blk-integrity.h>
15 #include "blk.h"
H A Dbio.c19 #include <linux/blk-crypto.h>
23 #include "blk.h"
24 #include "blk-rq-qos.h"
25 #include "blk-cgroup.h"
H A Dblk-cgroup.h17 #include <linux/blk-cgroup.h>
20 #include <linux/blk-mq.h>
22 #include "blk.h"
55 /* association between a blk cgroup and a request queue */
H A Dblk-core.c19 #include <linux/blk-pm.h>
20 #include <linux/blk-integrity.h>
42 #include <linux/blk-crypto.h>
47 #include "blk.h"
48 #include "blk-mq-sched.h"
49 #include "blk-pm.h"
50 #include "blk-cgroup.h"
51 #include "blk-throttle.h"
52 #include "blk-ioprio.h"
H A Dblk-crypto-fallback.c10 #define pr_fmt(fmt) "blk-crypto-fallback: " fmt
13 #include <linux/blk-crypto.h>
14 #include <linux/blk-crypto-profile.h>
22 #include "blk-cgroup.h"
23 #include "blk-crypto-internal.h"
28 "Number of preallocated bounce pages for the blk-crypto crypto API fallback");
33 "Number of keyslots for the blk-crypto crypto API fallback");
38 "Number of preallocated bio fallback crypto contexts for blk-crypto to use during crypto API fallback");
293 * Get a blk-crypto-fallback keyslot that contains a crypto_skcipher for
396 * Get a blk
[all...]

Completed in 406 milliseconds

1234567891011>>