/linux-4.1.27/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 | iov_iter.c | 8 #define iterate_iovec(i, n, __v, __p, skip, STEP) { \ argument 12 __v.iov_len = min(n, __p->iov_len - skip); \ 14 __v.iov_base = __p->iov_base + skip; \ 17 skip += __v.iov_len; \ 30 skip = __v.iov_len; \ 36 #define iterate_kvec(i, n, __v, __p, skip, STEP) { \ argument 39 __v.iov_len = min(n, __p->iov_len - skip); \ 41 __v.iov_base = __p->iov_base + skip; \ 43 skip += __v.iov_len; \ 53 skip = __v.iov_len; \ [all …]
|
D | scatterlist.c | 622 void *buf, size_t buflen, off_t skip, in sg_copy_buffer() argument 637 if (!sg_miter_skip(&miter, skip)) in sg_copy_buffer() 707 void *buf, size_t buflen, off_t skip) in sg_pcopy_from_buffer() argument 709 return sg_copy_buffer(sgl, nents, buf, buflen, skip, false); in sg_pcopy_from_buffer() 725 void *buf, size_t buflen, off_t skip) in sg_pcopy_to_buffer() argument 727 return sg_copy_buffer(sgl, nents, buf, buflen, skip, true); in sg_pcopy_to_buffer()
|
D | rhashtable.c | 503 iter->skip = 0; in rhashtable_walk_init() 595 int skip = iter->skip; in rhashtable_walk_next() local 598 if (!skip) in rhashtable_walk_next() 600 skip--; in rhashtable_walk_next() 605 iter->skip++; in rhashtable_walk_next() 611 iter->skip = 0; in rhashtable_walk_next() 622 iter->skip = 0; in rhashtable_walk_next()
|
D | dynamic_debug.c | 71 int skip = strlen(__FILE__) - strlen("lib/dynamic_debug.c"); in trim_prefix() local 73 if (strncmp(path, __FILE__, skip)) in trim_prefix() 74 skip = 0; /* prefix mismatch, don't skip */ in trim_prefix() 76 return path + skip; in trim_prefix()
|
/linux-4.1.27/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 …]
|
D | savage_drv.h | 466 #define BCI_DRAW_PRIMITIVE(n, type, skip) \ argument 467 BCI_WRITE(BCI_CMD_DRAW_PRIM | (type) | (skip) | \ 469 #define DMA_DRAW_PRIMITIVE(n, type, skip) \ argument 470 DMA_WRITE(BCI_CMD_DRAW_PRIM | (type) | (skip) | \ 477 #define BCI_DRAW_INDICES_S4(n, type, skip) \ argument 479 (skip) | ((n) << 16))
|
/linux-4.1.27/drivers/media/pci/bt8xx/ |
D | btcx-risc.c | 187 unsigned int clip,skip; in btcx_calc_skips() local 190 skip=0; in btcx_calc_skips() 212 if (0 == skip || clips[clip].c.left > skips[skip-1].end) { in btcx_calc_skips() 214 skips[skip].start = clips[clip].c.left; in btcx_calc_skips() 215 if (skips[skip].start < 0) in btcx_calc_skips() 216 skips[skip].start = 0; in btcx_calc_skips() 217 skips[skip].end = clips[clip].c.left + clips[clip].c.width; in btcx_calc_skips() 218 if (skips[skip].end > width) in btcx_calc_skips() 219 skips[skip].end = width; in btcx_calc_skips() 220 skip++; in btcx_calc_skips() [all …]
|
D | bttv-risc.c | 251 unsigned skip, nskips; in bttv_risc_overlay() local 297 for (start = 0, skip = 0; start < ov->w.width; start = end) { in bttv_risc_overlay() 298 if (skip >= nskips) { in bttv_risc_overlay() 301 } else if (start < skips[skip].start) { in bttv_risc_overlay() 303 end = skips[skip].start; in bttv_risc_overlay() 306 end = skips[skip].end; in bttv_risc_overlay() 307 skip++; in bttv_risc_overlay()
|
/linux-4.1.27/arch/xtensa/kernel/ |
D | stacktrace.c | 52 unsigned skip; member 60 if (trace_data->skip) { in stack_trace_cb() 61 --trace_data->skip; in stack_trace_cb() 75 .skip = trace->skip, in save_stack_trace_tsk() 93 unsigned skip; member 100 if (r->skip) { in return_address_cb() 101 --r->skip; in return_address_cb() 113 .skip = level + 1, in return_address()
|
D | head.S | 232 beq a4, a5, 1b # skip, empty entry 233 beq a4, a6, 1b # skip, source and dest. are the same
|
/linux-4.1.27/arch/arm/kernel/ |
D | stacktrace.c | 67 unsigned int skip; member 79 if (data->skip) { in save_trace() 80 data->skip--; in save_trace() 117 data.skip = trace->skip; in __save_stack_trace() 138 data.skip += 2; in __save_stack_trace() 156 data.skip = trace->skip; in save_stack_trace_regs()
|
/linux-4.1.27/arch/ia64/kernel/ |
D | stacktrace.c | 16 int skip = trace->skip; in ia64_do_save_stack() local 23 if (skip == 0) { in ia64_do_save_stack() 28 skip--; in ia64_do_save_stack()
|
D | palinfo.c | 152 int i, begin, skip = 0; in bitregister_process() local 161 if ((value & 0x1) == 0 && skip == 0) { in bitregister_process() 166 skip = 1; in bitregister_process() 168 } else if ((value & 0x1) && skip == 1) { in bitregister_process() 169 skip = 0; in bitregister_process()
|
/linux-4.1.27/arch/avr32/kernel/ |
D | stacktrace.c | 30 int skip = trace->skip; in save_stack_trace() local 39 if (skip) { in save_stack_trace() 40 skip--; in save_stack_trace()
|
/linux-4.1.27/arch/hexagon/kernel/ |
D | stacktrace.c | 41 int skip = trace->skip; in save_stack_trace() local 50 if (skip) { in save_stack_trace() 51 skip--; in save_stack_trace()
|
/linux-4.1.27/arch/blackfin/kernel/ |
D | stacktrace.c | 28 int skip = trace->skip; in save_stack_trace() local 37 if (skip) { in save_stack_trace() 38 skip--; in save_stack_trace()
|
D | kgdb.c | 151 unsigned int skip:1; member 195 breakinfo[breakno].skip = 0; in bfin_set_hw_break() 262 + breakinfo->skip); in bfin_correct_hw_break() 268 + breakinfo->skip); in bfin_correct_hw_break() 274 + breakinfo->skip); in bfin_correct_hw_break() 280 + breakinfo->skip); in bfin_correct_hw_break() 286 + breakinfo->skip); in bfin_correct_hw_break() 292 + breakinfo->skip); in bfin_correct_hw_break() 300 + breakinfo->skip); in bfin_correct_hw_break() 308 + breakinfo->skip); in bfin_correct_hw_break()
|
/linux-4.1.27/arch/arm64/kernel/ |
D | stacktrace.c | 75 unsigned int skip; member 86 if (data->skip) { in save_trace() 87 data->skip--; in save_trace() 102 data.skip = trace->skip; in save_stack_trace_tsk()
|
/linux-4.1.27/arch/unicore32/kernel/ |
D | stacktrace.c | 76 unsigned int skip; member 87 if (data->skip) { in save_trace() 88 data->skip--; in save_trace() 103 data.skip = trace->skip; in save_stack_trace_tsk()
|
/linux-4.1.27/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-4.1.27/drivers/infiniband/hw/mlx5/ |
D | mem.c | 53 int skip; in mlx5_ib_cont_pages() local 75 skip = 1 << m; in mlx5_ib_cont_pages() 76 mask = skip - 1; in mlx5_ib_cont_pages() 85 skip = 1 << m; in mlx5_ib_cont_pages() 86 mask = skip - 1; in mlx5_ib_cont_pages() 93 skip = 1 << m; in mlx5_ib_cont_pages() 94 mask = skip - 1; in mlx5_ib_cont_pages()
|
/linux-4.1.27/arch/sh/kernel/ |
D | stacktrace.c | 35 if (trace->skip > 0) { in save_stack_address() 36 trace->skip--; in save_stack_address() 70 if (trace->skip > 0) { in save_stack_address_nosched() 71 trace->skip--; in save_stack_address_nosched()
|
D | head_32.S | 45 .skip PAGE_SIZE - empty_zero_page - 1b 302 cmp/eq #0, r0 ! skip clear if set to zero
|
/linux-4.1.27/arch/mips/kernel/ |
D | stacktrace.c | 23 if (trace->skip > 0) in save_raw_context_stack() 24 trace->skip--; in save_raw_context_stack() 50 if (trace->skip > 0) in save_context_stack() 51 trace->skip--; in save_context_stack()
|
D | r4k_fpu.S | 53 bgez t0, 1f # skip storing odd if FR=0 112 bgez t0, 1f # skip storing odd if FR=0 178 bgez t0, 1f # skip loading odd if FR=0 233 bgez t0, 1f # skip loading odd if FR=0
|
/linux-4.1.27/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() 225 int skip = blocks / ((SQUASHFS_META_ENTRIES + 1) in calculate_skip() local 227 return min(SQUASHFS_CACHED_BLKS - 1, skip + 1); in calculate_skip() 240 int skip = calculate_skip(i_size_read(inode) >> msblk->block_log); in fill_meta_index() local 252 index /= SQUASHFS_META_INDEXES * skip; in fill_meta_index() 258 meta = empty_meta_index(inode, offset + 1, skip); in fill_meta_index() 284 int blocks = skip * SQUASHFS_META_INDEXES; in fill_meta_index() 323 return offset * SQUASHFS_META_INDEXES * skip; in fill_meta_index()
|
/linux-4.1.27/Documentation/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-4.1.27/arch/metag/kernel/ |
D | stacktrace.c | 121 unsigned int skip; member 132 if (data->skip) { in save_trace() 133 data->skip--; in save_trace() 148 data.skip = trace->skip; in save_stack_trace_tsk()
|
/linux-4.1.27/arch/s390/kernel/ |
D | stacktrace.c | 30 if (!trace->skip) in save_context_stack() 33 trace->skip--; in save_context_stack() 51 if (!trace->skip) in save_context_stack() 54 trace->skip--; in save_context_stack()
|
D | head.S | 185 bz .Lagain1 # skip dataset header 187 bz .Lagain1 # skip dateset trailer 224 clc 0(3,%r2),.L_hdr # skip HDRx and EOFx
|
/linux-4.1.27/Documentation/dvb/ |
D | lmedm04.txt | 49 dd if=US280D.sys ibs=1 skip=42360 count=3924 of=dvb-usb-lme2510-lg.fw 54 dd if=US280D.sys ibs=1 skip=35200 count=3850 of=dvb-usb-lme2510c-lg.fw 63 dd if=US290D.sys ibs=1 skip=36856 count=3976 of=dvb-usb-lme2510-s0194.fw 67 dd if=US290D.sys ibs=1 skip=33152 count=3697 of=dvb-usb-lme2510c-s0194.fw 75 dd if=US2B0D.sys ibs=1 skip=34432 count=3871 of=dvb-usb-lme2510c-rs2000.fw
|
/linux-4.1.27/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()
|
/linux-4.1.27/arch/arc/kernel/ |
D | stacktrace.c | 179 if (trace->skip > 0) in __collect_all() 180 trace->skip--; in __collect_all() 197 if (trace->skip > 0) in __collect_all_but_sched() 198 trace->skip--; in __collect_all_but_sched()
|
/linux-4.1.27/arch/m68k/kernel/ |
D | sun3-head.S | 26 swapper_pg_dir: .skip 0x2000 27 pg0: .skip 0x2000 28 kernel_pmd_table: .skip 0x2000
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/ |
D | power.c | 166 u8 skip; in iwl_static_sleep_cmd() local 189 skip = 0; in iwl_static_sleep_cmd() 195 skip = table[lvl].no_dtim; in iwl_static_sleep_cmd() 198 max_sleep[IWL_POWER_VEC_SIZE - 1] = skip + 1; in iwl_static_sleep_cmd() 205 cpu_to_le32(period * (skip + 1)); in iwl_static_sleep_cmd() 212 if (skip) in iwl_static_sleep_cmd() 255 skip, period); in iwl_static_sleep_cmd()
|
/linux-4.1.27/arch/sparc/kernel/ |
D | prom_32.c | 221 int skip, tmp, fd; in of_console_init() local 227 skip = 0; in of_console_init() 234 skip = 1; in of_console_init() 247 tmp = skip; in of_console_init() 261 (skip ? ":b" : ":a")); in of_console_init()
|
D | stacktrace.c | 53 if (trace->skip > 0) in __save_stack_trace() 54 trace->skip--; in __save_stack_trace()
|
D | head_64.S | 141 .skip 64 143 .skip 64 893 .skip 0x4000 + _start - 1b 899 .skip (32 * 1024) 903 .skip (64 * 1024)
|
/linux-4.1.27/drivers/staging/lustre/lnet/lnet/ |
D | router_proc.c | 212 int skip = off - 1; in proc_lnet_routes() local 240 if (skip == 0) { in proc_lnet_routes() 245 skip--; in proc_lnet_routes() 333 int skip = off - 1; in proc_lnet_routers() local 350 if (skip == 0) { in proc_lnet_routers() 355 skip--; in proc_lnet_routers() 470 int skip; in proc_lnet_peers() local 474 skip = hoff - 1; in proc_lnet_peers() 494 if (skip == 0) { in proc_lnet_peers() 511 skip--; in proc_lnet_peers() [all …]
|
/linux-4.1.27/tools/testing/ktest/examples/include/ |
D | min-config.conf | 50 IGNORE_CONFIG = ${CONFIG_DIR}/config-skip-net 58 IGNORE_CONFIG = ${CONFIG_DIR}/config-skip
|
/linux-4.1.27/scripts/kconfig/lxdialog/ |
D | util.c | 265 int i, len = 0, skip = 0; in dialog_clear() local 280 skip = len - (columns - 2 - strlen(ellipsis)); in dialog_clear() 284 if (skip == 0) in dialog_clear() 287 skip--; in dialog_clear() 289 if (skip == 0) in dialog_clear() 292 skip--; in dialog_clear() 294 if (skip < strlen(pos->text)) { in dialog_clear() 295 waddstr(stdscr, pos->text + skip); in dialog_clear() 296 skip = 0; in dialog_clear() 298 skip -= strlen(pos->text); in dialog_clear() [all …]
|
/linux-4.1.27/kernel/sched/ |
D | cpupri.c | 78 int skip = 0; in cpupri_find() local 81 skip = 1; in cpupri_find() 103 if (skip) in cpupri_find()
|
/linux-4.1.27/tools/perf/tests/ |
D | builtin-test.c | 302 const char *skip = NULL; in cmd_test() local 304 OPT_STRING('s', "skip", &skip, "tests", "tests to skip"), in cmd_test() 327 if (skip != NULL) in cmd_test() 328 skiplist = intlist__new(skip); in cmd_test()
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | reloc_32.S | 62 b skip 67 b skip 70 bne skip 72 skip: label
|
D | stacktrace.c | 36 if (!trace->skip) in save_context_stack() 39 trace->skip--; in save_context_stack()
|
/linux-4.1.27/net/netfilter/ |
D | nf_conntrack_ftp.c | 70 char skip; member 79 .skip = ' ', 87 .skip = ' ', 103 .skip = '(', 291 char skip, char term, in find_pattern() argument 329 if (skip) { in find_pattern() 330 for (i = plen; data[i] != skip; i++) in find_pattern() 337 pr_debug("Skipped up to `%c'!\n", skip); in find_pattern() 462 search[dir][i].skip, in help()
|
/linux-4.1.27/arch/arm/plat-omap/ |
D | sram.c | 76 unsigned long skip, int cached) in omap_map_sram() argument 83 omap_sram_skip = skip; in omap_map_sram()
|
/linux-4.1.27/fs/jfs/ |
D | jfs_xtree.c | 699 int skip; /* index of entry of insertion */ in xtSplitUp() local 729 skip = split->index; in xtSplitUp() 731 if (skip < nextindex) in xtSplitUp() 732 memmove(&sp->xad[skip + 1], &sp->xad[skip], in xtSplitUp() 733 (nextindex - skip) * sizeof(xad_t)); in xtSplitUp() 736 xad = &sp->xad[skip]; in xtSplitUp() 748 min(skip, (int)xtlck->lwm.offset) : skip; in xtSplitUp() 844 skip = parent->index + 1; in xtSplitUp() 856 split->index = skip; /* index at insert */ in xtSplitUp() 898 if (skip < nextindex) in xtSplitUp() [all …]
|
D | jfs_dtree.c | 942 int skip; /* index of entry of insertion */ in dtSplitUp() local 1149 skip = parent->index + 1; in dtSplitUp() 1183 if ((sp->header.flag & BT_ROOT && skip > 1) || in dtSplitUp() 1184 sp->header.prev != 0 || skip > 1) { in dtSplitUp() 1235 split->index = skip; /* index at insert */ in dtSplitUp() 1278 n = skip >> L2DTSLOTSIZE; in dtSplitUp() 1286 dtInsertEntry(sp, skip, &key, data, &dtlck); in dtSplitUp() 1344 int skip, nextindex, half, left, nxt, off, si; in dtSplitPage() local 1504 skip = split->index; in dtSplitPage() 1517 if (off == skip) in dtSplitPage() [all …]
|
/linux-4.1.27/fs/reiserfs/ |
D | xattr.c | 528 size_t skip = 0; in reiserfs_xattr_set_handle() local 548 skip = file_pos = sizeof(struct reiserfs_xattr_header); in reiserfs_xattr_set_handle() 549 if (chunk + skip > PAGE_CACHE_SIZE) in reiserfs_xattr_set_handle() 550 chunk = PAGE_CACHE_SIZE - skip; in reiserfs_xattr_set_handle() 557 err = __reiserfs_write_begin(page, page_offset, chunk + skip); in reiserfs_xattr_set_handle() 560 memcpy(data + skip, buffer + buffer_pos, chunk); in reiserfs_xattr_set_handle() 563 skip); in reiserfs_xattr_set_handle() 570 skip = 0; in reiserfs_xattr_set_handle() 676 size_t skip = 0; in reiserfs_xattr_get() local 694 skip = file_pos = sizeof(struct reiserfs_xattr_header); in reiserfs_xattr_get() [all …]
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-test.txt | 27 --skip:: 28 Tests to skip (comma separated numeric list).
|
/linux-4.1.27/scripts/ |
D | checkkconfigsymbols.py | 234 skip = False 247 skip = False 249 skip = True 250 elif skip:
|
/linux-4.1.27/arch/x86/include/asm/ |
D | alternative-asm.h | 34 .skip -(((144f-143f)-(141b-140b)) > 0) * ((144f-143f)-(141b-140b)),0x90 62 .skip -((alt_max_short(new_len1, new_len2) - (old_len)) > 0) * \
|
D | setup.h | 127 1: .skip sz; \
|
/linux-4.1.27/Documentation/scsi/ |
D | wd719x.txt | 19 dd if=wd7296a.sys of=wd719x-risc.bin bs=1 skip=5760 count=14336 20 dd if=wd7296a.sys of=wd719x-wcs.bin bs=1 skip=20096 count=514
|
/linux-4.1.27/net/sched/ |
D | cls_cgroup.c | 169 if (arg->count < arg->skip) in cls_cgroup_walk() 170 goto skip; in cls_cgroup_walk() 176 skip: in cls_cgroup_walk()
|
D | cls_basic.c | 239 if (arg->count < arg->skip) in basic_walk() 240 goto skip; in basic_walk() 246 skip: in basic_walk()
|
D | cls_bpf.c | 460 if (arg->count < arg->skip) in cls_bpf_walk() 461 goto skip; in cls_bpf_walk() 466 skip: in cls_bpf_walk()
|
D | sch_mq.c | 216 arg->count = arg->skip; in mq_walk() 217 for (ntx = arg->skip; ntx < dev->num_tx_queues; ntx++) { in mq_walk()
|
D | cls_tcindex.c | 443 if (walker->count >= walker->skip) { in tcindex_walk() 459 if (walker->count >= walker->skip) { in tcindex_walk() 481 walker.skip = 0; in tcindex_destroy()
|
/linux-4.1.27/arch/x86/power/ |
D | hibernate_asm_32.S | 35 jecxz 1f # cr4 Pentium and higher, skip if zero 65 jecxz 1f # cr4 Pentium and higher, skip if zero
|
/linux-4.1.27/sound/isa/wavefront/ |
D | wavefront_synth.c | 881 int skip = 0; in wavefront_send_sample() local 950 skip = WF_GET_CHANNEL(&header->hdr.s); in wavefront_send_sample() 952 if (skip > 0 && header->hdr.s.SampleResolution != LINEAR_16BIT) { in wavefront_send_sample() 958 switch (skip) { in wavefront_send_sample() 961 skip = 1; in wavefront_send_sample() 965 skip = 2; in wavefront_send_sample() 969 skip = 2; in wavefront_send_sample() 973 skip = 3; in wavefront_send_sample() 977 skip = 4; in wavefront_send_sample() 981 skip = 5; in wavefront_send_sample() [all …]
|
/linux-4.1.27/include/uapi/drm/ |
D | savage_drm.h | 187 unsigned short skip; /* vertex format (skip flags) */ member 194 unsigned short skip; member
|
/linux-4.1.27/arch/sh/lib64/ |
D | copy_page.S | 70 bge/u r2, r6, tr2 ! skip prefetch for last 4 lines 74 bge/u r2, r7, tr3 ! skip alloco for last 2 lines
|
D | sdivsi3.S | 98 .skip 16 101 .skip 16
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
D | perf_event_intel_bts.c | 304 unsigned long head, space, next_space, pad, gap, skip, wakeup; in bts_buffer_reset() local 331 skip = pad + gap; in bts_buffer_reset() 332 if (handle->size >= skip) { in bts_buffer_reset() 334 if (next_space + skip > handle->size) { in bts_buffer_reset() 335 next_space = handle->size - skip; in bts_buffer_reset() 341 ret = perf_aux_output_skip(handle, skip); in bts_buffer_reset()
|
D | perf_event_intel_lbr.c | 419 int skip = 0; in intel_pmu_lbr_read_64() local 428 skip = 1; in intel_pmu_lbr_read_64() 433 skip = 3; in intel_pmu_lbr_read_64() 435 from = (u64)((((s64)from) << skip) >> skip); in intel_pmu_lbr_read_64()
|
/linux-4.1.27/drivers/hid/ |
D | hid-picolcd_debugfs.c | 203 goto skip; in _picolcd_flash_read() 207 goto skip; in _picolcd_flash_read() 210 goto skip; in _picolcd_flash_read() 217 skip: in _picolcd_flash_read() 258 goto skip; in _picolcd_flash_erase64() 262 goto skip; in _picolcd_flash_erase64() 265 skip: in _picolcd_flash_erase64() 290 goto skip; in _picolcd_flash_write() 294 goto skip; in _picolcd_flash_write() 300 skip: in _picolcd_flash_write()
|
/linux-4.1.27/drivers/staging/lustre/lustre/lov/ |
D | lovsub_lock.c | 150 pgoff_t skip; /* how many pages in every stripe are occupied by in lovsub_lock_descr_map() local 160 skip = (lov->lo_lsm->lsm_stripe_count - 1) * size; in lovsub_lock_descr_map() 163 start += start/size * skip + stripe * size; in lovsub_lock_descr_map() 166 end += end/size * skip + stripe * size; in lovsub_lock_descr_map()
|
/linux-4.1.27/net/netfilter/ipvs/ |
D | ip_vs_ftp.c | 89 char skip, char term, in ip_vs_ftp_get_addrport() argument 109 if (skip) { in ip_vs_ftp_get_addrport() 116 if (*s == skip) in ip_vs_ftp_get_addrport() 118 } else if (*s != skip) { in ip_vs_ftp_get_addrport()
|
/linux-4.1.27/fs/fat/ |
D | file.c | 218 static int fat_free(struct inode *inode, int skip) in fat_free() argument 233 if (!skip) { in fat_free() 250 if (skip) { in fat_free() 254 ret = fat_get_cluster(inode, skip - 1, &fclus, &dclus); in fat_free() 281 inode->i_blocks = skip << (MSDOS_SB(sb)->cluster_bits - 9); in fat_free()
|
/linux-4.1.27/arch/x86/kernel/ |
D | stacktrace.c | 27 if (trace->skip > 0) { in __save_stack_address() 28 trace->skip--; in __save_stack_address()
|
D | verify_cpu.S | 87 jb verify_cpu_check # family < 6, skip 92 jb verify_cpu_check # family == 6, model < 0xd, skip
|
/linux-4.1.27/arch/x86/purgatory/ |
D | stack.S | 18 .skip 4096
|
D | setup-x86_64.S | 57 .skip 4096
|
/linux-4.1.27/fs/hfs/ |
D | brec.c | 117 goto skip; in hfs_brec_insert() 129 skip: in hfs_brec_insert() 210 goto skip; in hfs_brec_remove() 222 skip: in hfs_brec_remove() 386 goto skip; in hfs_brec_update_parent() 414 skip: in hfs_brec_update_parent()
|
/linux-4.1.27/fs/hfsplus/ |
D | brec.c | 117 goto skip; in hfs_brec_insert() 129 skip: in hfs_brec_insert() 214 goto skip; in hfs_brec_remove() 226 skip: in hfs_brec_remove() 391 goto skip; in hfs_brec_update_parent() 420 skip: in hfs_brec_update_parent()
|
/linux-4.1.27/arch/cris/boot/rescue/ |
D | head_v10.S | 124 ;; put a nop (2 bytes) here first so we dont accidentally skip the di 169 ;; skip the code transparency block (10 bytes). 200 move.d $r8, $r1 ; for its checksum check, skip the ptable 211 addq 16, $r3 ; skip the reserved bytes 213 bpl ploop ; rw partition, skip validation
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | shadow.c | 33 u32 skip; member 246 if (!mthd->skip || best->score < mthd->skip) { in nvbios_shadow()
|
/linux-4.1.27/tools/perf/arch/powerpc/util/ |
D | Build | 4 libperf-$(CONFIG_DWARF) += skip-callchain-idx.o
|
/linux-4.1.27/arch/microblaze/kernel/ |
D | stacktrace.c | 22 trace->skip += 2; in save_stack_trace()
|
D | unwind.c | 239 if (trace->skip > 0) in microblaze_unwind_inner() 240 trace->skip--; in microblaze_unwind_inner()
|
D | head.S | 118 beqid r5, skip /* Skip if NULL pointer */ 126 beqid r2, skip /* Skip if no data */ 133 skip: label
|
/linux-4.1.27/net/ipv6/ |
D | ip6_fib.c | 318 w->skip = 0; in fib6_dump_table() 333 w->skip = w->count; in fib6_dump_table() 335 w->skip = 0; in fib6_dump_table() 1500 if (w->skip) { in fib6_walk_continue() 1501 w->skip--; in fib6_walk_continue() 1502 goto skip; in fib6_walk_continue() 1512 skip: in fib6_walk_continue() 1616 c.w.skip = 0; in fib6_clean_tree() 1881 loff_t skip; member 1915 if (!iter->skip) in ipv6_route_yield() [all …]
|
D | udp_offload.c | 139 goto skip; in udp6_gro_receive() 148 skip: in udp6_gro_receive()
|
/linux-4.1.27/drivers/media/usb/gspca/stv06xx/ |
D | stv06xx.c | 432 int skip = (sd->to_skip < chunk_len) ? in stv06xx_pkt_scan() local 434 data += skip; in stv06xx_pkt_scan() 435 len -= skip; in stv06xx_pkt_scan() 436 chunk_len -= skip; in stv06xx_pkt_scan() 437 sd->to_skip -= skip; in stv06xx_pkt_scan()
|
/linux-4.1.27/arch/arm/plat-omap/include/plat/ |
D | sram.h | 4 unsigned long skip, int cached);
|
/linux-4.1.27/drivers/media/i2c/soc_camera/ |
D | mt9t031.c | 185 unsigned int skip; in mt9t031_skip() local 192 skip = min(max, *source + target / 2) / target; in mt9t031_skip() 193 if (skip > 8) in mt9t031_skip() 194 skip = 8; in mt9t031_skip() 195 *source = target * skip; in mt9t031_skip() 197 return skip; in mt9t031_skip()
|
D | rj54n1cb0c.c | 625 unsigned int skip, resize, input_w = *in_w, input_h = *in_h, in rj54n1_sensor_scale() local 731 skip = min(resize / 1024, 15U); in rj54n1_sensor_scale() 733 inc_sel = 1 << skip; in rj54n1_sensor_scale() 737 else if (resize & 1023 && skip < 15) in rj54n1_sensor_scale() 738 inc_sel |= 1 << (skip + 1); in rj54n1_sensor_scale() 802 *in_w, *in_h, resize, output_w, output_h, skip); in rj54n1_sensor_scale()
|
/linux-4.1.27/drivers/media/pci/solo6x10/ |
D | solo6x10-v4l2-enc.c | 317 static int solo_send_desc(struct solo_enc_dev *solo_enc, int skip, in solo_send_desc() argument 342 BUG_ON(skip >= len); in solo_send_desc() 343 if (skip) { in solo_send_desc() 344 len -= skip; in solo_send_desc() 345 dma += skip; in solo_send_desc() 346 size -= skip; in solo_send_desc() 347 skip = 0; in solo_send_desc() 485 int skip = 0; in solo_fill_mpeg() local 494 skip = solo_enc->vop_len; in solo_fill_mpeg() 506 frame_size = ALIGN(vop_mpeg_size(vh) + skip, DMA_ALIGN); in solo_fill_mpeg() [all …]
|
/linux-4.1.27/arch/mips/dec/prom/ |
D | locore.S | 26 addiu k0, 4 # skip the causing instruction
|
/linux-4.1.27/arch/x86/mm/kmemcheck/ |
D | error.c | 187 e->trace.skip = 0; in kmemcheck_error_save() 223 e->trace.skip = 1; in kmemcheck_error_save_bug()
|
/linux-4.1.27/drivers/media/dvb-core/ |
D | dvb_filter.c | 402 int skip = 0; 422 skip = mpeg1_skip_table [*buf >> 4]; 423 if (skip == 5 || skip == 10) pts = buf;
|
/linux-4.1.27/tools/lib/lockdep/uinclude/linux/ |
D | stacktrace.h | 9 int skip; member
|
/linux-4.1.27/net/bridge/ |
D | br_fdb.c | 394 unsigned long maxnum, unsigned long skip) in br_fdb_fillbuf() argument 415 if (skip) { in br_fdb_fillbuf() 416 --skip; in br_fdb_fillbuf() 698 goto skip; in br_fdb_dump() 703 goto skip; in br_fdb_dump() 710 goto skip; in br_fdb_dump() 713 goto skip; in br_fdb_dump() 721 skip: in br_fdb_dump()
|
D | br_mdb.c | 71 goto skip; in br_mdb_fill_info() 103 skip: in br_mdb_fill_info() 133 goto skip; in br_mdb_dump() 151 skip: in br_mdb_dump()
|
/linux-4.1.27/tools/testing/ktest/ |
D | ktest.pl | 906 my $skip = 0; 949 $skip = 1; 952 $skip = 0; 962 $skip = 1; 964 $skip = 0; 972 $skip = 1; 980 if (!$skip) { 994 if (!$skip && $rest !~ /^\s*$/) { 998 if ($skip && $type eq "TEST_START") { 1009 $skip = 1; [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/mtd/ |
D | fsmc-nand.txt | 12 - nand-skip-bbtscan: Indicates the BBT scanning should be skipped 47 nand-skip-bbtscan;
|
/linux-4.1.27/arch/ia64/mm/ |
D | contig.c | 98 goto skip; in per_cpu_init() 128 skip: in per_cpu_init()
|
/linux-4.1.27/fs/btrfs/ |
D | uuid-tree.c | 297 goto skip; in btrfs_uuid_tree_iterate() 304 goto skip; in btrfs_uuid_tree_iterate() 340 skip: in btrfs_uuid_tree_iterate()
|
/linux-4.1.27/arch/tile/kernel/ |
D | stack.c | 482 int skip = trace->skip; in save_stack_trace_tsk() local 492 if (skip) { in save_stack_trace_tsk() 493 --skip; in save_stack_trace_tsk()
|
/linux-4.1.27/drivers/input/tablet/ |
D | wacom_serial4.c | 268 int r, skip; in wacom_handle_configuration_response() local 271 r = sscanf(wacom->data, "~R%x,%u,%u,%u,%u", &skip, &skip, &skip, in wacom_handle_configuration_response()
|
/linux-4.1.27/arch/cris/include/asm/ |
D | axisflashmap.h | 45 __u8 skip[PARTITION_TABLE_OFFSET]; member
|
/linux-4.1.27/include/linux/ |
D | stacktrace.h | 13 int skip; /* input argument: How many entries to skip */ member
|
D | scatterlist.h | 248 void *buf, size_t buflen, off_t skip); 250 void *buf, size_t buflen, off_t skip);
|
/linux-4.1.27/net/ceph/ |
D | mon_client.c | 480 int *skip) in get_generic_reply() argument 491 *skip = 1; in get_generic_reply() 495 *skip = 0; in get_generic_reply() 1016 int *skip) in mon_alloc_msg() argument 1023 *skip = 0; in mon_alloc_msg() 1030 return get_generic_reply(con, hdr, skip); in mon_alloc_msg() 1036 return get_generic_reply(con, hdr, skip); in mon_alloc_msg() 1054 *skip = 1; in mon_alloc_msg()
|
D | messenger.c | 808 int skip = 0; in con_out_kvec_skip() local 811 skip = con->out_kvec[off + con->out_kvec_left - 1].iov_len; in con_out_kvec_skip() 812 BUG_ON(con->out_kvec_bytes < skip); in con_out_kvec_skip() 814 con->out_kvec_bytes -= skip; in con_out_kvec_skip() 818 return skip; in con_out_kvec_skip() 2288 static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip); 2348 int skip = 0; in read_partial_message() local 2352 ret = ceph_con_in_msg_alloc(con, &skip); in read_partial_message() 2356 BUG_ON(!con->in_msg ^ skip); in read_partial_message() 2362 skip = 1; in read_partial_message() [all …]
|
/linux-4.1.27/drivers/usb/serial/ |
D | garmin_gps.c | 485 int skip; in gsp_receive() local 492 skip = garmin_data_p->flags & FLAGS_GSP_SKIP; in gsp_receive() 507 if (skip) { /* start of a new pkt */ in gsp_receive() 508 skip = 0; in gsp_receive() 535 skip = 1; in gsp_receive() 541 } else if (!skip) { in gsp_receive() 553 skip = 1; in gsp_receive() 564 if (skip) in gsp_receive()
|
/linux-4.1.27/net/unix/ |
D | af_unix.c | 1936 int peeked, skip; in unix_dgram_recvmsg() local 1951 skip = sk_peek_offset(sk, flags); in unix_dgram_recvmsg() 1953 skb = __skb_recv_datagram(sk, flags, &peeked, &skip, &err); in unix_dgram_recvmsg() 1970 if (size > skb->len - skip) in unix_dgram_recvmsg() 1971 size = skb->len - skip; in unix_dgram_recvmsg() 1972 else if (size < skb->len - skip) in unix_dgram_recvmsg() 1975 err = skb_copy_datagram_msg(skb, skip, msg, size); in unix_dgram_recvmsg() 2011 err = (flags & MSG_TRUNC) ? skb->len - skip : size; in unix_dgram_recvmsg() 2077 int skip; in unix_stream_recvmsg() local 2099 skip = sk_peek_offset(sk, flags); in unix_stream_recvmsg() [all …]
|
/linux-4.1.27/arch/mips/kvm/ |
D | fpu.S | 26 bgez t0, 1f # no: skip odd doubles 70 bgez t0, 1f # no: skip odd doubles
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/omap/ |
D | crossbar.txt | 24 - ti,irqs-skip: This is similar to "ti,irqs-reserved", but these are for 39 ti,irqs-skip = <10 133 139 140>;
|
/linux-4.1.27/kernel/ |
D | backtracetest.c | 60 trace.skip = 0; in backtrace_test_saved()
|
D | seccomp.c | 637 goto skip; in __seccomp_phase1_filter() 644 goto skip; in __seccomp_phase1_filter() 660 skip: in __seccomp_phase1_filter()
|
/linux-4.1.27/drivers/media/usb/gspca/ |
D | stk1135.c | 499 int skip = sizeof(struct stk1135_pkt_header); in sd_pkt_scan() local 537 skip = 8; /* the header is longer */ in sd_pkt_scan() 541 gspca_frame_add(gspca_dev, pkt_type, data + skip, len - skip); in sd_pkt_scan()
|
/linux-4.1.27/fs/ubifs/ |
D | recovery.c | 474 int skip, dlen = le32_to_cpu(ch->len); in no_more_nodes() local 477 skip = ALIGN(offs + UBIFS_CH_SZ, c->max_write_size) - offs; in no_more_nodes() 478 if (is_empty(buf + skip, len - skip)) in no_more_nodes() 489 skip = ALIGN(offs + dlen, c->max_write_size) - offs; in no_more_nodes() 491 if (is_empty(buf + skip, len - skip)) in no_more_nodes() 493 dbg_rcvry("unexpected data at %d:%d", lnum, offs + skip); in no_more_nodes()
|
/linux-4.1.27/fs/ocfs2/ |
D | move_extents.c | 737 u32 threshold, int *skip) in ocfs2_calc_extent_defrag_len() argument 748 *skip = 1; in ocfs2_calc_extent_defrag_len() 766 int ret = 0, flags, do_defrag, skip = 0; in __ocfs2_move_extents_range() local 849 defrag_thresh, &skip); in __ocfs2_move_extents_range() 853 if (skip) { in __ocfs2_move_extents_range() 854 skip = 0; in __ocfs2_move_extents_range()
|
/linux-4.1.27/kernel/trace/ |
D | trace.h | 615 int skip, int pc); 618 int skip, int pc, struct pt_regs *regs); 623 void __trace_stack(struct trace_array *tr, unsigned long flags, int skip, 627 unsigned long flags, int skip, int pc) in ftrace_trace_stack() argument 632 unsigned long flags, int skip, in ftrace_trace_stack_regs() argument 643 int skip, int pc) in __trace_stack() argument
|
D | trace_stack.c | 110 max_stack_trace.skip = 4; in check_stack() 112 max_stack_trace.skip = 3; in check_stack()
|
/linux-4.1.27/sound/firewire/ |
D | amdtp.c | 597 unsigned int payload_length, bool skip) in queue_packet() argument 608 p.payload_length = (!skip) ? payload_length : 0; in queue_packet() 609 p.skip = skip; in queue_packet() 624 unsigned int payload_length, bool skip) in queue_out_packet() argument 627 payload_length, skip); in queue_out_packet()
|
/linux-4.1.27/tools/testing/selftests/sysctl/ |
D | common_tests | 82 dd if="${TEST_FILE}" of="${TARGET}" bs=1 seek=1 skip=1 2>/dev/null
|
/linux-4.1.27/arch/arm64/mm/ |
D | cache.S | 48 b.lt skip // skip if no cache, or just i-cache 73 skip: label
|
/linux-4.1.27/net/core/ |
D | gen_estimator.c | 127 goto skip; in est_timer() 140 skip: in est_timer()
|
D | fib_rules.c | 623 goto skip; in dump_rules() 630 skip: in dump_rules() 661 goto skip; in fib_nl_dumprule() 667 skip: in fib_nl_dumprule()
|
/linux-4.1.27/drivers/net/ethernet/dec/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/brocade/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/emulex/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/cisco/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/oki-semi/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/stmicro/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/sound/core/seq/oss/ |
D | seq_oss_synth.c | 44 int skip; member 526 sysex->skip = 1; in snd_seq_oss_synth_sysex() 532 if (sysex->skip) { in snd_seq_oss_synth_sysex() 533 sysex->skip = 0; in snd_seq_oss_synth_sysex()
|
/linux-4.1.27/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm.c | 658 int skip; in check_patch() local 662 for (skip = cur_patch->skip_patch; in check_patch() 663 skip > 0 && cur_patch != NULL; in check_patch() 664 skip--) in check_patch()
|
/linux-4.1.27/kernel/debug/kdb/ |
D | kdb_main.c | 2086 int skip = 0; in kdb_dmesg() local 2123 skip = adjust; in kdb_dmesg() 2126 skip = n - lines - adjust; in kdb_dmesg() 2131 skip = n; in kdb_dmesg() 2132 } else if (skip < 0) { in kdb_dmesg() 2133 lines += skip; in kdb_dmesg() 2134 skip = 0; in kdb_dmesg() 2142 if (skip >= n || skip < 0) in kdb_dmesg() 2147 if (skip) { in kdb_dmesg() 2148 skip--; in kdb_dmesg()
|
/linux-4.1.27/drivers/net/wireless/ath/ar5523/ |
D | ar5523.c | 103 goto skip; in ar5523_cmd_rx_cb() 108 goto skip; in ar5523_cmd_rx_cb() 123 goto skip; in ar5523_cmd_rx_cb() 167 skip: in ar5523_cmd_rx_cb() 541 goto skip; in ar5523_data_rx_cb() 546 goto skip; in ar5523_data_rx_cb() 556 goto skip; in ar5523_data_rx_cb() 567 goto skip; in ar5523_data_rx_cb() 572 goto skip; in ar5523_data_rx_cb() 578 goto skip; in ar5523_data_rx_cb() [all …]
|
/linux-4.1.27/fs/isofs/ |
D | rock.h | 10 unsigned char skip; member
|
/linux-4.1.27/drivers/net/ethernet/mellanox/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/rocker/ |
D | Kconfig | 12 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/tehuti/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/mtd/devices/ |
D | docg3.c | 861 int block0, block1, page, ret, skip, ofs = 0; in doc_read_oob() local 891 skip = from % DOC_LAYOUT_PAGE_SIZE; in doc_read_oob() 894 calc_block_sector(from - skip, &block0, &block1, &page, &ofs, in doc_read_oob() 896 nbdata = min_t(size_t, len, DOC_LAYOUT_PAGE_SIZE - skip); in doc_read_oob() 904 ret = doc_read_page_getbytes(docg3, skip, NULL, 1, 0); in doc_read_oob() 905 if (ret < skip) in doc_read_oob() 907 ret = doc_read_page_getbytes(docg3, nbdata, buf, 0, skip % 2); in doc_read_oob() 911 DOC_LAYOUT_PAGE_SIZE - nbdata - skip, in doc_read_oob() 912 NULL, 0, (skip + nbdata) % 2); in doc_read_oob() 960 skip = 0; in doc_read_oob()
|
/linux-4.1.27/security/tomoyo/ |
D | network.c | 510 goto skip; in tomoyo_check_inet_address() 518 goto skip; in tomoyo_check_inet_address() 525 goto skip; in tomoyo_check_inet_address() 530 skip: in tomoyo_check_inet_address()
|
/linux-4.1.27/drivers/net/ethernet/qualcomm/ |
D | Kconfig | 14 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/nuvoton/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/tundra/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/agere/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/tools/perf/util/ |
D | trace-event-read.c | 88 static void skip(int size) in skip() function 258 skip(size); in read_header_files()
|
D | machine.h | 193 bool (skip)(struct dso *dso, int parm), int parm); 196 bool (skip)(struct dso *dso, int parm), int parm);
|
D | session.c | 1183 s64 skip = 0; in __perf_session__process_pipe_events() local 1242 if ((skip = perf_session__process_event(session, event, head)) < 0) { in __perf_session__process_pipe_events() 1251 if (skip > 0) in __perf_session__process_pipe_events() 1252 head += skip; in __perf_session__process_pipe_events() 1319 s64 skip; in __perf_session__process_events() local 1380 (skip = perf_session__process_event(session, event, file_pos)) < 0) { in __perf_session__process_events() 1388 if (skip) in __perf_session__process_events() 1389 size += skip; in __perf_session__process_events() 1484 bool (skip)(struct dso *dso, int parm), int parm) in perf_session__fprintf_dsos_buildid() 1486 return machines__fprintf_dsos_buildid(&session->machines, fp, skip, parm); in perf_session__fprintf_dsos_buildid()
|
/linux-4.1.27/Documentation/device-mapper/ |
D | dm-service-time.txt | 49 1. If the paths have the same 'relative_throughput', skip 52 2. If the paths have the same 'in-flight-size', skip the division
|
/linux-4.1.27/drivers/md/bcache/ |
D | request.c | 376 goto skip; in check_should_bypass() 381 goto skip; in check_should_bypass() 386 goto skip; in check_should_bypass() 391 goto skip; in check_should_bypass() 436 goto skip; in check_should_bypass() 441 goto skip; in check_should_bypass() 447 skip: in check_should_bypass()
|
/linux-4.1.27/drivers/staging/media/lirc/ |
D | lirc_zilog.c | 532 static int skip(unsigned char **data, in skip() function 580 if (!skip(&data, endp, ndiffs)) in get_key_data() 605 if (!skip(&data, endp, (keys - 1) * (ndiffs + 1))) in get_key_data() 809 if (!skip(&data, tx_data->endp, TX_BLOCK_SIZE)) in fw_load() 861 if (!skip(&data, tx_data->endp, ndiffs)) in fw_load() 868 if (!skip(&data, tx_data->endp, in fw_load() 873 if (!skip(&data, tx_data->endp, in fw_load()
|
/linux-4.1.27/drivers/net/ethernet/allwinner/ |
D | Kconfig | 17 to skip all the questions about Allwinner cards. If you say Y,
|
/linux-4.1.27/drivers/net/ethernet/moxa/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/xscale/ |
D | Kconfig | 16 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/pasemi/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/samsung/ |
D | Kconfig | 13 the kernel: saying N will just case the configurator to skip all
|
/linux-4.1.27/drivers/net/wimax/i2400m/ |
D | tx.c | 851 skip: in i2400m_tx_msg_get() 865 goto skip; in i2400m_tx_msg_get() 881 goto skip; in i2400m_tx_msg_get()
|
/linux-4.1.27/drivers/net/ethernet/xircom/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/nvidia/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/mm/ |
D | swap_state.c | 462 goto skip; in swapin_readahead() 484 skip: in swapin_readahead()
|
/linux-4.1.27/drivers/net/ethernet/hisilicon/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/hp/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/microchip/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/sgi/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/rdc/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/arch/x86/xen/ |
D | xen-head.S | 90 .skip PAGE_SIZE
|
/linux-4.1.27/drivers/net/ethernet/seeq/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/silan/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/adaptec/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/faraday/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/thermal/ |
D | intel_powerclamp.c | 210 bool skip; member 253 if (!info->skip) { in pkg_state_counter() 257 info->skip = true; in pkg_state_counter()
|
/linux-4.1.27/drivers/net/ethernet/xilinx/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/ibm/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/cadence/ |
D | Kconfig | 17 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx-pip-defs.h | 266 uint64_t skip:7; member 268 uint64_t skip:7; 1528 uint64_t skip:7; member 1530 uint64_t skip:7; 1579 uint64_t skip:7; member 1581 uint64_t skip:7; 1619 uint64_t skip:7; member 1621 uint64_t skip:7; 1670 uint64_t skip:7; member 1672 uint64_t skip:7; [all …]
|
/linux-4.1.27/arch/arm/common/ |
D | mcpm_head.S | 114 @ Otherwise, release the first man lock and skip setup: 142 @ If the outbound gave up before teardown started, skip cluster setup:
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/ |
D | host.fuc | 46 fifo_queue: .skip 128 // #fifo_qsize 55 rfifo_queue: .skip 128 // #rfifo_qsize
|
/linux-4.1.27/fs/ext4/ |
D | mmp.c | 305 goto skip; in ext4_multi_mount_protect() 335 skip: in ext4_multi_mount_protect()
|
/linux-4.1.27/arch/sh/mm/ |
D | cache.c | 306 goto skip; in cpu_cache_init() 354 skip: in cpu_cache_init()
|
/linux-4.1.27/drivers/pnp/isapnp/ |
D | core.c | 583 int number = 0, skip = 0, priority, compat = 0; in isapnp_create_device() local 598 if (skip && type != _STAG_LOGDEVID && type != _STAG_END) in isapnp_create_device() 608 skip = 0; in isapnp_create_device() 612 skip = 1; in isapnp_create_device()
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | bindec.S | 309 bras len_ck |skip to LEN check 379 bgts k_pos |if pos and > 0, skip this 381 blts k_pos |if ILOG >= k, skip this 391 bges iscale |if pos, skip next inst 394 bgts no_inf |if false, skip rest 650 bccs l_next |if zero, skip the mul
|
/linux-4.1.27/drivers/net/ethernet/arc/ |
D | Kconfig | 14 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/include/net/ |
D | pkt_sched.h | 11 int skip; member
|
/linux-4.1.27/fs/gfs2/ |
D | rgrp.c | 1764 static void try_rgrp_unlink(struct gfs2_rgrpd *rgd, u64 *last_unlinked, u64 skip) in try_rgrp_unlink() argument 1789 if (block == skip) in try_rgrp_unlink() 1905 u32 skip; in gfs2_orlov_skip() local 1907 get_random_bytes(&skip, sizeof(skip)); in gfs2_orlov_skip() 1908 return skip % sdp->sd_rgrps; in gfs2_orlov_skip() 1968 u32 skip = 0; in gfs2_inplace_reserve() local 1983 skip = gfs2_orlov_skip(ip); in gfs2_inplace_reserve() 1992 if (skip && skip--) in gfs2_inplace_reserve() 2062 if (skip) in gfs2_inplace_reserve()
|
/linux-4.1.27/arch/c6x/lib/ |
D | mpyll.S | 36 ;; Since the result is also 64-bit, we can skip the P2 term.
|
/linux-4.1.27/drivers/cpufreq/ |
D | pmac32-cpufreq.c | 206 goto skip; in gpios_set_cpu_speed() 217 skip: in gpios_set_cpu_speed()
|
/linux-4.1.27/drivers/ide/ |
D | ide-iops.c | 358 goto skip; in ide_config_drive_speed() 404 skip: in ide_config_drive_speed()
|
/linux-4.1.27/drivers/net/ethernet/myricom/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/arch/arm/mm/ |
D | cache-v7.S | 131 blt skip @ skip if no cache, or just i-cache 162 skip: label
|
/linux-4.1.27/drivers/pci/ |
D | access.c | 352 unsigned int i, skip; in pci_vpd_pci22_read() local 368 skip = pos & 3; in pci_vpd_pci22_read() 370 if (i >= skip) { in pci_vpd_pci22_read()
|
/linux-4.1.27/drivers/usb/host/ |
D | xhci-ring.c | 1802 struct xhci_virt_ep *ep, int *status, bool skip) in finish_td() argument 1821 if (skip) in finish_td() 2285 if (ep->skip) { in handle_tx_event() 2373 ep->skip = true; in handle_tx_event() 2377 ep->skip = true; in handle_tx_event() 2410 if (ep->skip) { in handle_tx_event() 2411 ep->skip = false; in handle_tx_event() 2420 if (ep->skip && td_num == 0) { in handle_tx_event() 2421 ep->skip = false; in handle_tx_event() 2429 if (ep->skip) in handle_tx_event() [all …]
|
/linux-4.1.27/arch/sh/lib/ |
D | __clear_user.S | 24 bt .Larea2 ! skip to remainder
|
/linux-4.1.27/drivers/net/ethernet/neterion/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/packetengines/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/scripts/mod/ |
D | modpost.h | 111 int skip; member
|
/linux-4.1.27/drivers/net/ethernet/dlink/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/drivers/net/ethernet/via/ |
D | Kconfig | 14 kernel: saying N will just cause the configurator to skip all
|
/linux-4.1.27/arch/powerpc/boot/ |
D | wrapper | 460 skip=$overlay_dest seek=$system_reset_kernel \ 464 skip=$system_reset_overlay seek=$overlay_dest \
|
/linux-4.1.27/arch/parisc/kernel/ |
D | irq.c | 221 goto skip; in show_interrupts() 261 skip: in show_interrupts()
|
/linux-4.1.27/drivers/net/wireless/b43/ |
D | dma.c | 1486 int skip; in b43_dma_handle_txstatus() local 1501 skip = 0; in b43_dma_handle_txstatus() 1511 skip = 2; in b43_dma_handle_txstatus() 1580 if (unlikely(skip)) in b43_dma_handle_txstatus() 1614 if (meta->is_last_fragment && !skip) { in b43_dma_handle_txstatus() 1620 if (skip > 0) in b43_dma_handle_txstatus() 1621 --skip; in b43_dma_handle_txstatus()
|
/linux-4.1.27/drivers/net/ethernet/toshiba/ |
D | Kconfig | 15 kernel: saying N will just cause the configurator to skip all
|