/linux-4.4.14/fs/ufs/ |
D | util.h | 322 #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 …]
|
D | balloc.c | 743 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/ |
D | cache.c | 26 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/ |
D | cache-sh2a.c | 54 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 …]
|
D | cache-sh2.c | 22 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()
|
D | cache-sh3.c | 38 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/ |
D | bpf-helper.c | 21 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/ |
D | trace_output_user.c | 69 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/ |
D | sc-rm7k.c | 188 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()
|
D | c-r4k.c | 1338 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()
|
D | init.c | 479 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/ |
D | sys_x86_64.c | 100 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()
|
D | vmlinux.lds.S | 178 .init.begin : AT(ADDR(.init.begin) - LOAD_OFFSET) {
|
D | pci-calgary_64.c | 588 begin: in calioc2_tce_cache_blast() 618 goto begin; in calioc2_tce_cache_blast()
|
/linux-4.4.14/drivers/md/persistent-data/ |
D | dm-space-map-metadata.c | 95 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 …]
|
D | dm-space-map-common.c | 168 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 …]
|
D | dm-space-map-disk.c | 30 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()
|
D | dm-space-map-common.h | 110 int sm_ll_find_free_block(struct ll_disk *ll, dm_block_t begin,
|
D | dm-array.c | 454 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/ |
D | sync.h | 36 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/ |
D | board.c | 61 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/ |
D | ratelimit.c | 45 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/ |
D | list.h | 16 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/ |
D | init.c | 648 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/ |
D | init.c | 38 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/ |
D | machine_kexec_64.c | 51 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()
|
D | crash_dump.c | 126 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()
|
D | fadump.c | 1035 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/ |
D | alternative.c | 37 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/ |
D | wsm.c | 898 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 …]
|
D | scan.h | 29 struct ieee80211_channel **begin; member
|
D | scan.c | 111 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()
|
D | wsm.h | 1821 u8 *begin; member
|
/linux-4.4.14/net/ipv6/ |
D | inet6_hashtables.c | 71 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()
|
D | udp.c | 245 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/ |
D | debug.c | 124 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/ |
D | malta-memory.c | 27 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/ |
D | applesmc.c | 377 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/ |
D | rculist_nulls.txt | 16 begin: 20 goto begin; 28 goto begin; 130 begin: 134 goto begin; 137 goto begin; 147 goto begin;
|
/linux-4.4.14/kernel/ |
D | tracepoint.c | 389 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()
|
D | kexec_core.c | 890 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/ |
D | switchdev.c | 637 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/ |
D | bfind.c | 55 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()
|
D | hfsplus_fs.h | 432 int *begin, int *end, int *cur_rec); 434 int *begin, int *end, int *cur_rec);
|
/linux-4.4.14/arch/mips/include/asm/ |
D | bootinfo.h | 116 unsigned long begin, unsigned long end); 118 extern void (*free_init_pages_eva)(void *begin, void *end);
|
D | sgiarcs.h | 176 struct linux_bigint begin; member
|
/linux-4.4.14/include/linux/ |
D | ratelimit.h | 17 unsigned long begin; member 42 rs->begin = 0; in ratelimit_state_init()
|
D | suspend.h | 179 int (*begin)(suspend_state_t state); member 191 int (*begin)(void); member 353 int (*begin)(void); member
|
D | device-mapper.h | 207 sector_t begin; member 594 #define dm_target_offset(ti, sector) ((sector) - (ti)->begin)
|
D | ethtool.h | 249 int (*begin)(struct net_device *); member
|
D | kexec.h | 319 void crash_free_reserved_phys_range(unsigned long begin, unsigned long end);
|
/linux-4.4.14/drivers/md/ |
D | dm-thin-metadata.c | 1437 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 …]
|
D | dm-stripe.c | 264 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()
|
D | dm-cache-policy-smq.c | 59 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 …]
|
D | dm-thin-metadata.h | 154 dm_block_t begin, dm_block_t end, 171 dm_block_t begin, dm_block_t end);
|
D | dm-table.c | 494 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()
|
D | dm-cache-metadata.c | 847 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()
|
D | dm-cache-target.c | 205 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 …]
|
D | dm-thin.c | 652 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 …]
|
D | dm-raid1.c | 920 ms->ti->begin, MAX_RECOVERY, in alloc_context()
|
D | dm-mpath.c | 1597 ret = fn(ti, p->path.dev, ti->begin, ti->len, data); in multipath_iterate_devices()
|
D | dm-ioctl.c | 1131 spec->sector_start = ti->begin; in retrieve_status()
|
/linux-4.4.14/arch/ia64/kernel/ |
D | palinfo.c | 152 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/ |
D | mtdconcat.c | 847 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/ |
D | sleep.c | 591 .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/ |
D | utdebug.c | 581 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()
|
D | exdebug.c | 426 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()
|
D | acinterp.h | 154 u8 begin, u8 *aml, char *pathname);
|
/linux-4.4.14/kernel/power/ |
D | suspend.c | 212 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()
|
D | hibernate.c | 78 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/ |
D | input-mt.c | 299 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/ |
D | list_lru.c | 297 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/ |
D | csum_ipv6_magic.S | 45 addq $20,$0,$20 # .. e1 : begin summing the words 92 extwl $0,2,$2 # e0 : begin folding the 64-bit value
|
D | ev6-csum_ipv6_magic.S | 94 addq $20,$0,$20 # E : begin summing the words
|
/linux-4.4.14/arch/tile/mm/ |
D | init.c | 918 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/ |
D | inet_hashtables.c | 220 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()
|
D | udp.c | 451 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/ |
D | suspend.c | 38 .begin = shmobile_suspend_begin,
|
/linux-4.4.14/arch/powerpc/perf/req-gen/ |
D | _begin.h | 12 #define REQUEST_BEGIN CAT2_STR(REQ_GEN_PREFIX, _request-begin.h)
|
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm.c | 69 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/ |
D | mxhead.S | 30 .begin no-absolute-literals
|
D | head.S | 52 .begin no-absolute-literals
|
D | vectors.S | 208 .begin literal_prefix .DoubleExceptionVector
|
/linux-4.4.14/drivers/net/can/usb/ |
D | usb_8dev.c | 156 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/ |
D | nf_nat_snmp_basic.c | 139 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/ |
D | power_cpu_migrate.h | 43 __define_cpu_migrate_event(begin);
|
/linux-4.4.14/arch/xtensa/boot/boot-elf/ |
D | bootstrap.S | 33 .begin no-absolute-literals
|
/linux-4.4.14/drivers/net/wireless/b43/ |
D | lo.c | 589 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/ |
D | z8530book.xml.db | 32 API-z8530-tx-begin
|
D | filesystems.xml.db | 276 API-splice-from-pipe-begin
|
D | device-drivers.xml.db | 22 API-threadgroup-change-begin 404 API-dma-buf-begin-cpu-access
|
/linux-4.4.14/drivers/net/ethernet/hisilicon/hns/ |
D | hnae.h | 265 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/ |
D | ethtool.c | 101 .begin = wil_ethtoolops_begin,
|
D | wil6210.h | 396 cycles_t idle, last_idle, begin; member
|
D | debugfs.c | 111 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/ |
D | asn1.c | 96 unsigned char *begin; /* First octet */ member 111 ctx->begin = buf; in asn1_open()
|
/linux-4.4.14/arch/ia64/hp/sim/boot/ |
D | bootloader.lds | 42 of the section so we begin them at 0. */
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-fcoe | 12 '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/ |
D | sch_fq.c | 441 begin: in fq_dequeue() 459 goto begin; in fq_dequeue() 467 goto begin; in fq_dequeue() 480 goto begin; in fq_dequeue()
|
D | sch_hhf.c | 433 begin: in hhf_dequeue() 448 goto begin; in hhf_dequeue() 463 goto begin; in hhf_dequeue()
|
D | sch_fq_codel.c | 247 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/ |
D | suspend.c | 227 .begin = pseries_suspend_begin,
|
/linux-4.4.14/drivers/staging/android/ |
D | TODO | 15 begin/end_cpu_access hooks to userspace.
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | pm.c | 241 .begin = omap_pm_begin,
|
/linux-4.4.14/Documentation/ |
D | kernel-doc-nano-HOWTO.txt | 44 "/**" 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
|
D | volatile-considered-harmful.txt | 68 waiting is generally an anti-social act to begin with.
|
D | crc32.txt | 156 look-ups cannot begin until the previous groups 4 table look-ups have all
|
D | IRQ-domain.txt | 46 In most cases, the irq_domain will begin empty without any mappings
|
D | intel_txt.txt | 56 assume the kernel is "good" to begin with. The Integrity
|
D | unshare.txt | 289 signals and signal handlers. Signals are complex to begin with and
|
D | DMA-API.txt | 228 correctly, the mapped region must begin exactly on a cache line 234 only map virtual regions that begin and end on page boundaries (which
|
D | memory-hotplug.txt | 379 Generated to begin the process of offlining memory. Allocations are no
|
D | assoc_array.txt | 352 It is also recommended that the index key begin with a hash of the rest of the
|
D | vfio.txt | 260 vfio_add_group_dev() indicates to the core to begin tracking the
|
/linux-4.4.14/drivers/lguest/ |
D | README | 31 - Where we trace back to the creation of the Guest, and thus begin our
|
/linux-4.4.14/Documentation/arm/SA1100/ |
D | Brutus | 25 ----- begin angelboot.opt -----
|
D | GraphicsClient | 36 ----- begin angelboot.opt -----
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | mpic.txt | 167 * The interrupt source configuration registers begin 174 * The interrupt source configuration registers begin
|
D | msi-pic.txt | 33 Each available range must begin and end on a multiple of 32 (i.e.
|
/linux-4.4.14/sound/isa/gus/ |
D | gus_pcm.c | 114 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/ |
D | phy.c | 1401 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/ |
D | pm.c | 110 .begin = db1x_pm_begin,
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/ |
D | cpm.txt | 43 if the user-data area does not begin at zero.
|
/linux-4.4.14/Documentation/hid/ |
D | hidraw.txt | 51 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/ |
D | analyze_suspend.py | 1227 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/ |
D | pmac_pfunc.h | 57 void * (*begin)(struct pmf_function *func, struct pmf_args *args); member
|
/linux-4.4.14/drivers/infiniband/ulp/ipoib/ |
D | ipoib_cm.c | 894 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()
|
D | ipoib_ib.c | 825 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/ |
D | bmac.c | 1571 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/ |
D | bootstrap.S | 44 .begin literal_prefix .text
|
/linux-4.4.14/arch/mips/include/asm/mach-cavium-octeon/ |
D | kernel-entry-init.h | 99 # to begin
|
/linux-4.4.14/arch/arm/mach-at91/ |
D | pm.c | 215 .begin = at91_pm_begin,
|
/linux-4.4.14/drivers/block/ |
D | virtio_blk.c | 451 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/ |
D | acpiosxf.h | 437 u8 begin, u8 *aml, char *pathname);
|
D | acpixf.h | 905 u8 begin,
|
/linux-4.4.14/fs/gfs2/ |
D | rgrp.c | 1934 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/ |
D | lite5200_pm.c | 238 .begin = lite5200_pm_begin,
|
/linux-4.4.14/Documentation/fmc/ |
D | fmc-chardev.txt | 50 begin with "+" is the number of bytes to read or write. In case of
|
/linux-4.4.14/Documentation/ide/ |
D | ChangeLog.ide-floppy.1996-2002 | 28 * implement formatting. IOCTls begin with 0x4600,
|
/linux-4.4.14/arch/powerpc/platforms/83xx/ |
D | suspend.c | 319 .begin = mpc83xx_suspend_begin,
|
/linux-4.4.14/Documentation/cdrom/ |
D | cdrom-standard.tex | 23 \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/ |
D | Kconfig | 28 sporadic events, when there are no clear begin and end trap points,
|
/linux-4.4.14/Documentation/networking/ |
D | multiqueue.txt | 66 Traffic will begin flowing through each queue based on either the simple_tx_hash
|
D | tcp.txt | 86 sk->transmit_queue The transmission frame begin
|
/linux-4.4.14/arch/sparc/kernel/ |
D | etrap_32.S | 110 srl %t_wim, 0x1, %g2 ! begin computation of new %wim
|
D | entry.S | 1280 srl %o3, 1, %o4 ! begin another save simulation
|
/linux-4.4.14/Documentation/infiniband/ |
D | core_locking.txt | 109 An upper level protocol consumer may begin using an IB device as
|
/linux-4.4.14/Documentation/trace/ |
D | intel_th.txt | 58 begin with this id: 0-gth, 0-msc0, 0-msc1, 0-pti, 0-sth, which is
|
D | tracepoint-analysis.txt | 219 were generating events within the kernel. To begin this sort of analysis, the
|
/linux-4.4.14/Documentation/filesystems/ |
D | romfs.txt | 87 must begin on a 16 byte boundary. 106 Since the file headers begin always at a 16 byte boundary, the lowest
|
D | porting | 370 the benefits of rcu-walk mode. We will begin to add filesystem callbacks that
|
/linux-4.4.14/arch/tile/kernel/ |
D | setup.c | 1140 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/ |
D | nf_conntrack_core.c | 459 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/ |
D | head.S | 260 # signal each secondary CPU to begin booting
|
/linux-4.4.14/drivers/xen/ |
D | gntdev.c | 717 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/ |
D | callbacks.txt | 112 The reset has completed. Restore any saved device state and begin
|
D | proc_usb_info.txt | 283 only the lines that begin with the characters in square brackets,
|
D | usb-serial.txt | 245 to begin communicating.
|
/linux-4.4.14/arch/x86/include/asm/ |
D | processor.h | 831 extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | cachefiles.txt | 131 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
|
D | netfs-api.txt | 774 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/ |
D | auth_gss.c | 1557 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/ |
D | locktorture.txt | 63 By default it will begin once the module is loaded.
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | util.S | 321 | begin 323 | begin
|
D | fpsp.h | 16 | All FPSP handlers begin by executing:
|
/linux-4.4.14/arch/powerpc/platforms/powermac/ |
D | pfunc_core.c | 945 if (dev->handlers->begin) in pmf_call_one() 946 instdata = dev->handlers->begin(func, args); in pmf_call_one()
|
D | low_i2c.c | 1401 .begin = pmac_i2c_do_begin,
|
/linux-4.4.14/drivers/pci/hotplug/ |
D | cpqphp_core.c | 97 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()
|
D | cpqphp_pci.c | 53 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/ |
D | fw-decoder-api.txt | 21 0 based frame number in GOP to begin playback from.
|
/linux-4.4.14/drivers/pinctrl/sh-pfc/ |
D | sh_pfc.h | 131 u16 begin; member
|
D | core.c | 134 if (enum_id < r->begin) in sh_pfc_enum_in_range()
|
/linux-4.4.14/arch/sparc/lib/ |
D | checksum_32.S | 363 srl %o2, 1, %o4 ! begin negative offset computation 382 andcc %o3, 8, %g0 ! begin checks for that code
|
/linux-4.4.14/Documentation/fb/ |
D | udlfb.txt | 67 to open and begin writing to the framebuffer of the DisplayLink device using
|
/linux-4.4.14/drivers/scsi/ |
D | BusLogic.c | 3580 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()
|
D | sd.c | 2944 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/ |
D | paride.txt | 97 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/ |
D | stmmac_ethtool.c | 755 .begin = stmmac_check_if_running,
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-script.txt | 172 transaction abort, trace begin, trace end, and in transaction,
|
/linux-4.4.14/drivers/net/ethernet/packetengines/ |
D | hamachi.c | 1847 .begin = check_if_running, 1856 .begin = check_if_running,
|
/linux-4.4.14/net/core/ |
D | ethtool.c | 1807 if (dev->ethtool_ops->begin) { in dev_ethtool() 1808 rc = dev->ethtool_ops->begin(dev); in dev_ethtool()
|
/linux-4.4.14/scripts/kconfig/ |
D | qconf.cc | 71 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/ |
D | wmi-tlv.c | 85 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/ |
D | brcmnand.c | 1341 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/ |
D | aic79xx_seq.h_shipped | 1032 uint32_t begin :10, 1170 uint16_t begin;
|
D | aic7xxx_seq.h_shipped | 1086 uint32_t begin :10, 1295 uint16_t begin;
|
D | aic7xxx_core.c | 2020 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/ |
D | ktest.pl | 686 my $begin = $1; 690 $retval = "$retval$begin";
|
/linux-4.4.14/Documentation/arm/OMAP/ |
D | DSS | 84 DMA channels, companion chips, etc) have been enabled to begin data transfers.
|
/linux-4.4.14/Documentation/device-mapper/ |
D | cache.txt | 293 invalidate_cblocks [<cblock>|<cblock begin>-<cblock end>]*
|
/linux-4.4.14/Documentation/development-process/ |
D | 6.Followthrough | 139 To begin with, the visibility of your patch has increased yet again. There
|
/linux-4.4.14/drivers/block/mtip32xx/ |
D | mtip32xx.c | 3502 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/ |
D | macb.c | 779 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/ |
D | e1000_main.c | 1480 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/ |
D | libata-core.c | 5920 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/ |
D | epic100.c | 1487 .begin = ethtool_begin,
|
D | smc91c92_cs.c | 1982 .begin = check_if_running,
|
/linux-4.4.14/drivers/staging/speakup/ |
D | spkguide.txt | 108 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/ |
D | resource_tracker.c | 4500 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/ |
D | ChangeLog.megaraid_sas | 420 > as they begin to time out. The code keeps the existing transport
|