Searched refs:shift (Results 51 - 75 of 524) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dclockchips.h61 * @shift: nanoseconds to cycles divisor (power of two)
80 int shift; member in struct:clock_event_device
99 * clock_ticks = (nanoseconds * factor) >> shift.
104 * factor = (clock_ticks << shift) / nanoseconds
107 int shift)
109 uint64_t tmp = ((uint64_t)ticks) << shift;
106 div_sc(unsigned long ticks, unsigned long nsec, int shift) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Ddiv64.c68 unsigned int shift = fls(high); local
70 d = divisor >> shift;
71 dividend >>= shift; local
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/
H A Dsoc-dapm.h73 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \
77 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \
80 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \
83 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \
86 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift = wshift, \
92 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \
97 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \
101 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \
106 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \
111 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift
260 unsigned char shift; /* bits to shift */ member in struct:snd_soc_dapm_widget
[all...]
H A Dad1848.h177 #define AD1848_MIXVAL_SINGLE(reg, shift, mask, invert) \
178 ((reg) | ((shift) << 8) | ((mask) << 16) | ((invert) << 24))
191 #define AD1848_SINGLE(xname, xindex, reg, shift, mask, invert) \
195 .private_value = AD1848_MIXVAL_SINGLE(reg, shift, mask, invert) }
197 #define AD1848_SINGLE_TLV(xname, xindex, reg, shift, mask, invert, xtlv) \
201 .private_value = AD1848_MIXVAL_SINGLE(reg, shift, mask, invert), \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bn/
H A Dbn_gcd.c253 int shift; local
267 shift = 0;
268 while (!BN_is_bit_set(B, shift)) /* note that 0 < B */
270 shift++;
279 if (shift > 0)
281 if (!BN_rshift(B, B, shift)) goto err;
286 shift = 0;
287 while (!BN_is_bit_set(A, shift)) /* note that 0 < A */
289 shift++;
298 if (shift >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn_gcd.c255 int shift; local
269 shift = 0;
270 while (!BN_is_bit_set(B, shift)) /* note that 0 < B */
272 shift++;
281 if (shift > 0)
283 if (!BN_rshift(B, B, shift)) goto err;
288 shift = 0;
289 while (!BN_is_bit_set(A, shift)) /* note that 0 < A */
291 shift++;
300 if (shift >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/sysdev/
H A Dcpm2_common.c136 int shift; local
173 shift = 24;
176 shift = 16;
180 shift = 8;
184 shift = 0;
188 shift = 24;
192 shift = 16;
196 shift = 8;
204 shift +=3;
215 bits <<= shift; local
216 mask <<= shift; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/pci/
H A Dops-bridge.c35 u32 cf, shift, mask; local
80 shift = ((where & 3) << 3);
82 *value = (cf >> shift) & mask;
96 u32 cf, shift, mask; local
144 shift = ((where & 3) << 3);
146 *value = (cf >> shift) & mask;
168 u32 cf, shift, mask, smask; local
215 shift = ((where & 3) << 3);
217 smask = mask << shift;
219 cf = (cf & ~smask) | ((value & mask) << shift);
235 u32 cf, shift, mask, smask; local
[all...]
H A Dops-ddb5477.c217 int status, shift = 0; local
227 shift += 16;
228 result &= ~(0xffff << shift);
229 result |= val << shift;
236 int status, shift = 0; local
244 shift += 16;
246 shift += 8;
247 result &= ~(0xff << shift);
248 result |= val << shift;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/block/
H A Ddasd_proc.c171 dasd_statistics_array(char *str, unsigned int *array, int shift) argument
176 str += sprintf(str, "%7d ", array[i] >> shift);
192 int shift; local
204 for (shift = 0; (prof->dasd_io_reqs >> shift) > 9999999; shift++);
220 str = dasd_statistics_array(str, prof->dasd_io_secs, shift);
222 str = dasd_statistics_array(str, prof->dasd_io_times, shift);
224 str = dasd_statistics_array(str, prof->dasd_io_timps, shift);
226 str = dasd_statistics_array(str, prof->dasd_io_time1, shift);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/drm/
H A Ddrm_drawable.c136 unsigned int shift; local
148 shift = id % (8 * sizeof(*bitfield));
151 !(bitfield[idx] & (1 << shift))) {
158 bitfield[idx] &= ~(1 << shift);
234 unsigned int id, idx, shift; local
246 shift = id % (8 * sizeof(*bitfield));
249 !(bitfield[idx] & (1 << shift))) {
327 unsigned int idx, shift; local
331 shift = id % (8 * sizeof(*bitfield));
334 !(bitfield[idx] & (1 << shift))) {
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dsyscopyarea.c33 int const shift = dst_idx-src_idx; local
39 if (!shift) {
81 right = shift & (bits - 1);
82 left = -shift & (bits - 1);
88 if (shift > 0) {
111 if (shift > 0) {
174 int shift; local
187 shift = dst_idx-src_idx;
192 if (!shift) {
232 int const left = -shift
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dcommon.h116 //rounded division & shift
261 int bytes, shift;\
268 shift = (bytes - 1) * 6;\
269 tmp = (256 - (256 >> bytes)) | (in >> shift);\
271 while (shift >= 6) {\
272 shift -= 6;\
273 tmp = 0x80 | ((in >> shift) & 0x3f);\
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/include/libavutil/
H A Dcommon.h116 //rounded division & shift
261 int bytes, shift;\
268 shift = (bytes - 1) * 6;\
269 tmp = (256 - (256 >> bytes)) | (in >> shift);\
271 while (shift >= 6) {\
272 shift -= 6;\
273 tmp = 0x80 | ((in >> shift) & 0x3f);\
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlpc.c33 int32_t *lpc_out, int *shift, int max_shift, int zero_shift)
51 *shift = zero_shift;
56 /* calculate level shift which scales max coeff to available bits */
62 /* since negative shift values are unsupported in decoder, scale down
71 /* output quantized coefficients and level shift */
78 *shift = sh;
106 int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc,
166 quantize_lpc_coefs(lpc[i], i+1, precision, coefs[i], &shift[i], max_shift, zero_shift);
169 quantize_lpc_coefs(lpc[i], i+1, precision, coefs[i], &shift[i], max_shift, zero_shift);
32 quantize_lpc_coefs(double *lpc_in, int order, int precision, int32_t *lpc_out, int *shift, int max_shift, int zero_shift) argument
103 ff_lpc_calc_coefs(DSPContext *s, const int32_t *samples, int blocksize, int min_order, int max_order, int precision, int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc, int omethod, int max_shift, int zero_shift) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/ppc/
H A Dint_altivec.c107 static int32_t scalarproduct_int16_altivec(int16_t * v1, int16_t * v2, int order, const int shift) argument
117 if(shift & 0x10) shifts = vec_add(shifts, vec_sl(vec_splat_u32(0x08), vec_splat_u32(0x1)));
118 if(shift & 0x08) shifts = vec_add(shifts, vec_splat_u32(0x08));
119 if(shift & 0x04) shifts = vec_add(shifts, vec_splat_u32(0x04));
120 if(shift & 0x02) shifts = vec_add(shifts, vec_splat_u32(0x02));
121 if(shift & 0x01) shifts = vec_add(shifts, vec_splat_u32(0x01));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/kernel/
H A Dtime.c46 .shift = 16,
98 unsigned long mult, shift, count_hz; local
101 shift = clocksource_avr32.shift;
102 mult = clocksource_hz2mult(count_hz, shift);
109 tmp <<= shift; local
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/mach-at32ap/
H A Dtime-tc.c51 .shift = 16,
85 unsigned long shift; local
90 shift = clocksource_avr32.shift;
94 mult = clocksource_hz2mult(count_hz, shift);
98 tmp <<= shift; local
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/arm/
H A Dmathops.h29 static inline av_const int MULL(int a, int b, unsigned shift) argument
36 : "r"(b), "r"(a), "ir"(shift), "ir"(32-shift));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/clocksource/
H A Dcyclone.c33 .shift = 0,
111 /* sort out mult/shift values: */
112 clocksource_cyclone.shift = 22;
114 clocksource_cyclone.shift);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/pqueue/
H A Dpq_compat.h102 #define pq_64bit_lshift(r, x, shift) BN_lshift(r, x, shift)
141 #define pq_64bit_lshift(r, x, shift) (*(r) = (*(x) << (shift)))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dpq_compat.h102 #define pq_64bit_lshift(r, x, shift) BN_lshift(r, x, shift)
141 #define pq_64bit_lshift(r, x, shift) (*(r) = (*(x) << (shift)))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/xmon/
H A Dppc.h92 int shift;
98 i |= (op & ((1 << o->bits) - 1)) << o->shift;
117 op = ((i) >> o->shift) & ((1 << o->bits) - 1);
91 int shift; member in struct:powerpc_operand
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/kernel/
H A Dptrace.c118 int shift; local
123 shift = (insn >> 8) & 15;
129 shift = (int)get_user_reg (child, (insn >> 8) & 15);
131 shift = (insn >> 7) & 31;
137 case 0: val <<= shift; break; local
138 case 1: val >>= shift; break; local
140 val = (((signed long)val) >> shift);
143 val = (val >> shift) | (val << (32 - shift));
156 int shift; local
164 case 0: val <<= shift; break; local
165 case 1: val >>= shift; break; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/kernel/
H A Dpatch.c49 unsigned long shift; local
52 shift = 5 + 41 * (insn_addr % 16); /* 5 bits of template, then 3 x 41-bit instructions */
53 if (shift >= 64) {
54 m1 = mask << (shift - 64);
55 v1 = val << (shift - 64);
57 m0 = mask << shift; m1 = mask >> (64 - shift);
58 v0 = val << shift; v1 = val >> (64 - shift);

Completed in 413 milliseconds

1234567891011>>