Searched refs:shift_down (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dsonic.c87 static inline int shift_down(int a,int b) function
458 int tmp = x + shift_down(k[j] * state[p], LATTICE_SHIFT);
459 state[p] += shift_down(k[j]*x, LATTICE_SHIFT);
467 int i, x = error - shift_down(k[order-1] * state[order-1], LATTICE_SHIFT);
475 x -= shift_down(k_value * state_value, LATTICE_SHIFT);
476 state_ptr[1] = state_value + shift_down(k_value * x, LATTICE_SHIFT);
481 x -= shift_down(k[i] * state[i], LATTICE_SHIFT);
482 state[i+1] = state[i] + shift_down(k[i] * x, LATTICE_SHIFT);
555 *x_ptr = x_value + shift_down(k*state_value,LATTICE_SHIFT);
556 *state_ptr = state_value + shift_down(
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dkeyboard.c136 static unsigned char shift_down[NR_SHIFT]; /* shift state counters.. */ variable
369 * shift_down[] and shift_state from key_down[] maybe called when keymap is
377 memset(shift_down, 0, sizeof(shift_down));
399 shift_down[val]++;
746 if (vc_kbd_mode(kbd, VC_APPLIC) && !shift_down[KG_SHIFT]) {
817 if (shift_down[value])
818 shift_down[value]--;
820 shift_down[value]++;
822 if (shift_down[valu
[all...]

Completed in 48 milliseconds