Searched refs:begin (Results 1 - 200 of 620) sorted by relevance

1234

/linux-4.4.14/arch/sh/mm/
H A Dcache-sh2.c22 unsigned long begin, end; sh2__flush_wback_region() local
24 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); sh2__flush_wback_region()
27 for (v = begin; v < end; v+=L1_CACHE_BYTES) { sh2__flush_wback_region()
43 unsigned long begin, end; sh2__flush_purge_region() local
45 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); sh2__flush_purge_region()
49 for (v = begin; v < end; v+=L1_CACHE_BYTES) sh2__flush_purge_region()
74 unsigned long begin, end; sh2__flush_invalidate_region()
76 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); sh2__flush_invalidate_region()
80 for (v = begin; v < end; v+=L1_CACHE_BYTES) sh2__flush_invalidate_region()
H A Dcache-sh2a.c54 unsigned long begin, end; sh2a__flush_wback_region() local
58 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); sh2a__flush_wback_region()
67 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) { sh2a__flush_wback_region()
68 begin = CACHE_OC_ADDRESS_ARRAY; sh2a__flush_wback_region()
69 end = begin + (nr_ways * current_cpu_data.dcache.way_size); sh2a__flush_wback_region()
71 for (v = begin; v < end; v += L1_CACHE_BYTES) { sh2a__flush_wback_region()
79 for (v = begin; v < end; v += L1_CACHE_BYTES) sh2a__flush_wback_region()
95 unsigned long begin, end; sh2a__flush_purge_region() local
98 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); sh2a__flush_purge_region()
105 for (v = begin; v < end; v+=L1_CACHE_BYTES) { sh2a__flush_purge_region()
125 unsigned long begin, end; sh2a__flush_invalidate_region() local
128 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); sh2a__flush_invalidate_region()
136 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) { sh2a__flush_invalidate_region()
140 for (v = begin; v < end; v += L1_CACHE_BYTES) sh2a__flush_invalidate_region()
H A Dcache-sh3.c38 unsigned long begin, end; sh3__flush_wback_region() local
41 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); sh3__flush_wback_region()
45 for (v = begin; v < end; v+=L1_CACHE_BYTES) { sh3__flush_wback_region()
77 unsigned long begin, end; sh3__flush_purge_region() local
79 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); sh3__flush_purge_region()
83 for (v = begin; v < end; v+=L1_CACHE_BYTES) { sh3__flush_purge_region()
/linux-4.4.14/arch/avr32/mm/
H A Dcache.c26 unsigned long v, begin, end, linesz, mask; invalidate_dcache_region() local
34 begin = (unsigned long)start; invalidate_dcache_region()
35 end = begin + size; invalidate_dcache_region()
37 if (begin & mask) { invalidate_dcache_region()
39 begin += linesz; invalidate_dcache_region()
47 for (v = begin; v < end; v += linesz) invalidate_dcache_region()
54 unsigned long v, begin, end, linesz; clean_dcache_region() local
57 begin = (unsigned long)start & ~(linesz - 1); clean_dcache_region()
60 for (v = begin; v < end; v += linesz) clean_dcache_region()
67 unsigned long v, begin, end, linesz; flush_dcache_region() local
70 begin = (unsigned long)start & ~(linesz - 1); flush_dcache_region()
73 for (v = begin; v < end; v += linesz) flush_dcache_region()
80 unsigned long v, begin, end, linesz; invalidate_icache_region() local
83 begin = (unsigned long)start & ~(linesz - 1); invalidate_icache_region()
86 for (v = begin; v < end; v += linesz) invalidate_icache_region()
/linux-4.4.14/samples/seccomp/
H A Dbpf-helper.c21 struct sock_filter *begin = filter; bpf_resolve_jumps() local
31 for (; filter >= begin; --insn, --filter) { bpf_resolve_jumps()
65 struct __bpf_label *begin = labels->labels, *end; seccomp_bpf_label() local
73 begin->label = label; seccomp_bpf_label()
74 begin->location = 0xffffffff; seccomp_bpf_label()
78 end = begin + labels->count; seccomp_bpf_label()
79 for (id = 0; begin < end; ++begin, ++id) { seccomp_bpf_label()
80 if (!strcmp(label, begin->label)) seccomp_bpf_label()
83 begin->label = label; seccomp_bpf_label()
84 begin->location = 0xffffffff; seccomp_bpf_label()
/linux-4.4.14/fs/ufs/
H A Dutil.h322 #define ubh_get_addr8(ubh,begin) \
323 ((u8*)(ubh)->bh[(begin) >> uspi->s_fshift]->b_data + \
324 ((begin) & ~uspi->s_fmask))
326 #define ubh_get_addr16(ubh,begin) \
327 (((__fs16*)((ubh)->bh[(begin) >> (uspi->s_fshift-1)]->b_data)) + \
328 ((begin) & ((uspi->fsize>>1) - 1)))
330 #define ubh_get_addr32(ubh,begin) \
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) \
335 (((__fs64*)((ubh)->bh[(begin) >> (uspi->s_fshift-3)]->b_data)) + \
336 ((begin) & ((uspi->s_fsize>>3) - 1)))
350 #define ubh_blkmap(ubh,begin,bit) \
351 ((*ubh_get_addr(ubh, (begin) + ((bit) >> 3)) >> ((bit) & 7)) & (0xff >> (UFS_MAXFRAG - uspi->s_fpb)))
383 #define ubh_setbit(ubh,begin,bit) \
384 (*ubh_get_addr(ubh, (begin) + ((bit) >> 3)) |= (1 << ((bit) & 7)))
386 #define ubh_clrbit(ubh,begin,bit) \
387 (*ubh_get_addr (ubh, (begin) + ((bit) >> 3)) &= ~(1 << ((bit) & 7)))
389 #define ubh_isset(ubh,begin,bit) \
390 (*ubh_get_addr (ubh, (begin) + ((bit) >> 3)) & (1 << ((bit) & 7)))
392 #define ubh_isclr(ubh,begin,bit) (!ubh_isset(ubh,begin,bit))
394 #define ubh_find_first_zero_bit(ubh,begin,size) _ubh_find_next_zero_bit_(uspi,ubh,begin,size,0)
396 #define ubh_find_next_zero_bit(ubh,begin,size,offset) _ubh_find_next_zero_bit_(uspi,ubh,begin,size,offset) _ubh_find_next_zero_bit_()
399 unsigned begin, unsigned size, unsigned offset) _ubh_find_next_zero_bit_()
404 begin <<= 3; _ubh_find_next_zero_bit_()
405 offset += begin; _ubh_find_next_zero_bit_()
417 return (base << uspi->s_bpfshift) + pos - begin; _ubh_find_next_zero_bit_()
443 #define ubh_find_last_zero_bit(ubh,begin,size,offset) _ubh_find_last_zero_bit_(uspi,ubh,begin,size,offset) _ubh_find_last_zero_bit_()
446 unsigned begin, unsigned start, unsigned end) _ubh_find_last_zero_bit_()
451 begin <<= 3; _ubh_find_last_zero_bit_()
452 start += begin; _ubh_find_last_zero_bit_()
467 return (base << uspi->s_bpfshift) + pos - begin; _ubh_find_last_zero_bit_()
470 #define ubh_isblockclear(ubh,begin,block) (!_ubh_isblockset_(uspi,ubh,begin,block))
472 #define ubh_isblockset(ubh,begin,block) _ubh_isblockset_(uspi,ubh,begin,block) _ubh_isblockset_()
474 struct ufs_buffer_head * ubh, unsigned begin, unsigned block) _ubh_isblockset_()
478 return (*ubh_get_addr (ubh, begin + block) == 0xff); _ubh_isblockset_()
480 return (*ubh_get_addr (ubh, begin + (block >> 1)) == (0x0f << ((block & 0x01) << 2))); _ubh_isblockset_()
482 return (*ubh_get_addr (ubh, begin + (block >> 2)) == (0x03 << ((block & 0x03) << 1))); _ubh_isblockset_()
484 return (*ubh_get_addr (ubh, begin + (block >> 3)) == (0x01 << (block & 0x07))); _ubh_isblockset_()
489 #define ubh_clrblock(ubh,begin,block) _ubh_clrblock_(uspi,ubh,begin,block) _ubh_clrblock_()
491 struct ufs_buffer_head * ubh, unsigned begin, unsigned block) _ubh_clrblock_()
495 *ubh_get_addr (ubh, begin + block) = 0x00; _ubh_clrblock_()
498 *ubh_get_addr (ubh, begin + (block >> 1)) &= ~(0x0f << ((block & 0x01) << 2)); _ubh_clrblock_()
501 *ubh_get_addr (ubh, begin + (block >> 2)) &= ~(0x03 << ((block & 0x03) << 1)); _ubh_clrblock_()
504 *ubh_get_addr (ubh, begin + (block >> 3)) &= ~(0x01 << ((block & 0x07))); _ubh_clrblock_()
509 #define ubh_setblock(ubh,begin,block) _ubh_setblock_(uspi,ubh,begin,block) _ubh_setblock_()
511 struct ufs_buffer_head * ubh, unsigned begin, unsigned block) _ubh_setblock_()
515 *ubh_get_addr(ubh, begin + block) = 0xff; _ubh_setblock_()
518 *ubh_get_addr(ubh, begin + (block >> 1)) |= (0x0f << ((block & 0x01) << 2)); _ubh_setblock_()
521 *ubh_get_addr(ubh, begin + (block >> 2)) |= (0x03 << ((block & 0x03) << 1)); _ubh_setblock_()
524 *ubh_get_addr(ubh, begin + (block >> 3)) |= (0x01 << ((block & 0x07))); _ubh_setblock_()
397 _ubh_find_next_zero_bit_( struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned size, unsigned offset) _ubh_find_next_zero_bit_() argument
444 _ubh_find_last_zero_bit_( struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned start, unsigned end) _ubh_find_last_zero_bit_() argument
473 _ubh_isblockset_(struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned block) _ubh_isblockset_() argument
490 _ubh_clrblock_(struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned block) _ubh_clrblock_() argument
510 _ubh_setblock_(struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned block) _ubh_setblock_() argument
H A Dballoc.c743 unsigned begin, unsigned size, ubh_scanc()
750 offset = begin & ~uspi->s_fmask; ubh_scanc()
751 begin >>= uspi->s_fshift; ubh_scanc()
758 cp = ubh->bh[begin]->b_data + offset; ubh_scanc()
763 begin++; ubh_scanc()
741 ubh_scanc(struct ufs_sb_private_info *uspi, struct ufs_buffer_head *ubh, unsigned begin, unsigned size, unsigned char *table, unsigned char mask) ubh_scanc() argument
/linux-4.4.14/drivers/staging/android/trace/
H A 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/powerpc/perf/req-gen/
H A D_begin.h12 #define REQUEST_BEGIN CAT2_STR(REQ_GEN_PREFIX, _request-begin.h)
/linux-4.4.14/tools/include/linux/
H A Dlist.h11 * @begin: first element in the range to delete from the list.
16 static inline void list_del_range(struct list_head *begin, list_del_range() argument
19 begin->prev->next = end->next; list_del_range()
20 end->next->prev = begin->prev; list_del_range()
/linux-4.4.14/samples/bpf/
H A Dtrace_output_user.c69 void *base, *begin, *end; perf_event_read() local
78 begin = base + data_tail % buffer_size; perf_event_read()
81 while (begin != end) { perf_event_read()
84 e = begin; perf_event_read()
85 if (begin + e->header.size > base + buffer_size) { perf_event_read()
86 long len = base + buffer_size - begin; perf_event_read()
89 memcpy(buf, begin, len); perf_event_read()
92 begin = base + e->header.size - len; perf_event_read()
93 } else if (begin + e->header.size == base + buffer_size) { perf_event_read()
94 begin = base; perf_event_read()
96 begin += e->header.size; perf_event_read()
/linux-4.4.14/arch/cris/mm/
H A Dinit.c38 void free_init_pages(const char *what, unsigned long begin, unsigned long end) free_init_pages() argument
42 for (addr = begin; addr < end; addr += PAGE_SIZE) { free_init_pages()
49 printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10); free_init_pages()
/linux-4.4.14/lib/
H A Dratelimit.c45 if (!rs->begin) ___ratelimit()
46 rs->begin = jiffies; ___ratelimit()
48 if (time_is_before_jiffies(rs->begin + rs->interval)) { ___ratelimit()
52 rs->begin = 0; ___ratelimit()
H A Dglob.c78 * range a-b. The first span may begin with ']'. glob_match()
/linux-4.4.14/arch/mips/mm/
H A Dsc-rm7k.c188 unsigned long flags, addr, begin, end, pow2; __probe_tcache() local
190 begin = (unsigned long) &_stext; __probe_tcache()
191 begin &= ~((8 * 1024 * 1024) - 1); __probe_tcache()
192 end = begin + (8 * 1024 * 1024); __probe_tcache()
200 for (addr = begin; addr <= end; addr = (begin + pow2)) { __probe_tcache()
209 cache_op(Index_Store_Tag_T, begin); __probe_tcache()
213 for (addr = begin + (512 * 1024); addr <= end; addr = begin + pow2) { __probe_tcache()
220 addr -= begin; __probe_tcache()
H A Dc-r4k.c1338 unsigned long flags, addr, begin, end, pow2; probe_scache() local
1345 begin = (unsigned long) &_stext; probe_scache()
1346 begin &= ~((4 * 1024 * 1024) - 1); probe_scache()
1347 end = begin + (4 * 1024 * 1024); probe_scache()
1357 for (addr = begin; addr < end; addr = (begin + pow2)) { probe_scache()
1367 cache_op(Index_Store_Tag_I, begin); probe_scache()
1368 cache_op(Index_Store_Tag_D, begin); probe_scache()
1369 cache_op(Index_Store_Tag_SD, begin); probe_scache()
1373 for (addr = begin + (128 * 1024); addr < end; addr = begin + pow2) { probe_scache()
1381 addr -= begin; probe_scache()
H A Dinit.c479 void free_init_pages(const char *what, unsigned long begin, unsigned long end) free_init_pages() argument
483 for (pfn = PFN_UP(begin); pfn < PFN_DOWN(end); pfn++) { free_init_pages()
490 printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10); free_init_pages()
501 void (*free_init_pages_eva)(void *begin, void *end) = NULL;
/linux-4.4.14/drivers/md/persistent-data/
H A Ddm-space-map-metadata.c95 unsigned begin; member in struct:bop_ring_buffer
102 brb->begin = 0; brb_init()
108 return brb->begin == brb->end; brb_empty()
127 if (next == brb->begin) brb_push()
146 bop = brb->bops + brb->begin; brb_peek()
158 brb->begin = brb_next(brb, brb->begin); brb_pop()
171 dm_block_t begin; member in struct:sm_metadata
311 for (i = smm->uncommitted.begin; sm_metadata_get_count()
351 for (i = smm->uncommitted.begin; 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); sm_metadata_new_block_()
454 smm->begin = *b + 1; sm_metadata_new_block_()
502 smm->begin = 0; sm_metadata_commit()
594 *count = smm->ll.nr_blocks - smm->begin; sm_bootstrap_get_nr_free()
604 *result = (b < smm->begin) ? 1 : 0; sm_bootstrap_get_count()
632 if (smm->begin == smm->ll.nr_blocks) sm_bootstrap_new_block()
635 *b = smm->begin++; sm_bootstrap_new_block()
702 smm->begin = old_len; sm_metadata_extend()
717 for (i = old_len; !r && i < smm->begin; i++) sm_metadata_extend()
723 old_len = smm->begin; sm_metadata_extend()
735 } while (old_len != smm->begin); sm_metadata_extend()
769 smm->begin = superblock + 1; dm_sm_metadata_create()
793 for (i = superblock; !r && i < smm->begin; i++) dm_sm_metadata_create()
819 smm->begin = 0; dm_sm_metadata_open()
H A Ddm-space-map-disk.c30 dm_block_t begin; member in struct:sm_disk
158 r = sm_ll_find_free_block(&smd->old_ll, smd->begin, smd->old_ll.nr_blocks, b); sm_disk_new_block()
162 smd->begin = *b + 1; sm_disk_new_block()
187 smd->begin = 0; sm_disk_commit()
251 smd->begin = 0; dm_sm_disk_create()
285 smd->begin = 0; dm_sm_disk_open()
H A Ddm-space-map-common.c168 static int sm_find_free(void *addr, unsigned begin, unsigned end, sm_find_free() argument
171 while (begin < end) { sm_find_free()
172 if (!(begin & (ENTRIES_PER_WORD - 1)) && sm_find_free()
173 bitmap_word_used(addr, begin)) { sm_find_free()
174 begin += ENTRIES_PER_WORD; sm_find_free()
178 if (!sm_lookup_bitmap(addr, begin)) { sm_find_free()
179 *result = begin; sm_find_free()
183 begin++; sm_find_free()
327 int sm_ll_find_free_block(struct ll_disk *ll, dm_block_t begin, sm_ll_find_free_block() argument
332 dm_block_t i, index_begin = begin; sm_ll_find_free_block()
338 begin = do_div(index_begin, ll->entries_per_block); sm_ll_find_free_block()
341 for (i = index_begin; i < index_end; i++, begin = 0) { sm_ll_find_free_block()
361 max_t(unsigned, begin, le32_to_cpu(ie_disk.none_free_before)), sm_ll_find_free_block()
H A Ddm-space-map-common.h110 int sm_ll_find_free_block(struct ll_disk *ll, dm_block_t begin,
H A Ddm-array.c454 unsigned begin, end; shrink() local
462 begin = total_nr_blocks_needed(resize->new_nr_full_blocks, shrink()
467 r = drop_blocks(resize, begin, end); shrink()
/linux-4.4.14/include/linux/
H A Dratelimit.h17 unsigned long begin; member in struct:ratelimit_state
42 rs->begin = 0; ratelimit_state_init()
H A Dsuspend.h111 * @begin: Initialise a transition to given system sleep state.
112 * @begin() is executed right prior to suspending devices. The information
113 * conveyed to the platform code by @begin() should be disregarded by it as
114 * soon as @end() is executed. If @begin() fails (ie. returns nonzero),
120 * by @begin().
129 * state indicated by @begin().
136 * @enter: Enter the system sleep state indicated by @begin() or represented by
137 * the argument if @begin() is not implemented.
168 * that implement @begin(). Accordingly, platforms implementing @begin()
179 int (*begin)(suspend_state_t state); member in struct:platform_suspend_ops
191 int (*begin)(void); member in struct:platform_freeze_ops
308 * @begin: Tell the platform driver that we're starting hibernation.
353 int (*begin)(void); member in struct:platform_hibernation_ops
H A Dseqlock.h95 * __read_seqcount_begin - begin a seq-read critical section (without barrier)
153 * read_seqcount_begin - begin a seq-read critical section
168 * raw_seqcount_begin - begin a seq-read critical section
177 * to stabilize. If a writer is active when we begin, we will fail the
514 * read_seqbegin_or_lock - begin a sequence number check or locking block
521 * N.B. seq must be initialized to an even number to begin with.
H A Dethtool.h160 * @begin: Function to be called before any other operation. Returns a
163 * @begin. Will be called even if the other operation failed.
249 int (*begin)(struct net_device *); member in struct:ethtool_ops
H A Ddevice-mapper.h30 * table, type, begin and len fields filled in.
207 sector_t begin; member in struct:dm_target
594 #define dm_target_offset(ti, sector) ((sector) - (ti)->begin)
/linux-4.4.14/arch/mips/ath25/
H A Dboard.c61 const void __iomem *begin = limit - 0x1000; find_board_config() local
64 for (addr = begin; addr >= end; addr -= 0x1000) find_board_config()
74 const void __iomem *rcfg, *begin, *end; find_radio_config() local
81 begin = bcfg + 0x1000; find_radio_config()
83 for (rcfg = begin; rcfg < end; rcfg += 0x1000) find_radio_config()
88 begin = bcfg + 0xf8; find_radio_config()
90 for (rcfg = begin; rcfg < end; rcfg += 0x1000) find_radio_config()
/linux-4.4.14/arch/x86/kernel/
H A Dsys_x86_64.c100 static void find_start_end(unsigned long flags, unsigned long *begin, find_start_end() argument
112 *begin = 0x40000000; find_start_end()
115 new_begin = randomize_range(*begin, *begin + 0x02000000, 0); find_start_end()
117 *begin = new_begin; find_start_end()
120 *begin = current->mm->mmap_legacy_base; find_start_end()
132 unsigned long begin, end; arch_get_unmapped_area() local
137 find_start_end(flags, &begin, &end); arch_get_unmapped_area()
152 info.low_limit = begin; arch_get_unmapped_area()
H A Dcrash_dump_64.c19 * @offset: offset in bytes into the page (based on pfn) to begin the copy
H A Dcrash_dump_32.c39 * @offset: offset in bytes into the page (based on pfn) to begin the copy
H A Dvmlinux.lds.S178 .init.begin : AT(ADDR(.init.begin) - LOAD_OFFSET) {
/linux-4.4.14/arch/arm64/kernel/
H A Dalternative.c37 struct alt_instr *begin; member in struct:alt_region
94 for (alt = region->begin; alt < region->end; alt++) { __apply_alternatives()
127 .begin = __alt_instructions, __apply_alternatives_multi_stop()
155 .begin = start, apply_alternatives()
/linux-4.4.14/arch/arm/mach-shmobile/
H A Dsuspend.c38 .begin = shmobile_suspend_begin,
/linux-4.4.14/arch/mips/mti-malta/
H A Dmalta-memory.c27 static void free_init_pages_eva_malta(void *begin, void *end) free_init_pages_eva_malta() argument
29 free_init_pages("unused kernel", __pa_symbol((unsigned long *)begin), free_init_pages_eva_malta()
/linux-4.4.14/drivers/net/wireless/ath/wcn36xx/
H A Ddebug.c124 char *begin; write_file_dump() local
125 begin = strsep(&tmp, " "); write_file_dump()
126 if (begin == NULL) write_file_dump()
129 if (kstrtou32(begin, 0, &arg[i]) != 0) write_file_dump()
/linux-4.4.14/arch/xtensa/boot/boot-elf/
H A Dbootstrap.S33 .begin no-absolute-literals
/linux-4.4.14/include/trace/events/
H A Dpower_cpu_migrate.h43 __define_cpu_migrate_event(begin); variable
/linux-4.4.14/arch/sparc/include/asm/
H A Dasmmacro.h9 /* All trap entry points _must_ begin with this macro or else you
/linux-4.4.14/arch/arm/include/asm/
H A Dneon.h21 * generating(1) NEON instructions outside of these begin/end functions, the
/linux-4.4.14/drivers/watchdog/
H A Docteon-wdt-nmi.S52 /* Set the stack to begin right below the registers */
/linux-4.4.14/arch/alpha/lib/
H A 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
H A Dev6-csum_ipv6_magic.S94 addq $20,$0,$20 # E : begin summing the words
/linux-4.4.14/net/ipv6/
H A Dinet6_hashtables.c71 begin: __inet6_lookup_established()
82 goto begin; __inet6_lookup_established()
87 goto begin; __inet6_lookup_established()
137 begin: inet6_lookup_listener()
164 goto begin; inet6_lookup_listener()
171 goto begin; inet6_lookup_listener()
H A Dudp.c245 begin: udp6_lib_lookup2()
273 goto begin; udp6_lib_lookup2()
281 goto begin; udp6_lib_lookup2()
306 goto begin; __udp6_lib_lookup()
316 goto begin; __udp6_lib_lookup()
325 begin: __udp6_lib_lookup()
352 goto begin; __udp6_lib_lookup()
360 goto begin; __udp6_lib_lookup()
/linux-4.4.14/drivers/net/wireless/cw1200/
H A Dwsm.c898 hdr_len = buf->data - buf->begin; wsm_receive_indication()
1083 size_t buf_len = buf->data - buf->begin; wsm_cmd_send()
1104 cmd, __le16_to_cpu(((__le16 *)buf->begin)[2]), wsm_cmd_send()
1117 ((__le16 *)buf->begin)[0] = __cpu_to_le16(buf_len); wsm_cmd_send()
1118 ((__le16 *)buf->begin)[1] = __cpu_to_le16(cmd); wsm_cmd_send()
1122 priv->wsm_cmd.ptr = buf->begin; wsm_cmd_send()
1145 buf->begin, buf_len); wsm_cmd_send()
1261 buf.begin = buf.data = data; wsm_handle_exception()
1262 buf.end = &buf.begin[len]; wsm_handle_exception()
1312 wsm_buf.begin = (u8 *)&wsm[0]; wsm_handle_rx()
1314 wsm_buf.end = &wsm_buf.begin[__le16_to_cpu(wsm->len)]; wsm_handle_rx()
1317 wsm_buf.end - wsm_buf.begin); wsm_handle_rx()
1784 BUG_ON(buf->begin); wsm_buf_init()
1785 buf->begin = kmalloc(FWLOAD_BLOCK_SIZE, GFP_KERNEL | GFP_DMA); wsm_buf_init()
1786 buf->end = buf->begin ? &buf->begin[FWLOAD_BLOCK_SIZE] : buf->begin; wsm_buf_init()
1792 kfree(buf->begin); wsm_buf_deinit()
1793 buf->begin = buf->data = buf->end = NULL; wsm_buf_deinit()
1798 if (buf->begin) { wsm_buf_reset()
1799 buf->data = &buf->begin[4]; wsm_buf_reset()
1800 *(u32 *)buf->begin = 0; wsm_buf_reset()
1802 buf->data = buf->begin; wsm_buf_reset()
1808 size_t pos = buf->data - buf->begin; wsm_buf_reserve()
1813 buf->begin = krealloc(buf->begin, size, GFP_KERNEL | GFP_DMA); wsm_buf_reserve()
1814 if (buf->begin) { wsm_buf_reserve()
1815 buf->data = &buf->begin[pos]; wsm_buf_reserve()
1816 buf->end = &buf->begin[size]; wsm_buf_reserve()
1819 buf->end = buf->data = buf->begin; wsm_buf_reserve()
H A Dscan.h29 struct ieee80211_channel **begin; member in struct:cw1200_scan
H A Dscan.c111 priv->scan.begin = &req->channels[0]; cw1200_hw_scan()
112 priv->scan.curr = priv->scan.begin; cw1200_hw_scan()
140 bool first_run = (priv->scan.begin == priv->scan.curr && cw1200_scan_work()
141 priv->scan.begin != priv->scan.end); cw1200_scan_work()
/linux-4.4.14/arch/x86/mm/
H A Dinit.c648 void free_init_pages(char *what, unsigned long begin, unsigned long end) free_init_pages() argument
653 begin_aligned = PAGE_ALIGN(begin); free_init_pages()
656 if (WARN_ON(begin_aligned != begin || end_aligned != end)) { free_init_pages()
657 begin = begin_aligned; free_init_pages()
661 if (begin >= end) free_init_pages()
671 begin, end - 1); free_init_pages()
672 set_memory_np(begin, (end - begin) >> PAGE_SHIFT); free_init_pages()
679 set_memory_nx(begin, (end - begin) >> PAGE_SHIFT); free_init_pages()
680 set_memory_rw(begin, (end - begin) >> PAGE_SHIFT); free_init_pages()
682 free_reserved_area((void *)begin, (void *)end, POISON_FREE_INITMEM, what); free_init_pages()
/linux-4.4.14/fs/hfsplus/
H A Dbfind.c55 int *begin, hfs_find_1st_rec_by_cnid()
79 if ((*begin) == (*end)) hfs_find_1st_rec_by_cnid()
83 (*begin) = (*cur_rec) + 1; hfs_find_1st_rec_by_cnid()
93 int *begin, hfs_find_rec_by_key()
105 (*begin) = (*cur_rec) + 1; hfs_find_rec_by_key()
53 hfs_find_1st_rec_by_cnid(struct hfs_bnode *bnode, struct hfs_find_data *fd, int *begin, int *end, int *cur_rec) hfs_find_1st_rec_by_cnid() argument
91 hfs_find_rec_by_key(struct hfs_bnode *bnode, struct hfs_find_data *fd, int *begin, int *end, int *cur_rec) hfs_find_rec_by_key() argument
H A Dhfsplus_fs.h432 int *begin, int *end, int *cur_rec);
434 int *begin, int *end, int *cur_rec);
/linux-4.4.14/arch/powerpc/kernel/
H A Dcrash_dump.c90 * @offset: offset in bytes into the page (based on pfn) to begin the copy
126 void crash_free_reserved_phys_range(unsigned long begin, unsigned long end) crash_free_reserved_phys_range() argument
140 for (addr = begin; addr < end; addr += PAGE_SIZE) { crash_free_reserved_phys_range()
H A Dmachine_kexec_64.c51 unsigned long begin, end; /* limits of segment */ default_machine_kexec_prepare() local
76 * end of the blocked region (begin >= high). Use the default_machine_kexec_prepare()
84 begin = image->segment[i].mem; default_machine_kexec_prepare()
85 end = begin + image->segment[i].memsz; default_machine_kexec_prepare()
87 if ((begin < high) && (end > low)) default_machine_kexec_prepare()
103 begin = image->segment[i].mem; default_machine_kexec_prepare()
104 end = begin + image->segment[i].memsz; default_machine_kexec_prepare()
106 if ((begin < high) && (end > low)) default_machine_kexec_prepare()
H A Drtasd.c99 * will be collected together with obvious begin/end.
100 * There will be a unique identifier on the begin and end lines.
120 printk(RTAS_DEBUG "%d -------- %s begin --------\n", printk_log_rtas()
H A Dpci_32.c127 /* For each hose, we begin searching bridges */ pcibios_make_OF_bus_map()
/linux-4.4.14/arch/mips/include/asm/
H A Dbootinfo.h116 unsigned long begin, unsigned long end);
118 extern void (*free_init_pages_eva)(void *begin, void *end);
H A Dswitch_to.h26 * @next: The task to begin executing.
H A Dmaar.h47 /* Addresses begin at bit 16, but are shifted right 4 bits */ write_maar_pair()
H A Dsgiarcs.h176 struct linux_bigint begin; member in struct:linux_finfo
190 LONG exec; /* Load and begin execution of a
/linux-4.4.14/tools/perf/arch/x86/util/
H A Dkvm-stat.c33 /* MMIO read begin event in kernel. */ mmio_event_begin()
37 /* MMIO write begin event in kernel. */ mmio_event_begin()
/linux-4.4.14/drivers/mtd/
H A Dmtdconcat.c482 * All the following erases must begin at the start of the concat_erase()
847 uint64_t begin, position; mtd_concat_create() local
867 begin = position = 0; mtd_concat_create()
876 erase_region_p->offset = begin; mtd_concat_create()
879 tmp64 = position - begin; mtd_concat_create()
882 begin = position; mtd_concat_create()
895 erase_region_p->offset = begin; mtd_concat_create()
898 tmp64 = position - begin; mtd_concat_create()
901 begin = position; mtd_concat_create()
915 erase_region_p->offset = begin; mtd_concat_create()
917 tmp64 = position - begin; mtd_concat_create()
/linux-4.4.14/drivers/md/
H A Ddm-cache-policy-smq.c59 struct entry *begin; member in struct:entry_space
66 es->begin = es->end = NULL; space_init()
70 es->begin = vzalloc(sizeof(struct entry) * nr_entries); space_init()
71 if (!es->begin) space_init()
74 es->end = es->begin + nr_entries; space_init()
80 vfree(es->begin); space_exit()
87 e = es->begin + block; __get_entry()
95 BUG_ON(e < es->begin || e >= es->end); to_index()
96 return e - es->begin; to_index()
672 unsigned begin; member in struct:entry_alloc
679 unsigned begin, unsigned end) init_allocator()
685 ea->begin = begin; init_allocator()
688 for (i = begin; i != end; i++) init_allocator()
724 struct entry *e = __get_entry(ea->es, ea->begin + i); alloc_particular_entry()
752 return to_index(ea->es, e) - ea->begin; get_index()
757 return __get_entry(ea->es, ea->begin + index); get_entry()
678 init_allocator(struct entry_alloc *ea, struct entry_space *es, unsigned begin, unsigned end) init_allocator() argument
H A Ddm-stripe.c264 sector_t begin, end; stripe_map_range() local
267 target_stripe, &begin); stripe_map_range()
270 if (begin < end) { stripe_map_range()
272 bio->bi_iter.bi_sector = begin + stripe_map_range()
274 bio->bi_iter.bi_size = to_bytes(end - begin); stripe_map_range()
H A Ddm-thin-metadata.c1437 dm_block_t begin, dm_block_t end, dm_thin_find_mapped_range()
1445 if (end < begin) dm_thin_find_mapped_range()
1451 while (begin < end) { dm_thin_find_mapped_range()
1452 r = dm_thin_find_block(td, begin, true, &lookup); dm_thin_find_mapped_range()
1459 begin++; dm_thin_find_mapped_range()
1462 if (begin == end) dm_thin_find_mapped_range()
1465 *thin_begin = begin; dm_thin_find_mapped_range()
1469 begin++; dm_thin_find_mapped_range()
1471 while (begin != end) { dm_thin_find_mapped_range()
1472 r = dm_thin_find_block(td, begin, true, &lookup); dm_thin_find_mapped_range()
1485 begin++; dm_thin_find_mapped_range()
1488 *thin_end = begin; dm_thin_find_mapped_range()
1544 static int __remove_range(struct dm_thin_device *td, dm_block_t begin, dm_block_t end) __remove_range() argument
1574 while (begin < end) { __remove_range()
1575 r = dm_btree_lookup_next(&pmd->bl_info, mapping_root, &begin, &begin, &value); __remove_range()
1582 if (begin >= end) __remove_range()
1585 r = dm_btree_remove_leaves(&pmd->bl_info, mapping_root, &begin, end, &mapping_root, &count); __remove_range()
1616 dm_block_t begin, dm_block_t end) dm_thin_remove_range()
1622 r = __remove_range(td, begin, end); dm_thin_remove_range()
1436 dm_thin_find_mapped_range(struct dm_thin_device *td, dm_block_t begin, dm_block_t end, dm_block_t *thin_begin, dm_block_t *thin_end, dm_block_t *pool_begin, bool *maybe_shared) dm_thin_find_mapped_range() argument
1615 dm_thin_remove_range(struct dm_thin_device *td, dm_block_t begin, dm_block_t end) dm_thin_remove_range() argument
H A Ddm-thin-metadata.h154 dm_block_t begin, dm_block_t end,
171 dm_block_t begin, dm_block_t end);
H A Ddm-cache-target.c201 * Defines a range of cblocks, begin to (end - 1) are in the range. end is
205 dm_cblock_t begin; member in struct:cblock_range
513 static void build_key(dm_oblock_t begin, dm_oblock_t end, struct dm_cell_key *key) build_key() argument
517 key->block_begin = from_oblock(begin); build_key()
2110 uint64_t begin = from_cblock(req->cblocks->begin); process_invalidation_request() local
2113 while (begin != end) { process_invalidation_request()
2114 r = policy_remove_cblock(cache->policy, to_cblock(begin)); process_invalidation_request()
2116 r = dm_cache_remove_mapping(cache->cmd, to_cblock(begin)); process_invalidation_request()
2131 begin++; process_invalidation_request()
3628 * ii) A begin and end cblock with dots between, eg. 123-234
3645 result->begin = to_cblock(b); parse_cblock_range()
3658 result->begin = to_cblock(b); parse_cblock_range()
3659 result->end = to_cblock(from_cblock(result->begin) + 1u); parse_cblock_range()
3669 uint64_t b = from_cblock(range->begin); validate_cblock_range()
3674 DMERR("%s: begin cblock out of range: %llu >= %llu", validate_cblock_range()
3736 * Pass begin and end origin blocks to the worker and wake it. process_invalidate_cblocks_message()
3750 * "invalidate_cblocks [(<begin>)|(<begin>-<end>)]*
H A Ddm-table.c494 return !ti->begin; adjoin()
497 return (ti->begin == (prev->begin + prev->len)); adjoin()
661 (unsigned long long) ti->begin, validate_hardware_logical_block_alignment()
731 tgt->begin = start; dm_table_add_target()
755 t->highs[t->num_targets++] = tgt->begin + tgt->len - 1; dm_table_add_target()
1290 (unsigned long long) ti->begin, dm_calculate_queue_limits()
H A Ddm-cache-metadata.c847 dm_cblock_t begin, dm_cblock_t end, blocks_are_unmapped_or_clean()
853 while (begin != end) { blocks_are_unmapped_or_clean()
854 r = block_unmapped_or_clean(cmd, begin, result); blocks_are_unmapped_or_clean()
860 (unsigned long long) from_cblock(begin)); blocks_are_unmapped_or_clean()
864 begin = to_cblock(from_cblock(begin) + 1); blocks_are_unmapped_or_clean()
846 blocks_are_unmapped_or_clean(struct dm_cache_metadata *cmd, dm_cblock_t begin, dm_cblock_t end, bool *result) blocks_are_unmapped_or_clean() argument
/linux-4.4.14/drivers/hwmon/
H A Dapplesmc.c377 int begin = 0, end = smcreg.key_count; applesmc_get_lower_bound() local
380 while (begin != end) { applesmc_get_lower_bound()
381 int middle = begin + (end - begin) / 2; applesmc_get_lower_bound()
388 begin = middle + 1; applesmc_get_lower_bound()
393 *lo = begin; applesmc_get_lower_bound()
399 int begin = 0, end = smcreg.key_count; applesmc_get_upper_bound() local
402 while (begin != end) { applesmc_get_upper_bound()
403 int middle = begin + (end - begin) / 2; applesmc_get_upper_bound()
412 begin = middle + 1; applesmc_get_upper_bound()
415 *hi = begin; applesmc_get_upper_bound()
421 int begin, end; applesmc_get_entry_by_key() local
424 ret = applesmc_get_lower_bound(&begin, key); applesmc_get_entry_by_key()
430 if (end - begin != 1) applesmc_get_entry_by_key()
433 return applesmc_get_entry_by_index(begin); applesmc_get_entry_by_key()
/linux-4.4.14/drivers/crypto/caam/
H A Dpdb.h201 /* begin DECO writeback region */
213 /* begin DECO writeback region */
235 /* begin DECO writeback region */
246 /* begin DECO writeback region */
/linux-4.4.14/arch/x86/include/asm/
H A Dmach_timer.h30 * load 5 * LATCH count, (LSB and MSB) to begin countdown. mach_prepare_counter()
/linux-4.4.14/arch/xtensa/kernel/
H A Dmxhead.S30 .begin no-absolute-literals
H A Dhead.S52 .begin no-absolute-literals
/linux-4.4.14/arch/mips/kernel/
H A Dcrash_dump.c15 * @offset: offset in bytes into the page (based on pfn) to begin the copy
/linux-4.4.14/arch/sh/kernel/
H A Dcrash_dump.c18 * @offset: offset in bytes into the page (based on pfn) to begin the copy
/linux-4.4.14/arch/ia64/kernel/
H A Dcrash_dump.c22 * @offset: offset in bytes into the page (based on pfn) to begin the copy
H A Dpalinfo.c152 int i, begin, skip = 0; bitregister_process() local
155 value >>= i = begin = ffs(value) - 1; bitregister_process()
162 if (begin <= i - 2) bitregister_process()
163 seq_printf(m, "%d-%d ", begin, i-1); bitregister_process()
167 begin = -1; bitregister_process()
170 begin = i; bitregister_process()
174 if (begin > -1) { bitregister_process()
175 if (begin < 127) bitregister_process()
176 seq_printf(m, "%d-127", begin); bitregister_process()
H A Drelocate_kernel.S58 //physical mode code begin
/linux-4.4.14/arch/avr32/lib/
H A Dmemcpy.S16 * word-aligned to begin with.
/linux-4.4.14/tools/perf/scripts/perl/
H A Dcheck-perf-trace.pl6 # strings, common_xxx() calls back into perf, begin, end, unhandled
/linux-4.4.14/tools/perf/scripts/python/
H A Dcheck-perf-trace.py6 # strings, common_xxx() calls back into perf, begin, end, unhandled
/linux-4.4.14/drivers/media/i2c/
H A Dvpx3220.c189 0x8b, 000, /* Horizontal begin */
201 0x88, 23, /* Window 1 vertical begin */
206 0x8b, 16, /* Horizontal begin */
209 * Must be >= Horizontal begin + Horizontal length */
218 0x88, 23, /* Window 1 vertical begin */
223 0x8b, 16, /* Horizontal begin */
226 * Must be >= Horizontal begin + Horizontal length */
H A Dadv7183_regs.h97 #define ADV7183_NTSC_V_BEGIN 0xE5 /* NTSC V bit begin */
100 #define ADV7183_PAL_V_BEGIN 0xE8 /* PAL V bit begin */
/linux-4.4.14/mm/
H A Dlist_lru.c297 int begin, int end) __memcg_destroy_list_lru_node()
301 for (i = begin; i < end; i++) __memcg_destroy_list_lru_node()
306 int begin, int end) __memcg_init_list_lru_node()
310 for (i = begin; i < end; i++) { __memcg_init_list_lru_node()
322 __memcg_destroy_list_lru_node(memcg_lrus, begin, i - 1); __memcg_init_list_lru_node()
296 __memcg_destroy_list_lru_node(struct list_lru_memcg *memcg_lrus, int begin, int end) __memcg_destroy_list_lru_node() argument
305 __memcg_init_list_lru_node(struct list_lru_memcg *memcg_lrus, int begin, int end) __memcg_init_list_lru_node() argument
/linux-4.4.14/net/switchdev/
H A Dswitchdev.c637 u16 begin; member in struct:switchdev_vlan_dump
647 if (dump->begin == 0 && dump->end == 0) { switchdev_port_vlan_dump_put()
649 } else if (dump->begin == dump->end) { switchdev_port_vlan_dump_put()
650 vinfo.vid = dump->begin; switchdev_port_vlan_dump_put()
655 vinfo.vid = dump->begin; switchdev_port_vlan_dump_put()
683 for (dump->begin = dump->end = vlan->vid_begin; switchdev_port_vlan_dump_cb()
684 dump->begin <= vlan->vid_end; switchdev_port_vlan_dump_cb()
685 dump->begin++, dump->end++) { switchdev_port_vlan_dump_cb()
691 if (dump->begin > vlan->vid_begin && switchdev_port_vlan_dump_cb()
692 dump->begin >= vlan->vid_end) { switchdev_port_vlan_dump_cb()
693 if ((dump->begin - 1) == vlan->vid_end && switchdev_port_vlan_dump_cb()
696 dump->begin = vlan->vid_begin; switchdev_port_vlan_dump_cb()
700 dump->begin = vlan->vid_begin; switchdev_port_vlan_dump_cb()
712 dump->begin = vlan->vid_begin; switchdev_port_vlan_dump_cb()
/linux-4.4.14/kernel/
H A Dtracepoint.c389 static void tp_module_going_check_quiescent(struct tracepoint * const *begin, tp_module_going_check_quiescent() argument
394 if (!begin) tp_module_going_check_quiescent()
396 for (iter = begin; iter < end; iter++) tp_module_going_check_quiescent()
501 static void for_each_tracepoint_range(struct tracepoint * const *begin, for_each_tracepoint_range() argument
508 if (!begin) for_each_tracepoint_range()
510 for (iter = begin; iter < end; iter++) for_each_tracepoint_range()
/linux-4.4.14/arch/arc/kernel/
H A Dprocess.c99 /* Mark the specific anchors to begin with (see pic above) */ copy_thread()
169 * [L] ZOL loop inhibited to begin with - cleared by a LP insn start_thread()
/linux-4.4.14/drivers/net/wireless/ath/wil6210/
H A Dethtool.c101 .begin = wil_ethtoolops_begin,
/linux-4.4.14/kernel/power/
H A Dsuspend.c212 if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->begin) platform_suspend_begin()
213 return freeze_ops->begin(); platform_suspend_begin()
214 else if (suspend_ops->begin) platform_suspend_begin()
215 return suspend_ops->begin(state); platform_suspend_begin()
/linux-4.4.14/arch/s390/kernel/vdso32/
H A Dvdso32.lds.S65 * beginning of the section so we begin them at 0.
/linux-4.4.14/arch/s390/kernel/vdso64/
H A Dvdso64.lds.S65 * beginning of the section so we begin them at 0.
/linux-4.4.14/arch/mips/cavium-octeon/executive/
H A Dcvmx-helper-util.c175 * Packets will begin slowly dropping when there are less than
187 /* Set RED to begin dropping packets when there are pass_thresh buffers cvmx_helper_setup_red_queue()
207 * Setup Random Early Drop to automatically begin dropping packets.
210 * Packets will begin slowly dropping when there are less than
/linux-4.4.14/arch/mips/include/asm/octeon/
H A Dcvmx-helper-util.h60 * Packets will begin slowly dropping when there are less than
71 * Setup Random Early Drop to automatically begin dropping packets.
74 * Packets will begin slowly dropping when there are less than
/linux-4.4.14/drivers/firmware/efi/
H A Defi-pstore.c156 * @pos: entry to begin iterating from
161 * It is possible to begin iteration from an arbitrary entry within
164 * To begin iterating from the beginning of the list @pos must be %NULL.
/linux-4.4.14/drivers/input/
H A Dinput-mt.c299 static int adjust_dual(int *begin, int step, int *end, int eq, int mu) adjust_dual() argument
303 if (begin == end) adjust_dual()
306 f = *begin; adjust_dual()
307 p = begin + step; adjust_dual()
323 for (p = begin; p != end; p += step) adjust_dual()
/linux-4.4.14/drivers/pci/
H A Dsearch.c148 * pci_find_next_bus - begin or continue searching for a PCI bus
245 * pci_get_dev_by_id - begin or continue searching for a PCI device by id
279 * pci_get_subsys - begin or continue searching for a PCI device by vendor/subvendor/device/subdevice id
310 * pci_get_device - begin or continue searching for a PCI device by vendor/device id
331 * pci_get_class - begin or continue searching for a PCI device by class
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/
H A Daicasm.c69 u_int begin; member in struct:patch
420 " uint32_t begin :10,\n" output_code()
431 cur_patch->patch_func, cur_patch->begin, output_code()
439 " uint16_t begin;\n" output_code()
509 new_patch->begin = scope->begin_addr; emit_patch()
512 new_patch->begin = scope->end_addr; emit_patch()
656 while (cur_patch != NULL && start_instr == cur_patch->begin) { check_patch()
/linux-4.4.14/drivers/net/can/usb/
H A Dusb_8dev.c156 u8 begin; member in struct:usb_8dev_tx_msg
166 u8 begin; member in struct:usb_8dev_rx_msg
178 u8 begin; member in struct:usb_8dev_cmd_msg
217 out->begin = USB_8DEV_CMD_START; usb_8dev_send_cmd()
242 if (in->begin != USB_8DEV_CMD_START || in->end != USB_8DEV_CMD_END || usb_8dev_send_cmd()
641 msg->begin = USB_8DEV_DATA_START; usb_8dev_start_xmit()
/linux-4.4.14/net/ipv4/
H A Dinet_hashtables.c220 begin: __inet_lookup_listener()
247 goto begin; __inet_lookup_listener()
254 goto begin; __inet_lookup_listener()
301 begin: __inet_lookup_established()
312 goto begin; __inet_lookup_established()
323 goto begin; __inet_lookup_established()
/linux-4.4.14/sound/usb/6fire/
H A Dfirmware.c92 /* find begin of record (marked by a colon) */ usb6fire_fw_ihex_next_record()
241 "unable to upload ezusb firmware %s: begin message.\n", usb6fire_fw_ezusb_upload()
313 "unable to upload fpga firmware: begin urb.\n"); usb6fire_fw_fpga_upload()
/linux-4.4.14/drivers/isdn/hardware/eicon/
H A Dsdp_hdr.h29 The soft DSP image is described by binary header contained on begin of this
H A Ds_pri.c41 Does return offset between ADAPTER->ram and real begin of memory
/linux-4.4.14/drivers/gpu/host1x/
H A Dcdma.h37 * begin
/linux-4.4.14/drivers/media/pci/cx23885/
H A Dcx23885-f300.c102 f300_set_line(dev, F300_RESET, 0);/* begin to send data */ f300_xfer()
/linux-4.4.14/drivers/acpi/acpica/
H A Dexdebug.c414 * begin - TRUE if before execution
426 u8 begin, u8 *aml, char *pathname) acpi_ex_trace_point()
435 begin ? "Begin" : "End", aml, pathname)); acpi_ex_trace_point()
440 begin ? "Begin" : "End", aml)); acpi_ex_trace_point()
425 acpi_ex_trace_point(acpi_trace_event_type type, u8 begin, u8 *aml, char *pathname) acpi_ex_trace_point() argument
H A Dutdebug.c569 * begin - TRUE if before execution
581 acpi_trace_point(acpi_trace_event_type type, u8 begin, u8 *aml, char *pathname) acpi_trace_point() argument
586 acpi_ex_trace_point(type, begin, aml, pathname); acpi_trace_point()
589 acpi_os_trace_point(type, begin, aml, pathname); acpi_trace_point()
H A Dnssearch.c67 * parent_node - Starting node where search will begin
178 * node - Starting node where search will begin
267 * node - Starting node where search will begin
H A Devsci.c206 * installed to begin with
H A Dexoparg3.c56 * The routines that begin execution of AML opcodes are named with a common
H A Dexoparg6.c56 * The routines that begin execution of AML opcodes are named with a common
H A Dpsscope.c140 * DESCRIPTION: Push current op to begin parsing its argument
/linux-4.4.14/include/uapi/scsi/
H A Dscsi_netlink.h84 * Note: The Vendor Unique message payload will begin directly after
/linux-4.4.14/include/acpi/
H A Dacpi_drivers.h49 * Linux specific HIDs do not apply to this and begin with LNX:
H A Dacpiosxf.h437 u8 begin, u8 *aml, char *pathname);
/linux-4.4.14/arch/powerpc/kernel/vdso32/
H A Dvdso32.lds.S84 * of the section so we begin them at 0.
/linux-4.4.14/arch/powerpc/kernel/vdso64/
H A Dvdso64.lds.S83 * of the section so we begin them at 0.
/linux-4.4.14/arch/powerpc/oprofile/cell/
H A Dpr_util.h54 * ovly.buf values begin at '1' to reference the first (or 0th)
H A Dvma_map.c255 * ovly.buf values begin at '1' to reference the first (or 0th) create_vma_map()
/linux-4.4.14/drivers/i2c/busses/
H A Di2c-tiny-usb.c49 /* ----- begin of i2c layer ---------------------------------------------- */
155 /* ----- begin of usb layer ---------------------------------------------- */
/linux-4.4.14/drivers/base/
H A Ddriver.c37 * @start: Device to begin with
65 * @start: Device to begin with
/linux-4.4.14/net/ipv4/netfilter/
H A Dnf_nat_snmp_basic.c139 unsigned char *begin; /* First octet */ member in struct:asn1_ctx
156 ctx->begin = buf; asn1_open()
621 static inline void mangle_address(unsigned char *begin,
894 * - begin points to the start of the snmp messgae
897 static inline void mangle_address(unsigned char *begin, mangle_address() argument
913 &map->from, &map->to, addr - begin); mangle_address()
954 mangle_address(ctx->begin, ctx->pointer - 4, map, check); snmp_trap_decode()
1159 mangle_address(ctx.begin, ctx.pointer - 4, map, check); snmp_parse_mangle()
/linux-4.4.14/drivers/net/ethernet/hisilicon/hns/
H A Dhnae.h262 /* the distance between [begin, end) in a ring buffer
263 * note: there is a unuse slot between the begin and the end
265 static inline int ring_dist(struct hnae_ring *ring, int begin, int end) ring_dist() argument
267 assert_is_ring_idx(ring, begin); ring_dist()
270 return (end - begin + ring->desc_num) % ring->desc_num; ring_dist()
/linux-4.4.14/drivers/acpi/
H A 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/net/wireless/b43/
H A Dlo.c589 int begin, end; lo_probe_possible_loctls() local
605 begin = 1; lo_probe_possible_loctls()
608 begin = d->current_state - 1; lo_probe_possible_loctls()
611 begin = d->current_state - 2; lo_probe_possible_loctls()
614 if (begin < 1) lo_probe_possible_loctls()
615 begin += 8; lo_probe_possible_loctls()
620 i = begin; lo_probe_possible_loctls()
/linux-4.4.14/net/sched/
H A Dsch_fq_codel.c247 begin: fq_codel_dequeue()
259 goto begin; fq_codel_dequeue()
278 goto begin; fq_codel_dequeue()
H A Dsch_fq.c441 begin: fq_dequeue()
459 goto begin; fq_dequeue()
467 goto begin; fq_dequeue()
480 goto begin; fq_dequeue()
H A Dsch_hhf.c433 begin: hhf_dequeue()
448 goto begin; hhf_dequeue()
463 goto begin; hhf_dequeue()
/linux-4.4.14/scripts/
H A Danalyze_suspend.py1125 # general trace events have two types, begin and end
1126 if(re.match('(?P<name>.*) begin$', t.name)):
1200 {'begin': t.time, 'end': t.time})
1227 begin = event['begin']
1230 if(begin < test.data.start):
1231 test.data.setStart(begin)
1235 test.data.newActionGlobal(name, begin, end)
1368 # suspend_resume trace events have two types, begin and end
1369 if(re.match('(?P<name>.*) begin$', t.name)):
1461 {'begin': t.time, 'end': t.time})
1469 'begin': data.dmesg[phase]['start'],
1518 begin = event['begin']
1521 if(begin < test.data.start):
1522 test.data.setStart(begin)
1526 test.data.newActionGlobal(name, begin, end)
1866 actions[a].append({'begin': ktime, 'end': ktime})
1882 actions[cpu].append({'begin': cpu_start, 'end': ktime})
1890 actions[cpu].append({'begin': cpu_start, 'end': ktime})
1915 begin = event['begin']
1918 if(begin < data.start):
1919 data.setStart(begin)
1923 data.newActionGlobal(name, begin, end)
1977 # t0: start time (suspend begin)
/linux-4.4.14/drivers/staging/rts5208/
H A Drtsx.h114 struct completion notify; /* thread begin/end */
/linux-4.4.14/drivers/scsi/lpfc/
H A Dlpfc_nl.h49 * All net link event payloads will begin with and event type
/linux-4.4.14/drivers/scsi/dpt/
H A Ddpti_ioctl.h4 begin : Thu Sep 7 2000
H A Dosd_util.h258 * will #define DPT_PORTABLE to begin *
/linux-4.4.14/drivers/gpu/host1x/hw/
H A Dchannel_hw.c122 /* begin a CDMA submit */ channel_submit()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dnv30.c150 /* begin RAM config */ nv30_gr_init()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/
H A Dauxg94.c54 AUX_ERR(&aux->base, "begin idle timeout %08x", ctrl); g94_i2c_aux_init()
H A Dauxgm204.c54 AUX_ERR(&aux->base, "begin idle timeout %08x", ctrl); gm204_i2c_aux_init()
/linux-4.4.14/drivers/gpu/drm/radeon/
H A Ddrm_buffer.c91 * Copy the user data to the begin of the buffer and reset the processing
H A Ddrm_buffer.h86 * Copy the user data to the begin of the buffer and reset the processing
/linux-4.4.14/drivers/parisc/
H A Diommu-helpers.h154 * it must end on one page and begin on another, or iommu_coalesce_chunks()
/linux-4.4.14/drivers/net/wireless/ath/ath10k/
H A Dbmi.h37 * from mailbox0. BMI requests all begin with a command
/linux-4.4.14/drivers/ata/
H A Dpata_marvell.c60 * marvell_pre_reset - probe begin
H A Dpata_ns87410.c32 * ns87410_pre_reset - probe begin
H A Dpata_opti.c46 * opti_pre_reset - probe begin
H A Dpata_sl82c105.c44 * sl82c105_pre_reset - probe begin
150 * sl82c105_bmdma_start - DMA engine begin
H A Dpata_it8213.c24 * it8213_pre_reset - probe begin
H A Dpata_oldpiix.c30 * oldpiix_pre_reset - probe begin
H A Dpata_triflex.c48 * triflex_prereset - probe begin
/linux-4.4.14/arch/xtensa/boot/boot-redboot/
H A Dbootstrap.S44 .begin literal_prefix .text
/linux-4.4.14/net/dccp/
H A Dackvec.h60 * @av_buf_head: head index; begin of live portion in @av_buf
/linux-4.4.14/net/dccp/ccids/lib/
H A Dloss_interval.c122 /* Determine if `new_loss' does begin a new loss interval [RFC 4342, 10.2] */ tfrc_lh_is_new_loss()
/linux-4.4.14/kernel/irq/
H A Dautoprobe.c25 * probe_irq_on - begin an interrupt autodetect
/linux-4.4.14/fs/ntfs/
H A Dattrib.h37 * @attr: attribute record in @mrec where to begin/continue search
/linux-4.4.14/fs/reiserfs/
H A Dresize.c173 * begin transaction, if there was an error, it's fine. Yes, we have reiserfs_resize()
H A Dlbalance.c244 * begin of the body of the first item of the DEST; part defined leaf_copy_boundary_item()
474 * of SOURCE to the begin of the DEST part defined by leaf_item_bottle()
588 * begin of the DEST leaf_copy_items()
601 * items of SOURCE to begin of DEST leaf_copy_items()
608 * 'pos+1' of the SOURCE to the begin of the DEST; leaf_copy_items()
615 * the begin of the DEST leaf_copy_items()
/linux-4.4.14/include/scsi/
H A Dscsi_transport.h66 * begin counting again
/linux-4.4.14/arch/mips/include/asm/mach-cavium-octeon/
H A Dkernel-entry-init.h99 # to begin
/linux-4.4.14/arch/m68k/include/asm/
H A Dmac_iop.h72 * too lazy to decode the A0 bit. This structure is assumed to begin at
/linux-4.4.14/arch/mips/alchemy/devboards/
H A Dpm.c110 .begin = db1x_pm_begin,
/linux-4.4.14/tools/power/acpi/os_specific/service_layers/
H A Doslibcfs.c190 * from - From begin/end of file
/linux-4.4.14/drivers/net/ethernet/dec/tulip/
H A Dpnic2.c157 /* all set up so now force the negotiation to begin */ pnic2_start_nway()
199 * then begin to interpret the results of the negotiation. pnic2_lnk_change()
/linux-4.4.14/arch/powerpc/include/asm/
H A Dpmac_pfunc.h39 * Interpreting a given function always start with a begin() call which
57 void * (*begin)(struct pmf_function *func, struct pmf_args *args); member in struct:pmf_handlers
/linux-4.4.14/drivers/gpio/
H A Dgpio-viperboard.c85 /* ----- begin of gipo a chip -------------------------------------------- */
262 /* ----- begin of gipo b chip -------------------------------------------- */
/linux-4.4.14/arch/tile/mm/
H A Dinit.c918 static void free_init_pages(char *what, unsigned long begin, unsigned long end) free_init_pages() argument
920 unsigned long addr = (unsigned long) begin; free_init_pages()
927 local_flush_tlb_pages(NULL, begin, PAGE_SIZE, end - begin); free_init_pages()
928 for (addr = begin; addr < end; addr += PAGE_SIZE) { free_init_pages()
956 pr_info("Freeing %s: %ldk freed\n", what, (end - begin) >> 10); free_init_pages()
/linux-4.4.14/sound/isa/gus/
H A Dgus_pcm.c114 unsigned int curr, begin, end; snd_gf1_pcm_trigger_up() local
137 begin = pcmp->memory + voice * (pcmp->dma_size / runtime->channels); snd_gf1_pcm_trigger_up()
138 curr = begin + (pcmp->bpos * pcmp->block_size) / runtime->channels; snd_gf1_pcm_trigger_up()
142 snd_printk(KERN_DEBUG "init: curr=0x%x, begin=0x%x, end=0x%x, " snd_gf1_pcm_trigger_up()
144 curr, begin, end, voice_ctrl, ramp_ctrl, rate); snd_gf1_pcm_trigger_up()
152 snd_gf1_write_addr(gus, SNDRV_GF1_VA_START, begin << 4, voice_ctrl & 4); snd_gf1_pcm_trigger_up()
/linux-4.4.14/drivers/staging/comedi/drivers/
H A Dadv_pci_dio.c96 #define PCI1739_DIO 0 /* R/W: begin of 8255 registers block */
108 #define PCI1751_DIO 0 /* R/W: begin of 8255 registers block */
109 #define PCI1751_CNT 24 /* R/W: begin of 8254 registers block */
112 #define PCI1753_DIO 0 /* R/W: begin of 8255 registers block */
117 #define PCI1753E_DIO 32 /* R/W: begin of 8255 registers block */
/linux-4.4.14/fs/ocfs2/dlm/
H A Ddlmdebug.c349 /* begin - utils funcs */ dlm_debug_free()
384 /* begin - purge list funcs */ debug_purgelist_print()
440 /* begin - debug mle funcs */ debug_mle_print()
498 /* begin - debug lockres funcs */ dump_lock()
696 /* begin - debug state funcs */ debug_state_print()
/linux-4.4.14/drivers/block/
H A Dvirtio_blk.c451 char *begin = buf + strlen(prefix); virtblk_name_format() local
460 if (p == begin) virtblk_name_format()
466 memmove(begin, p, end - p); virtblk_name_format()
/linux-4.4.14/Documentation/cdrom/
H A 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}
866 \begin{description}
955 \begin{enumerate}
/linux-4.4.14/drivers/infiniband/ulp/ipoib/
H A Dipoib_cm.c894 unsigned long begin; ipoib_cm_dev_stop() local
916 begin = jiffies; ipoib_cm_dev_stop()
921 if (time_after(jiffies, begin + 5 * HZ)) { ipoib_cm_dev_stop()
1171 unsigned long begin; ipoib_cm_tx_destroy() local
1181 begin = jiffies; ipoib_cm_tx_destroy()
1183 if (time_after(jiffies, begin + 5 * HZ)) { ipoib_cm_tx_destroy()
/linux-4.4.14/drivers/scsi/
H A D53c700.h100 * 17 begin SYNC negotiation flag
413 /* Parameters to begin SDTR negotiations. Empirically, I find that
/linux-4.4.14/drivers/net/ethernet/atheros/atlx/
H A Datl2.h143 #define REG_TX_CUT_THRESH 0x1590 /* TxMac begin transmit packet
183 #define ISR_TX_EARLY 0x40000 /* interrupt when txmac begin transmit one
/linux-4.4.14/arch/alpha/kernel/
H A Dsmp.c116 * Where secondaries begin a life of C.
288 * Convince the console to have a secondary cpu begin execution.
/linux-4.4.14/fs/cifs/
H A Dasn1.c96 unsigned char *begin; /* First octet */ member in struct:asn1_ctx
111 ctx->begin = buf; asn1_open()
/linux-4.4.14/include/linux/input/
H A Dadxl34x.h82 * tap can begin. The scale factor is 1.25 ms/LSB. A zero value will
229 * detection will begin and prevent the detection of activity. This
/linux-4.4.14/drivers/usb/storage/
H A Dusb.h150 struct completion notify; /* thread begin/end */
/linux-4.4.14/drivers/usb/usbip/
H A Dvhci_sysfs.c204 /* begin a lock */ store_attach()
/linux-4.4.14/drivers/staging/rtl8192u/
H A Dr819xU_firmware.c113 * Switch to CPU register in the begin and switch back before return
/linux-4.4.14/drivers/staging/wlan-ng/
H A Dp80211wep.c144 if successful, buf start is payload begin, length -= 8;
/linux-4.4.14/drivers/uio/
H A Duio_dmem_genirq.c199 priv->flags = 0; /* interrupt is enabled to begin with */ uio_dmem_genirq_probe()
H A Duio_pdrv_genirq.c145 priv->flags = 0; /* interrupt is enabled to begin with */ uio_pdrv_genirq_probe()
/linux-4.4.14/drivers/s390/net/
H A Dctcm_fsms.h305 ctc_mpc_alloc_channel flow will begin.
H A Dctcm_main.h173 /* MPC ONLY section begin */
/linux-4.4.14/drivers/media/i2c/smiapp/
H A Dsmiapp-regs.c44 /* Valid cases begin here */ float_to_u32_mul_1000000()
/linux-4.4.14/drivers/media/usb/gspca/
H A Dtv8532.c182 /* begin active line */ tv_8532_setReg()
/linux-4.4.14/drivers/pci/hotplug/
H A Dcpqphp_core.c92 * @begin: begin pointer for region to be scanned.
97 static void __iomem *detect_SMBIOS_pointer(void __iomem *begin, void __iomem *end) detect_SMBIOS_pointer() argument
106 for (fp = begin; fp <= endp; fp += 16) { detect_SMBIOS_pointer()
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/
H A Dbmi.h35 * from mailbox0. BMI requests all begin with a command
/linux-4.4.14/drivers/gpu/drm/gma500/
H A Dpower.c242 * gma_power_begin - begin requiring power
/linux-4.4.14/arch/um/kernel/
H A Dum_arch.c307 * Zones have to begin on a 1 << MAX_ORDER page boundary, linux_main()
/linux-4.4.14/crypto/asymmetric_keys/
H A Drsa.c129 /* Make sure the string is the right length. The number should begin RSA_I2OSP()
/linux-4.4.14/drivers/char/
H A Dsnsc_event.c263 * Sets up a system controller subchannel to begin receiving event
/linux-4.4.14/fs/fscache/
H A Dobject.c508 /* Allow write requests to begin stacking up and read requests to begin fscache_object_lookup_negative()
547 /* Allow write requests to begin stacking up and read requests fscache_obtained_object()
548 * to begin shovelling data. fscache_obtained_object()
/linux-4.4.14/fs/9p/
H A Dvfs_addr.c234 * @pos: offset in file to begin the operation
/linux-4.4.14/fs/ecryptfs/
H A Dread_write.c91 * @offset: Offset in the eCryptfs file at which to begin writing the
/linux-4.4.14/include/xen/interface/
H A Delfnote.h143 * The lowest address the hypervisor hole can begin at (numeric).
/linux-4.4.14/include/sound/
H A Dinfo.h31 char *buffer; /* pointer to begin of buffer */
/linux-4.4.14/include/uapi/linux/
H A Djffs2.h155 jint32_t offset; /* Where to begin to write. */
/linux-4.4.14/arch/powerpc/platforms/52xx/
H A Dlite5200_pm.c238 .begin = lite5200_pm_begin,
/linux-4.4.14/arch/powerpc/platforms/83xx/
H A Dsuspend.c319 .begin = mpc83xx_suspend_begin,
/linux-4.4.14/arch/powerpc/platforms/pseries/
H A Dsuspend.c227 .begin = pseries_suspend_begin,
/linux-4.4.14/arch/arm/mach-omap2/
H A Dpm.c241 .begin = omap_pm_begin,

Completed in 4818 milliseconds

1234