Searched defs:adj (Results 1 - 8 of 8) sorted by relevance

/arch/sh/boards/mach-dreamcast/
H A Drtc.c60 unsigned long adj = secs + TWENTY_YEARS; local
63 __raw_writel((adj & 0xffff0000) >> 16, AICA_RTC_SECS_H);
64 __raw_writel((adj & 0xffff), AICA_RTC_SECS_L);
/arch/x86/math-emu/
H A Dpoly_sin.c61 unsigned long fix_up, adj; local
174 adj = accumulator.lsw; /* temp save */
176 if (accumulator.lsw > adj)
H A Dpoly_tan.c56 unsigned long adj; local
177 adj = 0xffffffff; /* We want approx 1.0 here, but
180 adj = accum.msw >> -(exponent + 1); /* tan */
181 adj = mul_32_32(adj, adj); /* tan^2 */
183 adj = 0;
184 adj = mul_32_32(0x898cc517, adj); /* delta * tan^2 */
186 fix_up.msw += adj;
[all...]
H A Dpoly_l2.c184 long int exponent, adj; local
220 adj = norm_Xsig(&argSignif);
224 shr_Xsig(&accumulator, 2 * (-1 - (1 + exponent + adj)));
234 shr_Xsig(&accumulator, 6 - adj);
H A Dreg_constant.c52 static void fld_const(FPU_REG const * c, int adj, u_char tag) argument
62 st_new_ptr->sigl += adj; /* For all our fldxxx constants, we don't need to
/arch/ia64/kernel/
H A Dsmpboot.c293 long i, delta, adj, adjust_latency = 0, done = 0; local
334 adj = -delta + adjust_latency/4;
336 adj = -delta;
338 ia64_set_itc(ia64_get_itc() + adj);
/arch/sparc/kernel/
H A Dtime_64.c120 static int tick_add_compare(unsigned long adj) argument
145 : "r" (orig_tick), "r" (adj));
151 return ((long)(new_tick - (orig_tick+adj))) > 0L;
154 static unsigned long tick_add_tick(unsigned long adj) argument
163 : "r" (adj));
222 static unsigned long stick_add_tick(unsigned long adj) argument
230 : "r" (adj));
235 static int stick_add_compare(unsigned long adj) argument
245 : "r" (orig_tick + adj));
251 return ((long)(new_tick - (orig_tick+adj))) >
361 hbtick_add_tick(unsigned long adj) argument
371 hbtick_add_compare(unsigned long adj) argument
[all...]
H A Dsmp_64.c191 long i, delta, adj, adjust_latency = 0, done = 0; local
217 adj = -delta + adjust_latency/4;
219 adj = -delta;
221 tick_ops->add_tick(adj);

Completed in 132 milliseconds