/Linux-v4.19/lib/ |
D | decompress_unlzo.c | 55 STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len) in parse_header() argument 108 *skip = parse - input; in parse_header() 119 long skip = 0; in unlzo() local 169 if (!parse_header(in_buf, &skip, in_len)) { in unlzo() 173 in_buf += skip; in unlzo() 174 in_len -= skip; in unlzo() 183 *posp = skip; in unlzo() 188 skip = fill(in_buf + in_len, 4 - in_len); in unlzo() 189 if (skip > 0) in unlzo() 190 in_len += skip; in unlzo() [all …]
|
D | sg_split.c | 23 off_t skip, const size_t *sizes, in sg_calculate_split() argument 39 if (skip > sglen) { in sg_calculate_split() 40 skip -= sglen; in sg_calculate_split() 44 len = min_t(size_t, size, sglen - skip); in sg_calculate_split() 47 curr->skip_sg0 = skip; in sg_calculate_split() 53 while (!size && (skip + len < sglen) && (--nb_splits > 0)) { in sg_calculate_split() 56 skip += len; in sg_calculate_split() 57 len = min_t(size_t, size, sglen - skip); in sg_calculate_split() 60 curr->skip_sg0 = skip; in sg_calculate_split() 65 skip = 0; in sg_calculate_split() [all …]
|
D | iov_iter.c | 12 #define iterate_iovec(i, n, __v, __p, skip, STEP) { \ argument 16 __v.iov_len = min(n, __p->iov_len - skip); \ 18 __v.iov_base = __p->iov_base + skip; \ 21 skip += __v.iov_len; \ 34 skip = __v.iov_len; \ 40 #define iterate_kvec(i, n, __v, __p, skip, STEP) { \ argument 43 __v.iov_len = min(n, __p->iov_len - skip); \ 45 __v.iov_base = __p->iov_base + skip; \ 47 skip += __v.iov_len; \ 57 skip = __v.iov_len; \ [all …]
|
D | rhashtable.c | 670 iter->skip = 0; in rhashtable_walk_enter() 732 iter->skip = 0; in rhashtable_walk_start_check() 742 int skip = 0; in rhashtable_walk_start_check() local 744 skip++; in rhashtable_walk_start_check() 746 iter->skip = skip; in rhashtable_walk_start_check() 757 int skip = 0; in rhashtable_walk_start_check() local 762 skip++; in rhashtable_walk_start_check() 765 iter->skip = skip; in rhashtable_walk_start_check() 799 int skip = iter->skip; in __rhashtable_walk_find_next() local 806 if (!skip) in __rhashtable_walk_find_next() [all …]
|
/Linux-v4.19/drivers/gpu/drm/savage/ |
D | savage_state.c | 284 unsigned int skip = cmd_header->prim.skip; in savage_dispatch_dma_prim() local 324 if (skip != 0) { in savage_dispatch_dma_prim() 325 DRM_ERROR("invalid skip flags 0x%04x for DMA\n", skip); in savage_dispatch_dma_prim() 329 unsigned int size = 10 - (skip & 1) - (skip >> 1 & 1) - in savage_dispatch_dma_prim() 330 (skip >> 2 & 1) - (skip >> 3 & 1) - (skip >> 4 & 1) - in savage_dispatch_dma_prim() 331 (skip >> 5 & 1) - (skip >> 6 & 1) - (skip >> 7 & 1); in savage_dispatch_dma_prim() 332 if (skip > SAVAGE_SKIP_ALL_S4 || size != 8) { in savage_dispatch_dma_prim() 333 DRM_ERROR("invalid skip flags 0x%04x for DMA\n", skip); in savage_dispatch_dma_prim() 401 BCI_DRAW_INDICES_S4(count, prim, skip); in savage_dispatch_dma_prim() 425 unsigned int skip = cmd_header->prim.skip; in savage_dispatch_vb_prim() local [all …]
|
/Linux-v4.19/drivers/media/pci/bt8xx/ |
D | btcx-risc.c | 190 unsigned int clip,skip; in btcx_calc_skips() local 193 skip=0; in btcx_calc_skips() 215 if (0 == skip || clips[clip].c.left > skips[skip-1].end) { in btcx_calc_skips() 217 skips[skip].start = clips[clip].c.left; in btcx_calc_skips() 218 if (skips[skip].start < 0) in btcx_calc_skips() 219 skips[skip].start = 0; in btcx_calc_skips() 220 skips[skip].end = clips[clip].c.left + clips[clip].c.width; in btcx_calc_skips() 221 if (skips[skip].end > width) in btcx_calc_skips() 222 skips[skip].end = width; in btcx_calc_skips() 223 skip++; in btcx_calc_skips() [all …]
|
/Linux-v4.19/arch/powerpc/boot/ |
D | decompress.c | 48 static unsigned long skip; variable 71 if (end <= skip) { in flush() 77 if (decompressed_bytes < skip && end > skip) { in flush() 78 offset = skip - decompressed_bytes; in flush() 85 out = &output_buffer[decompressed_bytes - skip]; in flush() 135 skip = _skip; in partial_decompress() 147 return decompressed_bytes - skip; in partial_decompress()
|
/Linux-v4.19/drivers/crypto/bcm/ |
D | util.h | 66 void __dump_sg(struct scatterlist *sg, unsigned int skip, unsigned int len); 68 #define dump_sg(sg, skip, len) __dump_sg(sg, skip, len) argument 77 #define dump_sg(sg, skip, len) do {} while (0) argument 81 int spu_sg_at_offset(struct scatterlist *sg, unsigned int skip, 86 unsigned int len, unsigned int skip); 89 unsigned int len, unsigned int skip); 91 int spu_sg_count(struct scatterlist *sg_list, unsigned int skip, int nbytes); 93 struct scatterlist **from_sg, u32 *skip,
|
D | util.c | 38 int spu_sg_at_offset(struct scatterlist *sg, unsigned int skip, in spu_sg_at_offset() argument 47 while (next_index <= skip) { in spu_sg_at_offset() 55 *sge_offset = skip - index; in spu_sg_at_offset() 62 unsigned int len, unsigned int skip) in sg_copy_part_to_buf() argument 67 copied = sg_pcopy_to_buffer(src, nents, dest, len, skip); in sg_copy_part_to_buf() 71 flow_log("sg with %u entries and skip %u\n", nents, skip); in sg_copy_part_to_buf() 81 unsigned int len, unsigned int skip) in sg_copy_part_from_buf() argument 86 copied = sg_pcopy_from_buffer(dest, nents, src, len, skip); in sg_copy_part_from_buf() 90 flow_log("sg with %u entries and skip %u\n", nents, skip); in sg_copy_part_from_buf() 104 int spu_sg_count(struct scatterlist *sg_list, unsigned int skip, int nbytes) in spu_sg_count() argument [all …]
|
/Linux-v4.19/arch/arm64/kernel/ |
D | stacktrace.c | 107 unsigned int skip; member 118 if (data->skip) { in save_trace() 119 data->skip--; in save_trace() 134 data.skip = trace->skip; in save_stack_trace_regs() 158 data.skip = trace->skip; in __save_stack_trace() 166 data.skip += 2; in __save_stack_trace()
|
/Linux-v4.19/arch/arm/kernel/ |
D | stacktrace.c | 68 unsigned int skip; member 80 if (data->skip) { in save_trace() 81 data->skip--; in save_trace() 108 data.skip = trace->skip; in __save_stack_trace() 129 data.skip += 2; in __save_stack_trace() 147 data.skip = trace->skip; in save_stack_trace_regs()
|
/Linux-v4.19/arch/xtensa/kernel/ |
D | stacktrace.c | 198 unsigned skip; member 206 if (trace_data->skip) { in stack_trace_cb() 207 --trace_data->skip; in stack_trace_cb() 221 .skip = trace->skip, in save_stack_trace_tsk() 239 unsigned skip; member 246 if (r->skip) { in return_address_cb() 247 --r->skip; in return_address_cb() 259 .skip = level + 1, in return_address()
|
/Linux-v4.19/arch/ia64/kernel/ |
D | stacktrace.c | 17 int skip = trace->skip; in ia64_do_save_stack() local 24 if (skip == 0) { in ia64_do_save_stack() 29 skip--; in ia64_do_save_stack()
|
/Linux-v4.19/arch/hexagon/kernel/ |
D | stacktrace.c | 42 int skip = trace->skip; in save_stack_trace() local 51 if (skip) { in save_stack_trace() 52 skip--; in save_stack_trace()
|
/Linux-v4.19/arch/nds32/kernel/ |
D | stacktrace.c | 18 int skip = trace->skip; in save_stack_trace_tsk() local 42 if (skip) { in save_stack_trace_tsk() 43 skip--; in save_stack_trace_tsk()
|
/Linux-v4.19/arch/unicore32/kernel/ |
D | stacktrace.c | 77 unsigned int skip; member 88 if (data->skip) { in save_trace() 89 data->skip--; in save_trace() 104 data.skip = trace->skip; in save_stack_trace_tsk()
|
/Linux-v4.19/arch/openrisc/kernel/ |
D | stacktrace.c | 32 if (trace->skip > 0) { in save_stack_address() 33 trace->skip--; in save_stack_address() 58 if (trace->skip > 0) { in save_stack_address_nosched() 59 trace->skip--; in save_stack_address_nosched()
|
/Linux-v4.19/arch/arm/mach-iop13xx/ |
D | io.c | 68 goto skip; in __iop13xx_iounmap() 74 goto skip; in __iop13xx_iounmap() 78 goto skip; in __iop13xx_iounmap() 82 skip: in __iop13xx_iounmap()
|
/Linux-v4.19/arch/sh/kernel/ |
D | stacktrace.c | 36 if (trace->skip > 0) { in save_stack_address() 37 trace->skip--; in save_stack_address() 71 if (trace->skip > 0) { in save_stack_address_nosched() 72 trace->skip--; in save_stack_address_nosched()
|
/Linux-v4.19/fs/squashfs/ |
D | file.c | 100 int skip) in empty_meta_index() argument 108 TRACE("empty_meta_index: offset %d, skip %d\n", offset, skip); in empty_meta_index() 150 meta->skip = skip; in empty_meta_index() 229 int skip = blocks / ((SQUASHFS_META_ENTRIES + 1) in calculate_skip() local 231 return min(SQUASHFS_CACHED_BLKS - 1, skip + 1); in calculate_skip() 244 int skip = calculate_skip(i_size_read(inode) >> msblk->block_log); in fill_meta_index() local 256 index /= SQUASHFS_META_INDEXES * skip; in fill_meta_index() 262 meta = empty_meta_index(inode, offset + 1, skip); in fill_meta_index() 288 int blocks = skip * SQUASHFS_META_INDEXES; in fill_meta_index() 327 return offset * SQUASHFS_META_INDEXES * skip; in fill_meta_index()
|
/Linux-v4.19/arch/mips/kernel/ |
D | stacktrace.c | 26 if (trace->skip > 0) in save_raw_context_stack() 27 trace->skip--; in save_raw_context_stack() 54 if (trace->skip > 0) in save_context_stack() 55 trace->skip--; in save_context_stack()
|
/Linux-v4.19/tools/testing/selftests/ia64/ |
D | aliasing-test.c | 82 goto skip; in scan_tree() 84 goto skip; in scan_tree() 113 skip: in scan_tree() 167 goto skip; in scan_rom() 169 goto skip; in scan_rom() 202 skip: in scan_rom()
|
/Linux-v4.19/tools/testing/selftests/ |
D | lib.mk | 46 (if [ $$? -eq $$skip ]; then \ 53 (if [ $$? -eq $$skip ]; then \ 65 skip=`echo 4`; \ 70 $(call RUN_TEST_PRINT_RESULT,$(TEST),$(BASENAME_TEST),$(test_num),$(skip)) \ 119 … && echo \"ok 1..$$test_num $$TEST_HDR_MSG [PASS]\") || (if [ \$$? -eq \$$skip ]; then echo \"not …
|
/Linux-v4.19/Documentation/media/dvb-drivers/ |
D | lmedm04.rst | 57 dd if=US280D.sys ibs=1 skip=42360 count=3924 of=dvb-usb-lme2510-lg.fw 64 dd if=US280D.sys ibs=1 skip=35200 count=3850 of=dvb-usb-lme2510c-lg.fw 76 dd if=US290D.sys ibs=1 skip=36856 count=3976 of=dvb-usb-lme2510-s0194.fw 85 dd if=US290D.sys ibs=1 skip=33152 count=3697 of=dvb-usb-lme2510c-s0194.fw 95 dd if=US2B0D.sys ibs=1 skip=34432 count=3871 of=dvb-usb-lme2510c-rs2000.fw
|
/Linux-v4.19/sound/pci/emu10k1/ |
D | voice.c | 52 int i, j, k, first_voice, last_voice, skip; in voice_alloc() local 69 skip = 0; in voice_alloc() 73 skip = 1; in voice_alloc() 77 if (!skip) { in voice_alloc()
|