Searched refs:incr (Results 1 - 82 of 82) sorted by relevance

/linux-4.1.27/mm/
H A Dmemtest.c46 const size_t incr = sizeof(pattern); memtest() local
48 start_phys_aligned = ALIGN(start_phys, incr); memtest()
50 end = start + (size - (start_phys_aligned - start_phys)) / incr; memtest()
57 for (p = start; p < end; p++, start_phys_aligned += incr) { memtest()
60 if (start_phys_aligned == last_bad + incr) { memtest()
61 last_bad += incr; memtest()
65 reserve_bad_mem(pattern, start_bad, last_bad + incr); memtest()
69 reserve_bad_mem(pattern, start_bad, last_bad + incr); memtest()
/linux-4.1.27/arch/xtensa/include/asm/
H A Dasmmacro.h38 * __endla ar, at, incr
48 .macro __loopi ar, at, size, incr
51 movi \at, ((\size + \incr - 1) / (\incr))
147 .macro __endla ar, as, incr
148 addi \ar, \ar, \incr
H A Dregs.h111 #define DEBUGCAUSE_ICOUNT_BIT 0 /* ICOUNT would incr. to zero */
/linux-4.1.27/drivers/video/fbdev/
H A Ddnfb.c151 int incr, y_delta, pre_read = 0, x_end, x_word_count; dnfb_copyarea() local
156 incr = (area->dy <= area->sy) ? 1 : -1; dnfb_copyarea()
162 if (incr > 0) { dnfb_copyarea()
191 src += incr; dnfb_copyarea()
197 src += incr; dnfb_copyarea()
198 dest += incr; dnfb_copyarea()
203 src += incr; dnfb_copyarea()
204 dest += incr; dnfb_copyarea()
209 dest += incr; dnfb_copyarea()
210 src += incr; dnfb_copyarea()
214 dest += incr; dnfb_copyarea()
215 src += incr; dnfb_copyarea()
/linux-4.1.27/drivers/s390/char/
H A Dsclp_cmd.c304 struct memory_increment *incr; sclp_mem_change_state() local
308 list_for_each_entry(incr, &sclp_mem_list, list) { sclp_mem_change_state()
309 istart = rn2addr(incr->rn); sclp_mem_change_state()
315 rc |= sclp_assign_storage(incr->rn); sclp_mem_change_state()
317 sclp_unassign_storage(incr->rn); sclp_mem_change_state()
319 incr->standby = online ? 0 : 1; sclp_mem_change_state()
326 struct memory_increment *incr; contains_standby_increment() local
329 list_for_each_entry(incr, &sclp_mem_list, list) { contains_standby_increment()
330 istart = rn2addr(incr->rn); contains_standby_increment()
335 if (incr->standby) contains_standby_increment()
437 struct memory_increment *incr; sclp_add_standby_memory() local
439 list_for_each_entry(incr, &sclp_mem_list, list) sclp_add_standby_memory()
440 if (incr->standby) sclp_add_standby_memory()
441 add_memory_merged(incr->rn); sclp_add_standby_memory()
447 struct memory_increment *incr, *new_incr; insert_increment() local
458 list_for_each_entry(incr, &sclp_mem_list, list) { insert_increment()
459 if (assigned && incr->rn > rn) insert_increment()
461 if (!assigned && incr->rn - last_rn > 1) insert_increment()
463 last_rn = incr->rn; insert_increment()
464 prev = &incr->list; insert_increment()
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Dradeon_trace.h84 uint32_t incr, uint32_t flags),
85 TP_ARGS(pe, addr, count, incr, flags),
90 __field(u32, incr)
98 __entry->incr = incr;
101 TP_printk("pe=%010Lx, addr=%010Lx, incr=%u, flags=%08x, count=%u",
102 __entry->pe, __entry->addr, __entry->incr,
H A Dsi_dma.c100 * @incr: increase next addr by incr bytes
109 uint32_t incr, uint32_t flags) si_dma_vm_write_pages()
131 addr += incr; si_dma_vm_write_pages()
147 * @incr: increase next addr by incr bytes
156 uint32_t incr, uint32_t flags) si_dma_vm_set_pages()
179 ib->ptr[ib->length_dw++] = incr; /* increment size */ si_dma_vm_set_pages()
182 addr += (ndw / 2) * incr; si_dma_vm_set_pages()
105 si_dma_vm_write_pages(struct radeon_device *rdev, struct radeon_ib *ib, uint64_t pe, uint64_t addr, unsigned count, uint32_t incr, uint32_t flags) si_dma_vm_write_pages() argument
152 si_dma_vm_set_pages(struct radeon_device *rdev, struct radeon_ib *ib, uint64_t pe, uint64_t addr, unsigned count, uint32_t incr, uint32_t flags) si_dma_vm_set_pages() argument
H A Dni_dma.c348 * @incr: increase next addr by incr bytes
357 uint32_t incr, uint32_t flags) cayman_dma_vm_write_pages()
380 addr += incr; cayman_dma_vm_write_pages()
396 * @incr: increase next addr by incr bytes
405 uint32_t incr, uint32_t flags) cayman_dma_vm_set_pages()
428 ib->ptr[ib->length_dw++] = incr; /* increment size */ cayman_dma_vm_set_pages()
432 addr += (ndw / 2) * incr; cayman_dma_vm_set_pages()
353 cayman_dma_vm_write_pages(struct radeon_device *rdev, struct radeon_ib *ib, uint64_t pe, uint64_t addr, unsigned count, uint32_t incr, uint32_t flags) cayman_dma_vm_write_pages() argument
401 cayman_dma_vm_set_pages(struct radeon_device *rdev, struct radeon_ib *ib, uint64_t pe, uint64_t addr, unsigned count, uint32_t incr, uint32_t flags) cayman_dma_vm_set_pages() argument
H A Dradeon_vm.c354 * @incr: increase next addr by incr bytes
364 uint32_t incr, uint32_t flags) radeon_vm_set_pages()
366 trace_radeon_vm_set_page(pe, addr, count, incr, flags); radeon_vm_set_pages()
374 count, incr, flags); radeon_vm_set_pages()
378 count, incr, flags); radeon_vm_set_pages()
647 uint32_t incr = RADEON_VM_PTE_COUNT * 8; radeon_vm_update_page_directory() local
683 ((last_pt + incr * count) != pt)) { radeon_vm_update_page_directory()
687 last_pt, count, incr, radeon_vm_update_page_directory()
701 incr, R600_PTE_VALID); radeon_vm_update_page_directory()
360 radeon_vm_set_pages(struct radeon_device *rdev, struct radeon_ib *ib, uint64_t pe, uint64_t addr, unsigned count, uint32_t incr, uint32_t flags) radeon_vm_set_pages() argument
H A Dcik_sdma.c831 * @incr: increase next addr by incr bytes
840 uint32_t incr, uint32_t flags) cik_sdma_vm_write_pages()
864 addr += incr; cik_sdma_vm_write_pages()
880 * @incr: increase next addr by incr bytes
889 uint32_t incr, uint32_t flags) cik_sdma_vm_set_pages()
912 ib->ptr[ib->length_dw++] = incr; /* increment size */ cik_sdma_vm_set_pages()
917 addr += ndw * incr; cik_sdma_vm_set_pages()
836 cik_sdma_vm_write_pages(struct radeon_device *rdev, struct radeon_ib *ib, uint64_t pe, uint64_t addr, unsigned count, uint32_t incr, uint32_t flags) cik_sdma_vm_write_pages() argument
885 cik_sdma_vm_set_pages(struct radeon_device *rdev, struct radeon_ib *ib, uint64_t pe, uint64_t addr, unsigned count, uint32_t incr, uint32_t flags) cik_sdma_vm_set_pages() argument
H A Dradeon_asic.h631 uint32_t incr, uint32_t flags);
636 uint32_t incr, uint32_t flags);
736 uint32_t incr, uint32_t flags);
741 uint32_t incr, uint32_t flags);
837 uint32_t incr, uint32_t flags);
842 uint32_t incr, uint32_t flags);
H A Dradeon.h1883 uint32_t incr, uint32_t flags);
1888 uint32_t incr, uint32_t flags);
2886 #define radeon_asic_vm_write_pages(rdev, ib, pe, addr, count, incr, flags) ((rdev)->asic->vm.write_pages((rdev), (ib), (pe), (addr), (count), (incr), (flags)))
2887 #define radeon_asic_vm_set_pages(rdev, ib, pe, addr, count, incr, flags) ((rdev)->asic->vm.set_pages((rdev), (ib), (pe), (addr), (count), (incr), (flags)))
/linux-4.1.27/net/mac80211/
H A Drc80211_minstrel.h30 int diff, incr; minstrel_ewma() local
33 incr = (EWMA_DIV - weight) * diff / EWMA_DIV; minstrel_ewma()
35 return old + incr; minstrel_ewma()
44 int diff, incr, tmp_var; minstrel_ewmsd() local
48 incr = (EWMA_DIV - weight) * diff / EWMA_DIV; minstrel_ewmsd()
50 tmp_var = weight * (tmp_var + diff * incr / 1000000) / EWMA_DIV; minstrel_ewmsd()
/linux-4.1.27/lib/zlib_inflate/
H A Dinftrees.c35 unsigned incr; /* for incrementing code, index */ zlib_inflate_table() local
219 incr = 1U << (len - drop); zlib_inflate_table()
223 fill -= incr; zlib_inflate_table()
228 incr = 1U << (len - 1); zlib_inflate_table()
229 while (huff & incr) zlib_inflate_table()
230 incr >>= 1; zlib_inflate_table()
231 if (incr != 0) { zlib_inflate_table()
232 huff &= incr - 1; zlib_inflate_table()
233 huff += incr; zlib_inflate_table()
300 incr = 1U << (len - 1); zlib_inflate_table()
301 while (huff & incr) zlib_inflate_table()
302 incr >>= 1; zlib_inflate_table()
303 if (incr != 0) { zlib_inflate_table()
304 huff &= incr - 1; zlib_inflate_table()
305 huff += incr; zlib_inflate_table()
/linux-4.1.27/arch/arm/vfp/
H A Dvfpdouble.c72 u64 significand, incr; vfp_double_normaliseround() local
128 incr = 0; vfp_double_normaliseround()
132 incr = 1ULL << VFP_DOUBLE_LOW_BITS; vfp_double_normaliseround()
134 incr -= 1; vfp_double_normaliseround()
136 incr = 0; vfp_double_normaliseround()
138 incr = (1ULL << (VFP_DOUBLE_LOW_BITS + 1)) - 1; vfp_double_normaliseround()
140 pr_debug("VFP: rounding increment = 0x%08llx\n", incr); vfp_double_normaliseround()
145 if ((significand + incr) < significand) { vfp_double_normaliseround()
148 incr >>= 1; vfp_double_normaliseround()
166 significand += incr; vfp_double_normaliseround()
173 if (incr == 0) { vfp_double_normaliseround()
530 u64 rem, incr = 0; vfp_double_ftoui() local
539 incr = 0x8000000000000000ULL; vfp_double_ftoui()
541 incr -= 1; vfp_double_ftoui()
543 incr = 0; vfp_double_ftoui()
545 incr = ~0ULL; vfp_double_ftoui()
548 if ((rem + incr) < rem) { vfp_double_ftoui()
612 u64 rem, incr = 0; vfp_double_ftosi() local
618 incr = 0x8000000000000000ULL; vfp_double_ftosi()
620 incr -= 1; vfp_double_ftosi()
622 incr = 0; vfp_double_ftosi()
624 incr = ~0ULL; vfp_double_ftosi()
627 if ((rem + incr) < rem && d < 0xffffffff) vfp_double_ftosi()
H A Dvfpsingle.c75 u32 significand, incr, rmode; __vfp_single_normaliseround() local
133 incr = 0; __vfp_single_normaliseround()
137 incr = 1 << VFP_SINGLE_LOW_BITS; __vfp_single_normaliseround()
139 incr -= 1; __vfp_single_normaliseround()
141 incr = 0; __vfp_single_normaliseround()
143 incr = (1 << (VFP_SINGLE_LOW_BITS + 1)) - 1; __vfp_single_normaliseround()
145 pr_debug("VFP: rounding increment = 0x%08x\n", incr); __vfp_single_normaliseround()
150 if ((significand + incr) < significand) { __vfp_single_normaliseround()
153 incr >>= 1; __vfp_single_normaliseround()
171 significand += incr; __vfp_single_normaliseround()
178 if (incr == 0) { __vfp_single_normaliseround()
572 u32 rem, incr = 0; vfp_single_ftoui() local
581 incr = 0x80000000; vfp_single_ftoui()
583 incr -= 1; vfp_single_ftoui()
585 incr = 0; vfp_single_ftoui()
587 incr = ~0; vfp_single_ftoui()
590 if ((rem + incr) < rem) { vfp_single_ftoui()
657 u32 rem, incr = 0; vfp_single_ftosi() local
664 incr = 0x80000000; vfp_single_ftosi()
666 incr -= 1; vfp_single_ftosi()
668 incr = 0; vfp_single_ftosi()
670 incr = ~0; vfp_single_ftosi()
673 if ((rem + incr) < rem && d < 0xffffffff) vfp_single_ftosi()
/linux-4.1.27/arch/alpha/kernel/
H A Dsrmcons.c72 int incr = 10; srmcons_receive_chars() local
77 incr = 100; srmcons_receive_chars()
83 mod_timer(&srmconsp->timer, jiffies + incr); srmcons_receive_chars()
/linux-4.1.27/include/linux/
H A Dposix-timers.h23 unsigned long long expires, incr; member in struct:cpu_timer_list
88 unsigned long incr; member in struct:k_itimer::__anon12360::__anon12362
H A Dsched.h522 cputime_t incr; member in struct:cpu_itimer
/linux-4.1.27/kernel/time/
H A Dposix-cpu-timers.c86 unsigned long long delta, incr; bump_cpu_timer() local
88 if (timer->it.cpu.incr == 0) bump_cpu_timer()
94 incr = timer->it.cpu.incr; bump_cpu_timer()
95 delta = now + incr - timer->it.cpu.expires; bump_cpu_timer()
97 /* Don't use (incr*2 < delta), incr*2 might overflow. */ bump_cpu_timer()
98 for (i = 0; incr < delta - incr; i++) bump_cpu_timer()
99 incr = incr << 1; bump_cpu_timer()
101 for (; i >= 0; incr >>= 1, i--) { bump_cpu_timer()
102 if (delta < incr) bump_cpu_timer()
105 timer->it.cpu.expires += incr; bump_cpu_timer()
107 delta -= incr; bump_cpu_timer()
517 } else if (timer->it.cpu.incr == 0) { cpu_timer_fire()
632 old_incr = timer->it.cpu.incr; posix_cpu_timer_set()
712 timer->it.cpu.incr = timespec_to_sample(timer->it_clock, posix_cpu_timer_set()
756 timer->it.cpu.incr, &itp->it_interval); posix_cpu_timer_get()
905 if (it->incr) { check_cpu_itimer()
906 it->expires += it->incr; check_cpu_itimer()
H A Ditimer.c54 cinterval = it->incr; get_cpu_itimer()
163 cinterval = it->incr; set_cpu_itimer()
170 it->incr = ninterval; set_cpu_itimer()
H A Dalarmtimer.c415 s64 incr = ktime_to_ns(interval); alarm_forward() local
417 overrun = ktime_divns(delta, incr); alarm_forward()
420 incr*overrun); alarm_forward()
H A Dtick-sched.c76 s64 incr = ktime_to_ns(tick_period); tick_do_update_jiffies64() local
78 ticks = ktime_divns(delta, incr); tick_do_update_jiffies64()
81 incr * ticks); tick_do_update_jiffies64()
H A Dhrtimer.c821 s64 incr = ktime_to_ns(interval); hrtimer_forward() local
823 orun = ktime_divns(delta, incr); hrtimer_forward()
824 hrtimer_add_expires_ns(timer, incr * orun); hrtimer_forward()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_debugfs.c673 u16 (*incr)[NCCTRL_WIN]; cctrl_tbl_show()
676 incr = kmalloc(sizeof(*incr) * NMTUS, GFP_KERNEL); cctrl_tbl_show()
677 if (!incr) cctrl_tbl_show()
680 t4_read_cong_tbl(adap, incr); cctrl_tbl_show()
684 incr[0][i], incr[1][i], incr[2][i], incr[3][i], cctrl_tbl_show()
685 incr[4][i], incr[5][i], incr[6][i], incr[7][i]); cctrl_tbl_show()
687 incr[8][i], incr[9][i], incr[10][i], incr[11][i], cctrl_tbl_show()
688 incr[12][i], incr[13][i], incr[14][i], incr[15][i], cctrl_tbl_show()
693 kfree(incr); cctrl_tbl_show()
H A Dcxgb4.h1233 void t4_read_cong_tbl(struct adapter *adap, u16 incr[NMTUS][NCCTRL_WIN]);
H A Dt4_hw.c3223 * @incr: where to store the alpha values
3228 void t4_read_cong_tbl(struct adapter *adap, u16 incr[NMTUS][NCCTRL_WIN]) t4_read_cong_tbl() argument
3236 incr[mtu][w] = (u16)t4_read_reg(adap, t4_read_cong_tbl()
/linux-4.1.27/drivers/char/
H A Dmmtimer.c311 if (!t->it.mmtimer.incr) { mmtimer_set_next_timer()
333 to = ((u64)(expires - exp) / t->it.mmtimer.incr); mmtimer_set_next_timer()
336 t->it.mmtimer.expires += t->it.mmtimer.incr * to; mmtimer_set_next_timer()
581 if(t->it.mmtimer.incr) { mmtimer_tasklet()
582 t->it.mmtimer.expires += t->it.mmtimer.incr; mmtimer_tasklet()
671 cur_setting->it_interval = ns_to_timespec(timr->it.mmtimer.incr * sgi_clock_period); sgi_timer_get()
739 timr->it.mmtimer.incr = period; sgi_timer_set()
/linux-4.1.27/drivers/gpu/host1x/
H A Dcdma.c287 * where a syncpt incr happens just prior/during the teardown. host1x_cdma_update_sync_queue()
315 dev_dbg(dev, "%s: perform CPU incr on pending same ctx buffers\n", host1x_cdma_update_sync_queue()
333 dev_dbg(dev, "%s: CPU incr (%d)\n", __func__, syncpt_incrs); host1x_cdma_update_sync_queue()
337 /* safe to use CPU to incr syncpts */ host1x_cdma_update_sync_queue()
H A Djob.c115 * a reserved (never given out or incr) HOST1X_SYNCPT_RESERVED syncpt
/linux-4.1.27/drivers/scsi/isci/
H A Dinit.c100 MODULE_PARM_DESC(no_outbound_task_to, "No Outbound Task Timeout (1us incr)");
104 MODULE_PARM_DESC(ssp_max_occ_to, "SSP Max occupancy timeout (100us incr)");
108 MODULE_PARM_DESC(stp_max_occ_to, "STP Max occupancy timeout (100us incr)");
112 MODULE_PARM_DESC(ssp_inactive_to, "SSP inactivity timeout (100us incr)");
116 MODULE_PARM_DESC(stp_inactive_to, "STP inactivity timeout (100us incr)");
/linux-4.1.27/arch/m68k/ifpsp060/src/
H A Disp.S427 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
550 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
892 # place incr value on stack; store old value in case of #
1219 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1231 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1243 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1255 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1267 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1279 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1291 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1303 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1323 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1387 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1401 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
1415 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1438 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1520 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
1529 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1547 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
1557 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
1688 add.w &0x2,%a2 # incr addr
1698 add.w &0x2,%a2 # incr addr
1708 add.w &0x2,%a2 # incr addr
1760 add.w &0x2,%a2 # incr addr by 2 bytes
1771 add.w &0x2,%a2 # incr addr by 2 bytes
1782 add.w &0x2,%a2 # incr addr by 2 bytes
1812 add.w &0x2,%a2 # incr addr by 2 bytes
H A Dpfpsp.S651 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
891 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
1233 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
2473 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
2959 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
3120 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
3316 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
3608 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
3782 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
4703 mov.l %d1,EXC_DREGS+0x8(%a6) # Save incr value
4711 mov.l %d1,EXC_DREGS+0xc(%a6) # Save incr value
4719 mov.l %d1,%a2 # Save incr value
4727 mov.l %d1,%a3 # Save incr value
4735 mov.l %d1,%a4 # Save incr value
4743 mov.l %d1,%a5 # Save incr value
4751 mov.l %d1,(%a6) # Save incr value
4761 mov.l %d1,EXC_A7(%a6) # Save incr value
4831 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
4844 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
4857 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
4870 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
4883 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
4896 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
4909 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
4922 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
4945 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
4990 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
5004 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5018 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
5040 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
5133 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5143 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
5164 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5174 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
5297 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5305 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5317 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5325 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5337 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5345 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5357 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5365 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
5373 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
6256 add.w &0x1, FTEMP_EX(%a0) # and incr exponent
6299 addq.w &0x1, FTEMP_EX(%a0) # incr exponent
H A Dfpsp.S652 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
892 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
1234 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
2474 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
2960 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
3121 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
3317 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
3609 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
3783 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
3867 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
4047 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
4153 mov.w %d0,EXC_SR(%a6) # store incr number
4316 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18654 mov.l %d1,EXC_DREGS+0x8(%a6) # Save incr value
18662 mov.l %d1,EXC_DREGS+0xc(%a6) # Save incr value
18670 mov.l %d1,%a2 # Save incr value
18678 mov.l %d1,%a3 # Save incr value
18686 mov.l %d1,%a4 # Save incr value
18694 mov.l %d1,%a5 # Save incr value
18702 mov.l %d1,(%a6) # Save incr value
18712 mov.l %d1,EXC_A7(%a6) # Save incr value
18782 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18795 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18808 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18821 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18834 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18847 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18860 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18873 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18896 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18941 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18955 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
18969 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
18991 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
19084 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19094 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
19115 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19125 addq.l &0x2,EXC_EXTWPTR(%a6) # incr instruction ptr
19248 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19256 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19268 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19276 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19288 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19296 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19308 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19316 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
19324 addq.l &0x4,EXC_EXTWPTR(%a6) # incr instruction ptr
22134 add.w &0x1, FTEMP_EX(%a0) # and incr exponent
22177 addq.w &0x1, FTEMP_EX(%a0) # incr exponent
/linux-4.1.27/drivers/media/dvb-frontends/
H A Ddrxd_hard.c1592 s32 incr = 0; CorrectSysClockDeviation() local
1601 /* Retrieve bandwidth and incr, sanity check */ CorrectSysClockDeviation()
1608 status = Read32(state, FE_IF_REG_INCR0__A, (u32 *) &incr, 0); CorrectSysClockDeviation()
1613 if ((nomincr - incr < -500) || (nomincr - incr > 500)) CorrectSysClockDeviation()
1616 if ((nomincr - incr < -2000) || (nomincr - incr > 2000)) CorrectSysClockDeviation()
1636 sysClockFreq = (((incr + 2^23)*bandwidth)/2^21)/1000 */ CorrectSysClockDeviation()
1637 incr += (1 << 23); CorrectSysClockDeviation()
1638 sysClockInHz = MulDiv32(incr, bandwidth, 1 << 21); CorrectSysClockDeviation()
/linux-4.1.27/drivers/usb/dwc2/
H A Dhcd_queue.c646 u16 incr; dwc2_sched_periodic_split() local
650 incr = dwc2_frame_num_inc(qh->start_split_frame, 1); dwc2_sched_periodic_split()
651 if (dwc2_frame_num_le(frame_number, incr)) { dwc2_sched_periodic_split()
/linux-4.1.27/drivers/block/aoe/
H A Daoe.h142 ushort next_cwnd; /* incr maxout after decrementing to zero */
/linux-4.1.27/drivers/gpu/host1x/hw/
H A Dcdma_hw.c49 /* after CPU incr, ensure shadow is up to date */ cdma_timeout_cpu_incr()
/linux-4.1.27/net/ipv4/
H A Dicmp.c254 u32 credit, delta, incr = 0, now = (u32)jiffies; icmp_global_allow() local
269 incr = sysctl_icmp_msgs_per_sec * delta / HZ ; icmp_global_allow()
270 if (incr) icmp_global_allow()
273 credit = min_t(u32, icmp_global.credit + incr, sysctl_icmp_msgs_burst); icmp_global_allow()
H A Dtcp_input.c363 int incr; tcp_grow_window() local
369 incr = 2 * tp->advmss; tcp_grow_window()
371 incr = __tcp_grow_window(sk, skb); tcp_grow_window()
373 if (incr) { tcp_grow_window()
374 incr = max_t(int, incr, 2 * skb->len); tcp_grow_window()
375 tp->rcv_ssthresh = min(tp->rcv_ssthresh + incr, tcp_grow_window()
/linux-4.1.27/drivers/net/ethernet/cirrus/
H A Dcs89x0.h422 /* Demand transfers, incr. address, auto init, writes, ch. n */
424 /* Demand transfers, incr. address, auto init, reads, ch. n */
/linux-4.1.27/arch/m68k/fpsp040/
H A Dround.S198 addw #0x1,LOCAL_EX(%a0) |and incr exponent
239 addw #0x1,LOCAL_EX(%a0) |incr exponent
/linux-4.1.27/drivers/crypto/ux500/hash/
H A Dhash_core.c670 * @incr: Length of message processed already
675 static void hash_incrementlength(struct hash_req_ctx *ctx, u32 incr) hash_incrementlength() argument
677 ctx->state.length.low_word += incr; hash_incrementlength()
680 if (ctx->state.length.low_word < incr) hash_incrementlength()
/linux-4.1.27/drivers/media/pci/cx25821/
H A Dcx25821-core.c327 static const int incr[16] = { cx25821_risc_decode() local
351 return incr[risc >> 28] ? incr[risc >> 28] : 1; cx25821_risc_decode()
/linux-4.1.27/drivers/media/pci/cx88/
H A Dcx88-core.c387 static int const incr[16] = { cx88_risc_decode() local
408 return incr[risc >> 28] ? incr[risc >> 28] : 1; cx88_risc_decode()
/linux-4.1.27/drivers/infiniband/hw/ipath/
H A Dipath_eeprom.c1007 * @incr: how much to add
1015 void ipath_inc_eeprom_err(struct ipath_devdata *dd, u32 eidx, u32 incr) ipath_inc_eeprom_err() argument
1021 new_val = dd->ipath_eep_st_new_errs[eidx] + incr; ipath_inc_eeprom_err()
H A Dipath_kernel.h1033 void ipath_inc_eeprom_err(struct ipath_devdata *dd, u32 eidx, u32 incr);
/linux-4.1.27/drivers/infiniband/hw/mthca/
H A Dmthca_cq.c201 * incr is ignored in native Arbel (mem-free) mode, so cq->cons_index
205 int incr) update_cons_index()
211 mthca_write64(MTHCA_TAVOR_CQ_DB_INC_CI | cq->cqn, incr - 1, update_cons_index()
204 update_cons_index(struct mthca_dev *dev, struct mthca_cq *cq, int incr) update_cons_index() argument
/linux-4.1.27/drivers/scsi/lpfc/
H A Dlpfc_ct.c1476 uint32_t i, j, incr; lpfc_fdmi_cmd() local
1599 incr = vp->rev.biuRev; lpfc_fdmi_cmd()
1601 j = (incr & 0xf); lpfc_fdmi_cmd()
1610 incr = (incr >> 4); lpfc_fdmi_cmd()
H A Dlpfc_attr.c65 * @incr: integer to convert.
79 lpfc_jedec_to_ascii(int incr, char hdw[]) lpfc_jedec_to_ascii() argument
83 j = (incr & 0xf); lpfc_jedec_to_ascii()
88 incr = (incr >> 4); lpfc_jedec_to_ascii()
/linux-4.1.27/drivers/staging/lustre/lustre/lov/
H A Dlov_obd.c2086 unsigned incr, check_uuid, lov_set_info_async() local
2090 incr = check_uuid = do_inactive = no_set = 0; lov_set_info_async()
2104 incr = sizeof(struct obd_id_info); lov_set_info_async()
2110 /* use defaults: do_inactive = incr = 0; */ lov_set_info_async()
2121 for (i = 0; i < count; i++, val = (char *)val + incr) { lov_set_info_async()
/linux-4.1.27/drivers/media/platform/soc_camera/
H A Domap1_camera.c1148 unsigned int incr = enlarge << salign; dma_align() local
1150 v4l_bound_align_image(width, 1, *width + incr, 0, dma_align()
1151 height, 1, *height + incr, 0, salign); dma_align()
/linux-4.1.27/drivers/scsi/mpt2sas/
H A Dmpt2sas_transport.c390 /* incr sgel */ _transport_expander_report_manufacture()
1182 /* incr sgel */ _transport_get_expander_phy_error_log()
1510 /* incr sgel */ _transport_expander_phy_control()
2051 /* incr sgel */ _transport_smp_handler()
H A Dmpt2sas_ctl.c776 /* incr sgel */ _ctl_do_mpt_command()
/linux-4.1.27/arch/xtensa/kernel/
H A Dalign.S352 addi a7, a7, 2 # incr. PC,assume 16-bit instruction
/linux-4.1.27/drivers/media/pci/cx23885/
H A Dcx23885-core.c393 static int incr[16] = { cx23885_risc_decode() local
416 return incr[risc >> 28] ? incr[risc >> 28] : 1; cx23885_risc_decode()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dinit.c1875 u8 incr = nv_ro08(bios, init->offset + 5); init_ram_restrict_zm_reg_group() local
1882 "R[0x%08x] 0x%02x 0x%02x\n", addr, incr, num); init_ram_restrict_zm_reg_group()
1900 addr += incr; init_ram_restrict_zm_reg_group()
/linux-4.1.27/drivers/net/ethernet/apm/xgene/
H A Dxgene_enet_hw.c604 /* Enable auto-incr for scanning */ xgene_enet_reset()
/linux-4.1.27/drivers/clk/
H A Dclk-vt8500.c151 /* If prate / rate would be decimal, incr the divisor */ vt8500_dclk_round_rate()
/linux-4.1.27/drivers/net/wireless/iwlegacy/
H A D4965.c58 /* read data comes through single port, auto-incr addr */ il4965_verify_inst_sparse()
92 /* read data comes through single port, auto-incr addr */ il4965_verify_inst_full()
H A D3945-mac.c1699 /* read data comes through single port, auto-incr addr */ il3945_verify_inst_full()
1736 /* read data comes through single port, auto-incr addr */ il3945_verify_inst_sparse()
/linux-4.1.27/arch/arm/mm/
H A Dcache-l2x0.c1164 ret = of_property_read_u32(np, "arm,double-linefill-incr", &val); l2c310_of_parse()
1171 pr_err("L2C-310 OF arm,double-linefill-incr property value is missing\n"); l2c310_of_parse()
/linux-4.1.27/drivers/rtc/
H A Drtc-ds1685.c1231 { "incr", RTC_EXT_CTRL_4A, RTC_CTRL_4A_INCR },
1464 DS1685_RTC_SYSFS_CTRL_REG_RO(incr); variable
/linux-4.1.27/drivers/misc/sgi-xp/
H A Dxpc.h32 #define XPC_HB_DEFAULT_INTERVAL 5 /* incr HB every x secs */
/linux-4.1.27/drivers/dma/ioat/
H A Ddma.c237 /* cookie incr and addition to used_list must be atomic */ ioat1_tx_submit()
/linux-4.1.27/arch/sparc/kernel/
H A Dentry.S304 /* rescheduling is done in RESTORE_ALL regardless, but incr stats */
/linux-4.1.27/arch/mn10300/mm/
H A Dmisalignment.c657 kdebug("%s %lx", _inc ? "incr" : "disp", disp); misalignment_addr()
/linux-4.1.27/drivers/net/ethernet/sfc/
H A Dfarch.c2438 unsigned int incr = efx_farch_filter_increment(key); efx_farch_filter_insert() local
2475 i = (i + incr) & (table->size - 1); efx_farch_filter_insert()
/linux-4.1.27/drivers/net/fddi/skfp/h/
H A Dsupern_2.h968 #define PL_VSYM_CTR 0x0800 /* violation symbol counter has incr.*/
/linux-4.1.27/drivers/net/fddi/skfp/
H A Dpcmplc.c1726 if (cmd & PL_VSYM_CTR) { /* violation symbol counter has incr.*/ plc_irq()
/linux-4.1.27/drivers/staging/dgap/
H A Ddgap.h1095 unsigned short incr; /* W Increment to next channel*/ member in struct:bs_t
/linux-4.1.27/drivers/media/dvb-core/
H A Ddvb_net.c330 for (ts = buf, ts_end = buf + buf_len; ts < ts_end; /* no default incr. */ ) { dvb_net_ule()
/linux-4.1.27/drivers/media/pci/bt8xx/
H A Dbttv-driver.c3390 static int incr[16] = { bttv_risc_decode() local
3412 return incr[risc >> 28] ? incr[risc >> 28] : 1; bttv_risc_decode()
/linux-4.1.27/drivers/net/ethernet/ti/
H A Ddavinci_emac.c764 /* incr counter for num of mcast addr's mapped to "this" hash bit */ hash_add()
/linux-4.1.27/drivers/scsi/mpt3sas/
H A Dmpt3sas_transport.c1493 /* incr sgel */ _transport_expander_phy_control()
H A Dmpt3sas_base.c1229 /* incr sgel */ _base_build_sg()
1456 /* incr sgel */ _base_build_sg_ieee()
/linux-4.1.27/drivers/net/xen-netback/
H A Dnetback.c1539 * insert idx then incr producer. xenvif_zerocopy_callback()
/linux-4.1.27/drivers/net/wireless/b43/
H A Dphy_lp.h274 #define B43_LPPHY_AFE_DDFS_INCR_INIT B43_PHY_OFDM(0xB9) /* AFE DDFS incr init */
/linux-4.1.27/drivers/infiniband/hw/qib/
H A Dqib.h1305 #define qib_inc_eeprom_err(dd, eidx, incr)
/linux-4.1.27/drivers/net/ethernet/sun/
H A Dcassini.h103 RX complete head incr to
/linux-4.1.27/drivers/gpu/drm/
H A Ddrm_crtc.c516 * drm_framebuffer_reference - incr the fb refcnt
/linux-4.1.27/drivers/gpu/drm/i915/
H A Di915_reg.h258 #define MI_END_SCENE (1 << 4) /* flush binner and incr scene count */

Completed in 4882 milliseconds