Searched refs:memsize (Results 1 – 11 of 11) sorted by relevance
/linux-4.19.296/lib/ |
D | xxhash.c | 281 if (state->memsize + len < 16) { /* fill in tmp buffer */ in xxh32_update() 282 memcpy((uint8_t *)(state->mem32) + state->memsize, input, len); in xxh32_update() 283 state->memsize += (uint32_t)len; in xxh32_update() 287 if (state->memsize) { /* some data left from previous update */ in xxh32_update() 290 memcpy((uint8_t *)(state->mem32) + state->memsize, input, in xxh32_update() 291 16 - state->memsize); in xxh32_update() 302 p += 16-state->memsize; in xxh32_update() 303 state->memsize = 0; in xxh32_update() 332 state->memsize = (uint32_t)(b_end-p); in xxh32_update() 343 state->memsize; in xxh32_digest() [all …]
|
/linux-4.19.296/include/linux/ |
D | xxhash.h | 131 uint32_t memsize; member 144 uint32_t memsize; member
|
/linux-4.19.296/drivers/s390/char/ |
D | tape.h | 307 tape_ccw_cc(struct ccw1 *ccw, __u8 cmd_code, __u16 memsize, void *cda) in tape_ccw_cc() argument 311 ccw->count = memsize; in tape_ccw_cc() 317 tape_ccw_end(struct ccw1 *ccw, __u8 cmd_code, __u16 memsize, void *cda) in tape_ccw_end() argument 321 ccw->count = memsize; in tape_ccw_end()
|
/linux-4.19.296/drivers/edac/ |
D | ti_edac.c | 136 u32 memsize; in ti_edac_setup_dimm() local 179 memsize = 1 << bits; in ti_edac_setup_dimm() 181 dimm->nr_pages = memsize >> PAGE_SHIFT; in ti_edac_setup_dimm()
|
/linux-4.19.296/include/uapi/rdma/ |
D | cxgb3-abi.h | 61 __u32 memsize; member
|
D | cxgb4-abi.h | 60 __aligned_u64 memsize; member
|
/linux-4.19.296/include/uapi/linux/ |
D | cycx_cfm.h | 67 unsigned long memsize; member
|
/linux-4.19.296/include/sound/ |
D | util_mem.h | 51 struct snd_util_memhdr *snd_util_memhdr_new(int memsize);
|
/linux-4.19.296/include/video/ |
D | mbxfb.h | 23 unsigned long memsize; /* if 0 use ODFB? */ member
|
D | vga.h | 185 __u32 memsize; /* VGA window size, 0 for default 64K */ member
|
/linux-4.19.296/fs/ |
D | binfmt_misc.c | 322 int memsize, err; in create_entry() local 334 memsize = sizeof(Node) + count + 8; in create_entry() 335 e = kmalloc(memsize, GFP_KERNEL); in create_entry()
|