Home
last modified time | relevance | path

Searched refs:begin (Results 1 – 200 of 228) sorted by relevance

12

/linux-4.4.14/fs/ufs/
Dutil.h322 #define ubh_get_addr8(ubh,begin) \ argument
323 ((u8*)(ubh)->bh[(begin) >> uspi->s_fshift]->b_data + \
324 ((begin) & ~uspi->s_fmask))
326 #define ubh_get_addr16(ubh,begin) \ argument
327 (((__fs16*)((ubh)->bh[(begin) >> (uspi->s_fshift-1)]->b_data)) + \
328 ((begin) & ((uspi->fsize>>1) - 1)))
330 #define ubh_get_addr32(ubh,begin) \ argument
331 (((__fs32*)((ubh)->bh[(begin) >> (uspi->s_fshift-2)]->b_data)) + \
332 ((begin) & ((uspi->s_fsize>>2) - 1)))
334 #define ubh_get_addr64(ubh,begin) \ argument
[all …]
Dballoc.c743 unsigned begin, unsigned size, in ubh_scanc() argument
750 offset = begin & ~uspi->s_fmask; in ubh_scanc()
751 begin >>= uspi->s_fshift; in ubh_scanc()
758 cp = ubh->bh[begin]->b_data + offset; in ubh_scanc()
763 begin++; in ubh_scanc()
/linux-4.4.14/arch/avr32/mm/
Dcache.c26 unsigned long v, begin, end, linesz, mask; in invalidate_dcache_region() local
34 begin = (unsigned long)start; in invalidate_dcache_region()
35 end = begin + size; in invalidate_dcache_region()
37 if (begin & mask) { in invalidate_dcache_region()
39 begin += linesz; in invalidate_dcache_region()
47 for (v = begin; v < end; v += linesz) in invalidate_dcache_region()
54 unsigned long v, begin, end, linesz; in clean_dcache_region() local
57 begin = (unsigned long)start & ~(linesz - 1); in clean_dcache_region()
60 for (v = begin; v < end; v += linesz) in clean_dcache_region()
67 unsigned long v, begin, end, linesz; in flush_dcache_region() local
[all …]
/linux-4.4.14/arch/sh/mm/
Dcache-sh2a.c54 unsigned long begin, end; in sh2a__flush_wback_region() local
58 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_wback_region()
67 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) { in sh2a__flush_wback_region()
68 begin = CACHE_OC_ADDRESS_ARRAY; in sh2a__flush_wback_region()
69 end = begin + (nr_ways * current_cpu_data.dcache.way_size); in sh2a__flush_wback_region()
71 for (v = begin; v < end; v += L1_CACHE_BYTES) { in sh2a__flush_wback_region()
79 for (v = begin; v < end; v += L1_CACHE_BYTES) in sh2a__flush_wback_region()
95 unsigned long begin, end; in sh2a__flush_purge_region() local
98 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_purge_region()
105 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2a__flush_purge_region()
[all …]
Dcache-sh2.c22 unsigned long begin, end; in sh2__flush_wback_region() local
24 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_wback_region()
27 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2__flush_wback_region()
43 unsigned long begin, end; in sh2__flush_purge_region() local
45 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_purge_region()
49 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_purge_region()
74 unsigned long begin, end; in sh2__flush_invalidate_region()
76 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_invalidate_region()
80 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_invalidate_region()
Dcache-sh3.c38 unsigned long begin, end; in sh3__flush_wback_region() local
41 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_wback_region()
45 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_wback_region()
77 unsigned long begin, end; in sh3__flush_purge_region() local
79 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_purge_region()
83 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_purge_region()
/linux-4.4.14/samples/seccomp/
Dbpf-helper.c21 struct sock_filter *begin = filter; in bpf_resolve_jumps() local
31 for (; filter >= begin; --insn, --filter) { in bpf_resolve_jumps()
65 struct __bpf_label *begin = labels->labels, *end; in seccomp_bpf_label() local
73 begin->label = label; in seccomp_bpf_label()
74 begin->location = 0xffffffff; in seccomp_bpf_label()
78 end = begin + labels->count; in seccomp_bpf_label()
79 for (id = 0; begin < end; ++begin, ++id) { in seccomp_bpf_label()
80 if (!strcmp(label, begin->label)) in seccomp_bpf_label()
83 begin->label = label; in seccomp_bpf_label()
84 begin->location = 0xffffffff; in seccomp_bpf_label()
/linux-4.4.14/samples/bpf/
Dtrace_output_user.c69 void *base, *begin, *end; in perf_event_read() local
78 begin = base + data_tail % buffer_size; in perf_event_read()
81 while (begin != end) { in perf_event_read()
84 e = begin; in perf_event_read()
85 if (begin + e->header.size > base + buffer_size) { in perf_event_read()
86 long len = base + buffer_size - begin; in perf_event_read()
89 memcpy(buf, begin, len); in perf_event_read()
92 begin = base + e->header.size - len; in perf_event_read()
93 } else if (begin + e->header.size == base + buffer_size) { in perf_event_read()
94 begin = base; in perf_event_read()
[all …]
/linux-4.4.14/arch/mips/mm/
Dsc-rm7k.c188 unsigned long flags, addr, begin, end, pow2; in __probe_tcache() local
190 begin = (unsigned long) &_stext; in __probe_tcache()
191 begin &= ~((8 * 1024 * 1024) - 1); in __probe_tcache()
192 end = begin + (8 * 1024 * 1024); in __probe_tcache()
200 for (addr = begin; addr <= end; addr = (begin + pow2)) { in __probe_tcache()
209 cache_op(Index_Store_Tag_T, begin); in __probe_tcache()
213 for (addr = begin + (512 * 1024); addr <= end; addr = begin + pow2) { in __probe_tcache()
220 addr -= begin; in __probe_tcache()
Dc-r4k.c1338 unsigned long flags, addr, begin, end, pow2; in probe_scache() local
1345 begin = (unsigned long) &_stext; in probe_scache()
1346 begin &= ~((4 * 1024 * 1024) - 1); in probe_scache()
1347 end = begin + (4 * 1024 * 1024); in probe_scache()
1357 for (addr = begin; addr < end; addr = (begin + pow2)) { in probe_scache()
1367 cache_op(Index_Store_Tag_I, begin); in probe_scache()
1368 cache_op(Index_Store_Tag_D, begin); in probe_scache()
1369 cache_op(Index_Store_Tag_SD, begin); in probe_scache()
1373 for (addr = begin + (128 * 1024); addr < end; addr = begin + pow2) { in probe_scache()
1381 addr -= begin; in probe_scache()
Dinit.c479 void free_init_pages(const char *what, unsigned long begin, unsigned long end) in free_init_pages() argument
483 for (pfn = PFN_UP(begin); pfn < PFN_DOWN(end); pfn++) { in free_init_pages()
490 printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10); in free_init_pages()
501 void (*free_init_pages_eva)(void *begin, void *end) = NULL;
/linux-4.4.14/arch/x86/kernel/
Dsys_x86_64.c100 static void find_start_end(unsigned long flags, unsigned long *begin, in find_start_end() argument
112 *begin = 0x40000000; in find_start_end()
115 new_begin = randomize_range(*begin, *begin + 0x02000000, 0); in find_start_end()
117 *begin = new_begin; in find_start_end()
120 *begin = current->mm->mmap_legacy_base; in find_start_end()
132 unsigned long begin, end; in arch_get_unmapped_area() local
137 find_start_end(flags, &begin, &end); in arch_get_unmapped_area()
152 info.low_limit = begin; in arch_get_unmapped_area()
Dvmlinux.lds.S178 .init.begin : AT(ADDR(.init.begin) - LOAD_OFFSET) {
Dpci-calgary_64.c588 begin: in calioc2_tce_cache_blast()
618 goto begin; in calioc2_tce_cache_blast()
/linux-4.4.14/drivers/md/persistent-data/
Ddm-space-map-metadata.c95 unsigned begin; member
102 brb->begin = 0; in brb_init()
108 return brb->begin == brb->end; in brb_empty()
127 if (next == brb->begin) in brb_push()
146 bop = brb->bops + brb->begin; in brb_peek()
158 brb->begin = brb_next(brb, brb->begin); in brb_pop()
171 dm_block_t begin; member
311 for (i = smm->uncommitted.begin; in sm_metadata_get_count()
351 for (i = smm->uncommitted.begin; in sm_metadata_count_is_more_than_one()
450 r = sm_ll_find_free_block(&smm->old_ll, smm->begin, smm->old_ll.nr_blocks, b); in sm_metadata_new_block_()
[all …]
Ddm-space-map-common.c168 static int sm_find_free(void *addr, unsigned begin, unsigned end, in sm_find_free() argument
171 while (begin < end) { in sm_find_free()
172 if (!(begin & (ENTRIES_PER_WORD - 1)) && in sm_find_free()
173 bitmap_word_used(addr, begin)) { in sm_find_free()
174 begin += ENTRIES_PER_WORD; in sm_find_free()
178 if (!sm_lookup_bitmap(addr, begin)) { in sm_find_free()
179 *result = begin; in sm_find_free()
183 begin++; in sm_find_free()
327 int sm_ll_find_free_block(struct ll_disk *ll, dm_block_t begin, in sm_ll_find_free_block() argument
332 dm_block_t i, index_begin = begin; in sm_ll_find_free_block()
[all …]
Ddm-space-map-disk.c30 dm_block_t begin; member
158 r = sm_ll_find_free_block(&smd->old_ll, smd->begin, smd->old_ll.nr_blocks, b); in sm_disk_new_block()
162 smd->begin = *b + 1; in sm_disk_new_block()
187 smd->begin = 0; in sm_disk_commit()
251 smd->begin = 0; in dm_sm_disk_create()
285 smd->begin = 0; in dm_sm_disk_open()
Ddm-space-map-common.h110 int sm_ll_find_free_block(struct ll_disk *ll, dm_block_t begin,
Ddm-array.c454 unsigned begin, end; in shrink() local
462 begin = total_nr_blocks_needed(resize->new_nr_full_blocks, in shrink()
467 r = drop_blocks(resize, begin, end); in shrink()
/linux-4.4.14/drivers/staging/android/trace/
Dsync.h36 TP_PROTO(struct sync_fence *fence, int begin),
38 TP_ARGS(fence, begin),
43 __field(u32, begin)
49 __entry->begin = begin;
52 TP_printk("%s name=%s state=%d", __entry->begin ? "begin" : "end",
/linux-4.4.14/arch/mips/ath25/
Dboard.c61 const void __iomem *begin = limit - 0x1000; in find_board_config() local
64 for (addr = begin; addr >= end; addr -= 0x1000) in find_board_config()
74 const void __iomem *rcfg, *begin, *end; in find_radio_config() local
81 begin = bcfg + 0x1000; in find_radio_config()
83 for (rcfg = begin; rcfg < end; rcfg += 0x1000) in find_radio_config()
88 begin = bcfg + 0xf8; in find_radio_config()
90 for (rcfg = begin; rcfg < end; rcfg += 0x1000) in find_radio_config()
/linux-4.4.14/lib/
Dratelimit.c45 if (!rs->begin) in ___ratelimit()
46 rs->begin = jiffies; in ___ratelimit()
48 if (time_is_before_jiffies(rs->begin + rs->interval)) { in ___ratelimit()
52 rs->begin = 0; in ___ratelimit()
/linux-4.4.14/tools/include/linux/
Dlist.h16 static inline void list_del_range(struct list_head *begin, in list_del_range() argument
19 begin->prev->next = end->next; in list_del_range()
20 end->next->prev = begin->prev; in list_del_range()
/linux-4.4.14/arch/x86/mm/
Dinit.c648 void free_init_pages(char *what, unsigned long begin, unsigned long end) in free_init_pages() argument
653 begin_aligned = PAGE_ALIGN(begin); in free_init_pages()
656 if (WARN_ON(begin_aligned != begin || end_aligned != end)) { in free_init_pages()
657 begin = begin_aligned; in free_init_pages()
661 if (begin >= end) in free_init_pages()
671 begin, end - 1); in free_init_pages()
672 set_memory_np(begin, (end - begin) >> PAGE_SHIFT); in free_init_pages()
679 set_memory_nx(begin, (end - begin) >> PAGE_SHIFT); in free_init_pages()
680 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT); in free_init_pages()
682 free_reserved_area((void *)begin, (void *)end, POISON_FREE_INITMEM, what); in free_init_pages()
/linux-4.4.14/arch/cris/mm/
Dinit.c38 void free_init_pages(const char *what, unsigned long begin, unsigned long end) in free_init_pages() argument
42 for (addr = begin; addr < end; addr += PAGE_SIZE) { in free_init_pages()
49 printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10); in free_init_pages()
/linux-4.4.14/arch/powerpc/kernel/
Dmachine_kexec_64.c51 unsigned long begin, end; /* limits of segment */ in default_machine_kexec_prepare() local
84 begin = image->segment[i].mem; in default_machine_kexec_prepare()
85 end = begin + image->segment[i].memsz; in default_machine_kexec_prepare()
87 if ((begin < high) && (end > low)) in default_machine_kexec_prepare()
103 begin = image->segment[i].mem; in default_machine_kexec_prepare()
104 end = begin + image->segment[i].memsz; in default_machine_kexec_prepare()
106 if ((begin < high) && (end > low)) in default_machine_kexec_prepare()
Dcrash_dump.c126 void crash_free_reserved_phys_range(unsigned long begin, unsigned long end) in crash_free_reserved_phys_range() argument
140 for (addr = begin; addr < end; addr += PAGE_SIZE) { in crash_free_reserved_phys_range()
Dfadump.c1035 static void fadump_release_memory(unsigned long begin, unsigned long end) in fadump_release_memory() argument
1043 for (addr = begin; addr < end; addr += PAGE_SIZE) { in fadump_release_memory()
/linux-4.4.14/arch/arm64/kernel/
Dalternative.c37 struct alt_instr *begin; member
94 for (alt = region->begin; alt < region->end; alt++) { in __apply_alternatives()
127 .begin = __alt_instructions, in __apply_alternatives_multi_stop()
155 .begin = start, in apply_alternatives()
/linux-4.4.14/drivers/net/wireless/cw1200/
Dwsm.c898 hdr_len = buf->data - buf->begin; in wsm_receive_indication()
1083 size_t buf_len = buf->data - buf->begin; in wsm_cmd_send()
1104 cmd, __le16_to_cpu(((__le16 *)buf->begin)[2]), in wsm_cmd_send()
1117 ((__le16 *)buf->begin)[0] = __cpu_to_le16(buf_len); in wsm_cmd_send()
1118 ((__le16 *)buf->begin)[1] = __cpu_to_le16(cmd); in wsm_cmd_send()
1122 priv->wsm_cmd.ptr = buf->begin; in wsm_cmd_send()
1145 buf->begin, buf_len); in wsm_cmd_send()
1261 buf.begin = buf.data = data; in wsm_handle_exception()
1262 buf.end = &buf.begin[len]; in wsm_handle_exception()
1312 wsm_buf.begin = (u8 *)&wsm[0]; in wsm_handle_rx()
[all …]
Dscan.h29 struct ieee80211_channel **begin; member
Dscan.c111 priv->scan.begin = &req->channels[0]; in cw1200_hw_scan()
112 priv->scan.curr = priv->scan.begin; in cw1200_hw_scan()
140 bool first_run = (priv->scan.begin == priv->scan.curr && in cw1200_scan_work()
141 priv->scan.begin != priv->scan.end); in cw1200_scan_work()
Dwsm.h1821 u8 *begin; member
/linux-4.4.14/net/ipv6/
Dinet6_hashtables.c71 begin: in __inet6_lookup_established()
82 goto begin; in __inet6_lookup_established()
87 goto begin; in __inet6_lookup_established()
137 begin: in inet6_lookup_listener()
164 goto begin; in inet6_lookup_listener()
171 goto begin; in inet6_lookup_listener()
Dudp.c245 begin: in udp6_lib_lookup2()
273 goto begin; in udp6_lib_lookup2()
281 goto begin; in udp6_lib_lookup2()
306 goto begin; in __udp6_lib_lookup()
316 goto begin; in __udp6_lib_lookup()
325 begin: in __udp6_lib_lookup()
352 goto begin; in __udp6_lib_lookup()
360 goto begin; in __udp6_lib_lookup()
/linux-4.4.14/drivers/net/wireless/ath/wcn36xx/
Ddebug.c124 char *begin; in write_file_dump() local
125 begin = strsep(&tmp, " "); in write_file_dump()
126 if (begin == NULL) in write_file_dump()
129 if (kstrtou32(begin, 0, &arg[i]) != 0) in write_file_dump()
/linux-4.4.14/arch/mips/mti-malta/
Dmalta-memory.c27 static void free_init_pages_eva_malta(void *begin, void *end) in free_init_pages_eva_malta() argument
29 free_init_pages("unused kernel", __pa_symbol((unsigned long *)begin), in free_init_pages_eva_malta()
/linux-4.4.14/drivers/hwmon/
Dapplesmc.c377 int begin = 0, end = smcreg.key_count; in applesmc_get_lower_bound() local
380 while (begin != end) { in applesmc_get_lower_bound()
381 int middle = begin + (end - begin) / 2; in applesmc_get_lower_bound()
388 begin = middle + 1; in applesmc_get_lower_bound()
393 *lo = begin; in applesmc_get_lower_bound()
399 int begin = 0, end = smcreg.key_count; in applesmc_get_upper_bound() local
402 while (begin != end) { in applesmc_get_upper_bound()
403 int middle = begin + (end - begin) / 2; in applesmc_get_upper_bound()
412 begin = middle + 1; in applesmc_get_upper_bound()
415 *hi = begin; in applesmc_get_upper_bound()
[all …]
/linux-4.4.14/Documentation/RCU/
Drculist_nulls.txt16 begin:
20 goto begin;
28 goto begin;
130 begin:
134 goto begin;
137 goto begin;
147 goto begin;
/linux-4.4.14/kernel/
Dtracepoint.c389 static void tp_module_going_check_quiescent(struct tracepoint * const *begin, in tp_module_going_check_quiescent() argument
394 if (!begin) in tp_module_going_check_quiescent()
396 for (iter = begin; iter < end; iter++) in tp_module_going_check_quiescent()
501 static void for_each_tracepoint_range(struct tracepoint * const *begin, in for_each_tracepoint_range() argument
508 if (!begin) in for_each_tracepoint_range()
510 for (iter = begin; iter < end; iter++) in for_each_tracepoint_range()
Dkexec_core.c890 void __weak crash_free_reserved_phys_range(unsigned long begin, in crash_free_reserved_phys_range() argument
895 for (addr = begin; addr < end; addr += PAGE_SIZE) in crash_free_reserved_phys_range()
/linux-4.4.14/net/switchdev/
Dswitchdev.c637 u16 begin; member
647 if (dump->begin == 0 && dump->end == 0) { in switchdev_port_vlan_dump_put()
649 } else if (dump->begin == dump->end) { in switchdev_port_vlan_dump_put()
650 vinfo.vid = dump->begin; in switchdev_port_vlan_dump_put()
655 vinfo.vid = dump->begin; in switchdev_port_vlan_dump_put()
683 for (dump->begin = dump->end = vlan->vid_begin; in switchdev_port_vlan_dump_cb()
684 dump->begin <= vlan->vid_end; in switchdev_port_vlan_dump_cb()
685 dump->begin++, dump->end++) { in switchdev_port_vlan_dump_cb()
691 if (dump->begin > vlan->vid_begin && in switchdev_port_vlan_dump_cb()
692 dump->begin >= vlan->vid_end) { in switchdev_port_vlan_dump_cb()
[all …]
/linux-4.4.14/fs/hfsplus/
Dbfind.c55 int *begin, in hfs_find_1st_rec_by_cnid() argument
79 if ((*begin) == (*end)) in hfs_find_1st_rec_by_cnid()
83 (*begin) = (*cur_rec) + 1; in hfs_find_1st_rec_by_cnid()
93 int *begin, in hfs_find_rec_by_key() argument
105 (*begin) = (*cur_rec) + 1; in hfs_find_rec_by_key()
Dhfsplus_fs.h432 int *begin, int *end, int *cur_rec);
434 int *begin, int *end, int *cur_rec);
/linux-4.4.14/arch/mips/include/asm/
Dbootinfo.h116 unsigned long begin, unsigned long end);
118 extern void (*free_init_pages_eva)(void *begin, void *end);
Dsgiarcs.h176 struct linux_bigint begin; member
/linux-4.4.14/include/linux/
Dratelimit.h17 unsigned long begin; member
42 rs->begin = 0; in ratelimit_state_init()
Dsuspend.h179 int (*begin)(suspend_state_t state); member
191 int (*begin)(void); member
353 int (*begin)(void); member
Ddevice-mapper.h207 sector_t begin; member
594 #define dm_target_offset(ti, sector) ((sector) - (ti)->begin)
Dethtool.h249 int (*begin)(struct net_device *); member
Dkexec.h319 void crash_free_reserved_phys_range(unsigned long begin, unsigned long end);
/linux-4.4.14/drivers/md/
Ddm-thin-metadata.c1437 dm_block_t begin, dm_block_t end, in dm_thin_find_mapped_range() argument
1445 if (end < begin) in dm_thin_find_mapped_range()
1451 while (begin < end) { in dm_thin_find_mapped_range()
1452 r = dm_thin_find_block(td, begin, true, &lookup); in dm_thin_find_mapped_range()
1459 begin++; in dm_thin_find_mapped_range()
1462 if (begin == end) in dm_thin_find_mapped_range()
1465 *thin_begin = begin; in dm_thin_find_mapped_range()
1469 begin++; in dm_thin_find_mapped_range()
1471 while (begin != end) { in dm_thin_find_mapped_range()
1472 r = dm_thin_find_block(td, begin, true, &lookup); in dm_thin_find_mapped_range()
[all …]
Ddm-stripe.c264 sector_t begin, end; in stripe_map_range() local
267 target_stripe, &begin); in stripe_map_range()
270 if (begin < end) { in stripe_map_range()
272 bio->bi_iter.bi_sector = begin + in stripe_map_range()
274 bio->bi_iter.bi_size = to_bytes(end - begin); in stripe_map_range()
Ddm-cache-policy-smq.c59 struct entry *begin; member
66 es->begin = es->end = NULL; in space_init()
70 es->begin = vzalloc(sizeof(struct entry) * nr_entries); in space_init()
71 if (!es->begin) in space_init()
74 es->end = es->begin + nr_entries; in space_init()
80 vfree(es->begin); in space_exit()
87 e = es->begin + block; in __get_entry()
95 BUG_ON(e < es->begin || e >= es->end); in to_index()
96 return e - es->begin; in to_index()
672 unsigned begin; member
[all …]
Ddm-thin-metadata.h154 dm_block_t begin, dm_block_t end,
171 dm_block_t begin, dm_block_t end);
Ddm-table.c494 return !ti->begin; in adjoin()
497 return (ti->begin == (prev->begin + prev->len)); in adjoin()
661 (unsigned long long) ti->begin, in validate_hardware_logical_block_alignment()
731 tgt->begin = start; in dm_table_add_target()
755 t->highs[t->num_targets++] = tgt->begin + tgt->len - 1; in dm_table_add_target()
1290 (unsigned long long) ti->begin, in dm_calculate_queue_limits()
Ddm-cache-metadata.c847 dm_cblock_t begin, dm_cblock_t end, in blocks_are_unmapped_or_clean() argument
853 while (begin != end) { in blocks_are_unmapped_or_clean()
854 r = block_unmapped_or_clean(cmd, begin, result); in blocks_are_unmapped_or_clean()
860 (unsigned long long) from_cblock(begin)); in blocks_are_unmapped_or_clean()
864 begin = to_cblock(from_cblock(begin) + 1); in blocks_are_unmapped_or_clean()
Ddm-cache-target.c205 dm_cblock_t begin; member
513 static void build_key(dm_oblock_t begin, dm_oblock_t end, struct dm_cell_key *key) in build_key() argument
517 key->block_begin = from_oblock(begin); in build_key()
2110 uint64_t begin = from_cblock(req->cblocks->begin); in process_invalidation_request() local
2113 while (begin != end) { in process_invalidation_request()
2114 r = policy_remove_cblock(cache->policy, to_cblock(begin)); in process_invalidation_request()
2116 r = dm_cache_remove_mapping(cache->cmd, to_cblock(begin)); in process_invalidation_request()
2131 begin++; in process_invalidation_request()
3645 result->begin = to_cblock(b); in parse_cblock_range()
3658 result->begin = to_cblock(b); in parse_cblock_range()
[all …]
Ddm-thin.c652 dm_block_t *begin, dm_block_t *end) in get_bio_block_range() argument
672 *begin = b; in get_bio_block_range()
1134 sector_t begin, sector_t end) in ll_zero() argument
1140 to.sector = begin; in ll_zero()
1141 to.count = end - begin; in ll_zero()
1498 static void break_up_discard_bio(struct thin_c *tc, dm_block_t begin, dm_block_t end, in break_up_discard_bio() argument
1510 while (begin != end) { in break_up_discard_bio()
1516 r = dm_thin_find_mapped_range(tc->td, begin, end, &virt_begin, &virt_end, in break_up_discard_bio()
1528 begin = virt_end; in break_up_discard_bio()
1557 begin = virt_end; in break_up_discard_bio()
[all …]
Ddm-raid1.c920 ms->ti->begin, MAX_RECOVERY, in alloc_context()
Ddm-mpath.c1597 ret = fn(ti, p->path.dev, ti->begin, ti->len, data); in multipath_iterate_devices()
Ddm-ioctl.c1131 spec->sector_start = ti->begin; in retrieve_status()
/linux-4.4.14/arch/ia64/kernel/
Dpalinfo.c152 int i, begin, skip = 0; in bitregister_process() local
155 value >>= i = begin = ffs(value) - 1; in bitregister_process()
162 if (begin <= i - 2) in bitregister_process()
163 seq_printf(m, "%d-%d ", begin, i-1); in bitregister_process()
167 begin = -1; in bitregister_process()
170 begin = i; in bitregister_process()
174 if (begin > -1) { in bitregister_process()
175 if (begin < 127) in bitregister_process()
176 seq_printf(m, "%d-127", begin); in bitregister_process()
/linux-4.4.14/drivers/mtd/
Dmtdconcat.c847 uint64_t begin, position; in mtd_concat_create() local
867 begin = position = 0; in mtd_concat_create()
876 erase_region_p->offset = begin; in mtd_concat_create()
879 tmp64 = position - begin; in mtd_concat_create()
882 begin = position; in mtd_concat_create()
895 erase_region_p->offset = begin; in mtd_concat_create()
898 tmp64 = position - begin; in mtd_concat_create()
901 begin = position; in mtd_concat_create()
915 erase_region_p->offset = begin; in mtd_concat_create()
917 tmp64 = position - begin; in mtd_concat_create()
/linux-4.4.14/drivers/acpi/
Dsleep.c591 .begin = acpi_suspend_begin,
619 .begin = acpi_suspend_begin_old,
657 .begin = acpi_freeze_begin,
741 .begin = acpi_hibernation_begin,
786 .begin = acpi_hibernation_begin_old,
/linux-4.4.14/drivers/acpi/acpica/
Dutdebug.c581 acpi_trace_point(acpi_trace_event_type type, u8 begin, u8 *aml, char *pathname) in acpi_trace_point() argument
586 acpi_ex_trace_point(type, begin, aml, pathname); in acpi_trace_point()
589 acpi_os_trace_point(type, begin, aml, pathname); in acpi_trace_point()
Dexdebug.c426 u8 begin, u8 *aml, char *pathname) in acpi_ex_trace_point() argument
435 begin ? "Begin" : "End", aml, pathname)); in acpi_ex_trace_point()
440 begin ? "Begin" : "End", aml)); in acpi_ex_trace_point()
Dacinterp.h154 u8 begin, u8 *aml, char *pathname);
/linux-4.4.14/kernel/power/
Dsuspend.c212 if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->begin) in platform_suspend_begin()
213 return freeze_ops->begin(); in platform_suspend_begin()
214 else if (suspend_ops->begin) in platform_suspend_begin()
215 return suspend_ops->begin(state); in platform_suspend_begin()
Dhibernate.c78 if (ops && !(ops->begin && ops->end && ops->pre_snapshot in hibernation_set_ops()
129 hibernation_ops->begin() : 0; in platform_begin()
533 error = hibernation_ops->begin(); in hibernation_platform_enter()
/linux-4.4.14/drivers/input/
Dinput-mt.c299 static int adjust_dual(int *begin, int step, int *end, int eq, int mu) in adjust_dual() argument
303 if (begin == end) in adjust_dual()
306 f = *begin; in adjust_dual()
307 p = begin + step; in adjust_dual()
323 for (p = begin; p != end; p += step) in adjust_dual()
/linux-4.4.14/mm/
Dlist_lru.c297 int begin, int end) in __memcg_destroy_list_lru_node() argument
301 for (i = begin; i < end; i++) in __memcg_destroy_list_lru_node()
306 int begin, int end) in __memcg_init_list_lru_node() argument
310 for (i = begin; i < end; i++) { in __memcg_init_list_lru_node()
322 __memcg_destroy_list_lru_node(memcg_lrus, begin, i - 1); in __memcg_init_list_lru_node()
/linux-4.4.14/arch/alpha/lib/
Dcsum_ipv6_magic.S45 addq $20,$0,$20 # .. e1 : begin summing the words
92 extwl $0,2,$2 # e0 : begin folding the 64-bit value
Dev6-csum_ipv6_magic.S94 addq $20,$0,$20 # E : begin summing the words
/linux-4.4.14/arch/tile/mm/
Dinit.c918 static void free_init_pages(char *what, unsigned long begin, unsigned long end) in free_init_pages() argument
920 unsigned long addr = (unsigned long) begin; in free_init_pages()
927 local_flush_tlb_pages(NULL, begin, PAGE_SIZE, end - begin); in free_init_pages()
928 for (addr = begin; addr < end; addr += PAGE_SIZE) { in free_init_pages()
956 pr_info("Freeing %s: %ldk freed\n", what, (end - begin) >> 10); in free_init_pages()
/linux-4.4.14/net/ipv4/
Dinet_hashtables.c220 begin: in __inet_lookup_listener()
247 goto begin; in __inet_lookup_listener()
254 goto begin; in __inet_lookup_listener()
301 begin: in __inet_lookup_established()
312 goto begin; in __inet_lookup_established()
323 goto begin; in __inet_lookup_established()
Dudp.c451 begin: in udp4_lib_lookup2()
479 goto begin; in udp4_lib_lookup2()
486 goto begin; in udp4_lib_lookup2()
513 goto begin; in __udp4_lib_lookup()
523 goto begin; in __udp4_lib_lookup()
532 begin: in __udp4_lib_lookup()
560 goto begin; in __udp4_lib_lookup()
568 goto begin; in __udp4_lib_lookup()
1891 begin: in __udp4_lib_mcast_demux_lookup()
1909 goto begin; in __udp4_lib_mcast_demux_lookup()
/linux-4.4.14/arch/arm/mach-shmobile/
Dsuspend.c38 .begin = shmobile_suspend_begin,
/linux-4.4.14/arch/powerpc/perf/req-gen/
D_begin.h12 #define REQUEST_BEGIN CAT2_STR(REQ_GEN_PREFIX, _request-begin.h)
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/
Daicasm.c69 u_int begin; member
431 cur_patch->patch_func, cur_patch->begin, in output_code()
509 new_patch->begin = scope->begin_addr; in emit_patch()
512 new_patch->begin = scope->end_addr; in emit_patch()
656 while (cur_patch != NULL && start_instr == cur_patch->begin) { in check_patch()
/linux-4.4.14/arch/xtensa/kernel/
Dmxhead.S30 .begin no-absolute-literals
Dhead.S52 .begin no-absolute-literals
Dvectors.S208 .begin literal_prefix .DoubleExceptionVector
/linux-4.4.14/drivers/net/can/usb/
Dusb_8dev.c156 u8 begin; member
166 u8 begin; member
178 u8 begin; member
217 out->begin = USB_8DEV_CMD_START; in usb_8dev_send_cmd()
242 if (in->begin != USB_8DEV_CMD_START || in->end != USB_8DEV_CMD_END || in usb_8dev_send_cmd()
641 msg->begin = USB_8DEV_DATA_START; in usb_8dev_start_xmit()
/linux-4.4.14/net/ipv4/netfilter/
Dnf_nat_snmp_basic.c139 unsigned char *begin; /* First octet */ member
156 ctx->begin = buf; in asn1_open()
621 static inline void mangle_address(unsigned char *begin,
897 static inline void mangle_address(unsigned char *begin, in mangle_address() argument
913 &map->from, &map->to, addr - begin); in mangle_address()
954 mangle_address(ctx->begin, ctx->pointer - 4, map, check); in snmp_trap_decode()
1159 mangle_address(ctx.begin, ctx.pointer - 4, map, check); in snmp_parse_mangle()
/linux-4.4.14/include/trace/events/
Dpower_cpu_migrate.h43 __define_cpu_migrate_event(begin);
/linux-4.4.14/arch/xtensa/boot/boot-elf/
Dbootstrap.S33 .begin no-absolute-literals
/linux-4.4.14/drivers/net/wireless/b43/
Dlo.c589 int begin, end; in lo_probe_possible_loctls() local
605 begin = 1; in lo_probe_possible_loctls()
608 begin = d->current_state - 1; in lo_probe_possible_loctls()
611 begin = d->current_state - 2; in lo_probe_possible_loctls()
614 if (begin < 1) in lo_probe_possible_loctls()
615 begin += 8; in lo_probe_possible_loctls()
620 i = begin; in lo_probe_possible_loctls()
/linux-4.4.14/Documentation/DocBook/
Dz8530book.xml.db32 API-z8530-tx-begin
Dfilesystems.xml.db276 API-splice-from-pipe-begin
Ddevice-drivers.xml.db22 API-threadgroup-change-begin
404 API-dma-buf-begin-cpu-access
/linux-4.4.14/drivers/net/ethernet/hisilicon/hns/
Dhnae.h265 static inline int ring_dist(struct hnae_ring *ring, int begin, int end) in ring_dist() argument
267 assert_is_ring_idx(ring, begin); in ring_dist()
270 return (end - begin + ring->desc_num) % ring->desc_num; in ring_dist()
/linux-4.4.14/drivers/net/wireless/ath/wil6210/
Dethtool.c101 .begin = wil_ethtoolops_begin,
Dwil6210.h396 cycles_t idle, last_idle, begin; member
Ddebugfs.c111 uint64_t total = now - txdata->begin; in wil_vring_debugfs_show()
120 txdata->begin = now; in wil_vring_debugfs_show()
/linux-4.4.14/fs/cifs/
Dasn1.c96 unsigned char *begin; /* First octet */ member
111 ctx->begin = buf; in asn1_open()
/linux-4.4.14/arch/ia64/hp/sim/boot/
Dbootloader.lds42 of the section so we begin them at 0. */
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-bus-fcoe12 'start' attribute to begin the kernel's discovery and login
29 Controller (ctlr_X) 3) Enable the FCoE Controller to begin
/linux-4.4.14/net/sched/
Dsch_fq.c441 begin: in fq_dequeue()
459 goto begin; in fq_dequeue()
467 goto begin; in fq_dequeue()
480 goto begin; in fq_dequeue()
Dsch_hhf.c433 begin: in hhf_dequeue()
448 goto begin; in hhf_dequeue()
463 goto begin; in hhf_dequeue()
Dsch_fq_codel.c247 begin: in fq_codel_dequeue()
259 goto begin; in fq_codel_dequeue()
278 goto begin; in fq_codel_dequeue()
/linux-4.4.14/arch/powerpc/platforms/pseries/
Dsuspend.c227 .begin = pseries_suspend_begin,
/linux-4.4.14/drivers/staging/android/
DTODO15 begin/end_cpu_access hooks to userspace.
/linux-4.4.14/arch/arm/mach-omap2/
Dpm.c241 .begin = omap_pm_begin,
/linux-4.4.14/Documentation/
Dkernel-doc-nano-HOWTO.txt44 "/**" to be begin a comment block unless the comment block contains
75 The @argument descriptions must begin on the very next line following
257 NOTE 2: If the descriptive text you provide has lines that begin with
285 and "public:" tags must begin immediately following a "/*" comment
Dvolatile-considered-harmful.txt68 waiting is generally an anti-social act to begin with.
Dcrc32.txt156 look-ups cannot begin until the previous groups 4 table look-ups have all
DIRQ-domain.txt46 In most cases, the irq_domain will begin empty without any mappings
Dintel_txt.txt56 assume the kernel is "good" to begin with. The Integrity
Dunshare.txt289 signals and signal handlers. Signals are complex to begin with and
DDMA-API.txt228 correctly, the mapped region must begin exactly on a cache line
234 only map virtual regions that begin and end on page boundaries (which
Dmemory-hotplug.txt379 Generated to begin the process of offlining memory. Allocations are no
Dassoc_array.txt352 It is also recommended that the index key begin with a hash of the rest of the
Dvfio.txt260 vfio_add_group_dev() indicates to the core to begin tracking the
/linux-4.4.14/drivers/lguest/
DREADME31 - Where we trace back to the creation of the Guest, and thus begin our
/linux-4.4.14/Documentation/arm/SA1100/
DBrutus25 ----- begin angelboot.opt -----
DGraphicsClient36 ----- begin angelboot.opt -----
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/
Dmpic.txt167 * The interrupt source configuration registers begin
174 * The interrupt source configuration registers begin
Dmsi-pic.txt33 Each available range must begin and end on a multiple of 32 (i.e.
/linux-4.4.14/sound/isa/gus/
Dgus_pcm.c114 unsigned int curr, begin, end; in snd_gf1_pcm_trigger_up() local
137 begin = pcmp->memory + voice * (pcmp->dma_size / runtime->channels); in snd_gf1_pcm_trigger_up()
138 curr = begin + (pcmp->bpos * pcmp->block_size) / runtime->channels; in snd_gf1_pcm_trigger_up()
152 snd_gf1_write_addr(gus, SNDRV_GF1_VA_START, begin << 4, voice_ctrl & 4); in snd_gf1_pcm_trigger_up()
/linux-4.4.14/drivers/net/wireless/b43legacy/
Dphy.c1401 int begin; in b43legacy_phy_lo_g_state() local
1415 begin = 1; in b43legacy_phy_lo_g_state()
1418 begin = state - 1; in b43legacy_phy_lo_g_state()
1421 begin = state - 2; in b43legacy_phy_lo_g_state()
1424 if (begin < 1) in b43legacy_phy_lo_g_state()
1425 begin += 8; in b43legacy_phy_lo_g_state()
1429 j = begin; in b43legacy_phy_lo_g_state()
/linux-4.4.14/arch/mips/alchemy/devboards/
Dpm.c110 .begin = db1x_pm_begin,
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/
Dcpm.txt43 if the user-data area does not begin at zero.
/linux-4.4.14/Documentation/hid/
Dhidraw.txt51 will begin at the first byte.
62 be set to 0. The report data itself should begin at the second byte.
/linux-4.4.14/scripts/
Danalyze_suspend.py1227 begin = event['begin']
1230 if(begin < test.data.start):
1231 test.data.setStart(begin)
1235 test.data.newActionGlobal(name, begin, end)
1518 begin = event['begin']
1521 if(begin < test.data.start):
1522 test.data.setStart(begin)
1526 test.data.newActionGlobal(name, begin, end)
1915 begin = event['begin']
1918 if(begin < data.start):
[all …]
/linux-4.4.14/arch/powerpc/include/asm/
Dpmac_pfunc.h57 void * (*begin)(struct pmf_function *func, struct pmf_args *args); member
/linux-4.4.14/drivers/infiniband/ulp/ipoib/
Dipoib_cm.c894 unsigned long begin; in ipoib_cm_dev_stop() local
916 begin = jiffies; in ipoib_cm_dev_stop()
921 if (time_after(jiffies, begin + 5 * HZ)) { in ipoib_cm_dev_stop()
1171 unsigned long begin; in ipoib_cm_tx_destroy() local
1181 begin = jiffies; in ipoib_cm_tx_destroy()
1183 if (time_after(jiffies, begin + 5 * HZ)) { in ipoib_cm_tx_destroy()
Dipoib_ib.c825 unsigned long begin; in ipoib_ib_dev_stop() local
843 begin = jiffies; in ipoib_ib_dev_stop()
846 if (time_after(jiffies, begin + 5 * HZ)) { in ipoib_ib_dev_stop()
/linux-4.4.14/drivers/net/ethernet/apple/
Dbmac.c1571 off_t begin = 0;
1583 pos = begin + len;
1587 begin = pos;
1593 *start = buffer + (offset - begin);
1594 len -= (offset - begin);
/linux-4.4.14/arch/xtensa/boot/boot-redboot/
Dbootstrap.S44 .begin literal_prefix .text
/linux-4.4.14/arch/mips/include/asm/mach-cavium-octeon/
Dkernel-entry-init.h99 # to begin
/linux-4.4.14/arch/arm/mach-at91/
Dpm.c215 .begin = at91_pm_begin,
/linux-4.4.14/drivers/block/
Dvirtio_blk.c451 char *begin = buf + strlen(prefix); in virtblk_name_format() local
460 if (p == begin) in virtblk_name_format()
466 memmove(begin, p, end - p); in virtblk_name_format()
/linux-4.4.14/include/acpi/
Dacpiosxf.h437 u8 begin, u8 *aml, char *pathname);
Dacpixf.h905 u8 begin,
/linux-4.4.14/fs/gfs2/
Drgrp.c1934 static bool gfs2_select_rgrp(struct gfs2_rgrpd **pos, const struct gfs2_rgrpd *begin) in gfs2_select_rgrp() argument
1943 if (rgd != begin) /* If we didn't wrap */ in gfs2_select_rgrp()
1986 struct gfs2_rgrpd *begin = NULL; in gfs2_inplace_reserve() local
1998 begin = rs->rs_rbm.rgd; in gfs2_inplace_reserve()
2000 rs->rs_rbm.rgd = begin = ip->i_rgd; in gfs2_inplace_reserve()
2003 rs->rs_rbm.rgd = begin = gfs2_blk2rgrpd(sdp, ip->i_goal, 1); in gfs2_inplace_reserve()
2083 if (gfs2_select_rgrp(&rs->rs_rbm.rgd, begin)) in gfs2_inplace_reserve()
/linux-4.4.14/arch/powerpc/platforms/52xx/
Dlite5200_pm.c238 .begin = lite5200_pm_begin,
/linux-4.4.14/Documentation/fmc/
Dfmc-chardev.txt50 begin with "+" is the number of bytes to read or write. In case of
/linux-4.4.14/Documentation/ide/
DChangeLog.ide-floppy.1996-200228 * implement formatting. IOCTls begin with 0x4600,
/linux-4.4.14/arch/powerpc/platforms/83xx/
Dsuspend.c319 .begin = mpc83xx_suspend_begin,
/linux-4.4.14/Documentation/cdrom/
Dcdrom-standard.tex23 \begin{document}
37 \begin{itemize}
199 \begin{description}
349 \begin{itemize}
402 \begin{itemize}
415 \begin{itemize}
675 \begin{itemize}
721 \begin{description}
823 \begin{description}
840 \begin{description}
[all …]
/linux-4.4.14/drivers/leds/trigger/
DKconfig28 sporadic events, when there are no clear begin and end trap points,
/linux-4.4.14/Documentation/networking/
Dmultiqueue.txt66 Traffic will begin flowing through each queue based on either the simple_tx_hash
Dtcp.txt86 sk->transmit_queue The transmission frame begin
/linux-4.4.14/arch/sparc/kernel/
Detrap_32.S110 srl %t_wim, 0x1, %g2 ! begin computation of new %wim
Dentry.S1280 srl %o3, 1, %o4 ! begin another save simulation
/linux-4.4.14/Documentation/infiniband/
Dcore_locking.txt109 An upper level protocol consumer may begin using an IB device as
/linux-4.4.14/Documentation/trace/
Dintel_th.txt58 begin with this id: 0-gth, 0-msc0, 0-msc1, 0-pti, 0-sth, which is
Dtracepoint-analysis.txt219 were generating events within the kernel. To begin this sort of analysis, the
/linux-4.4.14/Documentation/filesystems/
Dromfs.txt87 must begin on a 16 byte boundary.
106 Since the file headers begin always at a 16 byte boundary, the lowest
Dporting370 the benefits of rcu-walk mode. We will begin to add filesystem callbacks that
/linux-4.4.14/arch/tile/kernel/
Dsetup.c1140 void __init free_initrd_mem(unsigned long begin, unsigned long end) in free_initrd_mem() argument
1142 free_bootmem_late(__pa(begin), end - begin); in free_initrd_mem()
/linux-4.4.14/net/netfilter/
Dnf_conntrack_core.c459 begin: in ____nf_conntrack_find()
475 goto begin; in ____nf_conntrack_find()
491 begin: in __nf_conntrack_find_get()
501 goto begin; in __nf_conntrack_find_get()
/linux-4.4.14/arch/mn10300/kernel/
Dhead.S260 # signal each secondary CPU to begin booting
/linux-4.4.14/drivers/xen/
Dgntdev.c717 uint64_t begin = map->index << PAGE_SHIFT; in gntdev_ioctl_notify() local
719 if (op.index >= begin && op.index < end) in gntdev_ioctl_notify()
/linux-4.4.14/Documentation/usb/
Dcallbacks.txt112 The reset has completed. Restore any saved device state and begin
Dproc_usb_info.txt283 only the lines that begin with the characters in square brackets,
Dusb-serial.txt245 to begin communicating.
/linux-4.4.14/arch/x86/include/asm/
Dprocessor.h831 extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
/linux-4.4.14/Documentation/filesystems/caching/
Dcachefiles.txt131 configures the cache and tells it to begin caching. At that point the cache
252 if they do. Their filenames all begin "D..." or "E...". If represented as a
256 Special objects are similar to data objects, except their filenames begin
Dnetfs-api.txt774 cookie, will begin the procedure of acquiring backing objects.
777 ruling as to whether or not enablement should actually be permitted to begin.
/linux-4.4.14/net/sunrpc/auth_gss/
Dauth_gss.c1557 unsigned long begin, expire; in gss_cred_is_negative_entry() local
1561 begin = gss_cred->gc_upcall_timestamp; in gss_cred_is_negative_entry()
1562 expire = begin + gss_expired_cred_retry_delay * HZ; in gss_cred_is_negative_entry()
1564 if (time_in_range_open(now, begin, expire)) in gss_cred_is_negative_entry()
/linux-4.4.14/Documentation/locking/
Dlocktorture.txt63 By default it will begin once the module is loaded.
/linux-4.4.14/arch/m68k/fpsp040/
Dutil.S321 | begin
323 | begin
Dfpsp.h16 | All FPSP handlers begin by executing:
/linux-4.4.14/arch/powerpc/platforms/powermac/
Dpfunc_core.c945 if (dev->handlers->begin) in pmf_call_one()
946 instdata = dev->handlers->begin(func, args); in pmf_call_one()
Dlow_i2c.c1401 .begin = pmac_i2c_do_begin,
/linux-4.4.14/drivers/pci/hotplug/
Dcpqphp_core.c97 static void __iomem *detect_SMBIOS_pointer(void __iomem *begin, void __iomem *end) in detect_SMBIOS_pointer() argument
106 for (fp = begin; fp <= endp; fp += 16) { in detect_SMBIOS_pointer()
Dcpqphp_pci.c53 static void __iomem *detect_HRT_floating_pointer(void __iomem *begin, void __iomem *end) in detect_HRT_floating_pointer() argument
62 for (fp = begin; fp <= endp; fp += 16) { in detect_HRT_floating_pointer()
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-decoder-api.txt21 0 based frame number in GOP to begin playback from.
/linux-4.4.14/drivers/pinctrl/sh-pfc/
Dsh_pfc.h131 u16 begin; member
Dcore.c134 if (enum_id < r->begin) in sh_pfc_enum_in_range()
/linux-4.4.14/arch/sparc/lib/
Dchecksum_32.S363 srl %o2, 1, %o4 ! begin negative offset computation
382 andcc %o3, 8, %g0 ! begin checks for that code
/linux-4.4.14/Documentation/fb/
Dudlfb.txt67 to open and begin writing to the framebuffer of the DisplayLink device using
/linux-4.4.14/drivers/scsi/
DBusLogic.c3580 static bool begin = true; in blogic_msg() local
3596 if (begin) { in blogic_msg()
3602 if (begin) { in blogic_msg()
3610 begin = (buf[len - 1] == '\n'); in blogic_msg()
Dsd.c2944 char *begin = buf + strlen(prefix); in sd_format_disk_name() local
2953 if (p == begin) in sd_format_disk_name()
2959 memmove(begin, p, end - p); in sd_format_disk_name()
/linux-4.4.14/Documentation/blockdev/
Dparide.txt97 begin by checking the file names and any text files on your DOS
189 To use PARIDE, you must begin by
/linux-4.4.14/drivers/net/ethernet/stmicro/stmmac/
Dstmmac_ethtool.c755 .begin = stmmac_check_if_running,
/linux-4.4.14/tools/perf/Documentation/
Dperf-script.txt172 transaction abort, trace begin, trace end, and in transaction,
/linux-4.4.14/drivers/net/ethernet/packetengines/
Dhamachi.c1847 .begin = check_if_running,
1856 .begin = check_if_running,
/linux-4.4.14/net/core/
Dethtool.c1807 if (dev->ethtool_ops->begin) { in dev_ethtool()
1808 rc = dev->ethtool_ops->begin(dev); in dev_ethtool()
/linux-4.4.14/scripts/kconfig/
Dqconf.cc71 for (it = entryList.begin(); it != entryList.end(); ++it) in readSizes()
85 for (it = value.begin(); it != value.end(); ++it) in writeSizes()
/linux-4.4.14/drivers/net/wireless/ath/ath10k/
Dwmi-tlv.c85 const void *begin = ptr; in ath10k_wmi_tlv_iter() local
94 ptr - begin, len, sizeof(*tlv)); in ath10k_wmi_tlv_iter()
107 tlv_tag, ptr - begin, len, tlv_len); in ath10k_wmi_tlv_iter()
116 tlv_tag, ptr - begin, tlv_len, in ath10k_wmi_tlv_iter()
/linux-4.4.14/drivers/mtd/nand/brcmnand/
Dbrcmnand.c1341 bool begin, bool end, in brcmnand_fill_dma_desc() argument
1350 (!!begin) | ((!!end) << 1); /* head, tail */ in brcmnand_fill_dma_desc()
/linux-4.4.14/drivers/scsi/aic7xxx/
Daic79xx_seq.h_shipped1032 uint32_t begin :10,
1170 uint16_t begin;
Daic7xxx_seq.h_shipped1086 uint32_t begin :10,
1295 uint16_t begin;
Daic7xxx_core.c2020 if (cs->begin < seqaddr && cs->end >= seqaddr) in ahc_clear_critical_section()
6928 if (critical_sections[cur_cs].begin <= i in ahc_loadseq()
6930 cs_table[cs_count].begin = downloaded; in ahc_loadseq()
6970 while (cur_patch < last_patch && start_instr == cur_patch->begin) { in ahc_check_patch()
/linux-4.4.14/tools/testing/ktest/
Dktest.pl686 my $begin = $1;
690 $retval = "$retval$begin";
/linux-4.4.14/Documentation/arm/OMAP/
DDSS84 DMA channels, companion chips, etc) have been enabled to begin data transfers.
/linux-4.4.14/Documentation/device-mapper/
Dcache.txt293 invalidate_cblocks [<cblock>|<cblock begin>-<cblock end>]*
/linux-4.4.14/Documentation/development-process/
D6.Followthrough139 To begin with, the visibility of your patch has increased yet again. There
/linux-4.4.14/drivers/block/mtip32xx/
Dmtip32xx.c3502 char *begin = buf + strlen(prefix); in rssd_disk_name_format() local
3511 if (p == begin) in rssd_disk_name_format()
3517 memmove(begin, p, end - p); in rssd_disk_name_format()
/linux-4.4.14/drivers/net/ethernet/cadence/
Dmacb.c779 static void discard_partial_frame(struct macb *bp, unsigned int begin, in discard_partial_frame() argument
784 for (frag = begin; frag != end; frag++) { in discard_partial_frame()
/linux-4.4.14/drivers/net/ethernet/intel/e1000/
De1000_main.c1480 unsigned long begin = (unsigned long)start; in e1000_check_64k_bound() local
1481 unsigned long end = begin + len; in e1000_check_64k_bound()
1489 return ((begin ^ (end - 1)) >> 16) != 0 ? false : true; in e1000_check_64k_bound()
/linux-4.4.14/drivers/ata/
Dlibata-core.c5920 void **begin = (void **)ops; in ata_finalize_port_ops() local
5932 for (pp = begin; pp < end; pp++, inherit++) in ata_finalize_port_ops()
5937 for (pp = begin; pp < end; pp++) in ata_finalize_port_ops()
/linux-4.4.14/drivers/net/ethernet/smsc/
Depic100.c1487 .begin = ethtool_begin,
Dsmc91c92_cs.c1982 .begin = check_if_running,
/linux-4.4.14/drivers/staging/speakup/
Dspkguide.txt108 proper bootup parameter for your synthesizer, Speakup will begin
689 compiled and installed speechd-up, you are almost ready to begin using
692 Now you can begin using your software synthesizer. In order to do so,
1341 when you begin distribution of Opaque copies in quantity, to ensure
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/
Dresource_tracker.c4500 unsigned long begin; in move_all_busy() local
4503 begin = jiffies; in move_all_busy()
4506 if (time_after(jiffies, begin + 5 * HZ)) in move_all_busy()
/linux-4.4.14/Documentation/scsi/
DChangeLog.megaraid_sas420 > as they begin to time out. The code keeps the existing transport

12