Searched refs:shift (Results 1 - 25 of 524) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-alpha/
H A Dcompiler.h13 # define __kernel_insbl(val, shift) __builtin_alpha_insbl(val, shift)
14 # define __kernel_inswl(val, shift) __builtin_alpha_inswl(val, shift)
15 # define __kernel_insql(val, shift) __builtin_alpha_insql(val, shift)
16 # define __kernel_inslh(val, shift) __builtin_alpha_inslh(val, shift)
17 # define __kernel_extbl(val, shift) __builtin_alpha_extbl(val, shift)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/x86/
H A Dsimple_idct_mmx.c219 #define ROW_IDCT(src0, src4, src1, src5, dst, rounder, shift) \
252 "psrad $" #shift ", %%mm7 \n\t"\
253 "psrad $" #shift ", %%mm4 \n\t"\
257 "psrad $" #shift ", %%mm1 \n\t"\
258 "psrad $" #shift ", %%mm2 \n\t"\
274 "psrad $" #shift ", %%mm2 \n\t"\
275 "psrad $" #shift ", %%mm0 \n\t"\
280 "psrad $" #shift ", %%mm6 \n\t"\
283 "psrad $" #shift ", %%mm4 \n\t"\
287 #define COL_IDCT(src0, src4, src1, src5, dst, shift) \
[all...]
H A Dmathops.h29 #define MULL(ra, rb, shift) \
34 : "a" ((int)ra), "rm" ((int)rb), "i"(shift));\
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/arch-omap/
H A Duncompress.h29 #define check_port(base, shift) ((base[UART_OMAP_MDR1 << shift] & 7) == 0)
35 int shift = 2; local
57 shift = 0;
59 if (check_port(uart, shift))
70 while (!(uart[UART_LSR << shift] & UART_LSR_THRE))
72 uart[UART_TX << shift] = c;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/boot/common/
H A Dns16550.c24 static int shift; variable
47 shift = rs_table[chan].iomem_reg_shift;
52 lcr = inb(com_port + (UART_LCR << shift));
54 outb(com_port + (UART_LCR << shift), 0x80);
55 dlm = inb(com_port + (UART_DLM << shift));
65 outb(com_port + (UART_LCR << shift), lcr);
68 outb(com_port + (UART_DLL << shift),
70 outb(com_port + (UART_DLM << shift),
73 outb(com_port + (UART_LCR << shift), 0x03);
75 outb(com_port + (UART_MCR << shift),
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/include/ntfs-3g/
H A Dbitmap.h77 * @shift: bits to roll
79 static __inline__ u32 ntfs_rol32(u32 word, unsigned int shift) argument
81 return (word << shift) | (word >> (32 - shift));
88 * @shift: bits to roll
90 static __inline__ u32 ntfs_ror32(u32 word, unsigned int shift) argument
92 return (word >> shift) | (word << (32 - shift));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dbitops.h37 * @shift: bits to roll
39 static inline __u32 rol32(__u32 word, unsigned int shift) argument
41 return (word << shift) | (word >> (32 - shift));
47 * @shift: bits to roll
49 static inline __u32 ror32(__u32 word, unsigned int shift) argument
51 return (word >> shift) | (word << (32 - shift));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dnellymoser.c88 static inline int signed_shift(int i, int shift) { argument
89 if (shift > 0)
90 return i << shift;
91 return i >> -shift;
94 static int sum_bits(short *buf, short shift, short off) argument
100 b = ((b>>(shift-1))+1)>>1;
124 short shift, shift_saved; local
133 shift = -16;
134 shift += headroom(&max);
138 sbuf[i] = signed_shift(buf[i], shift);
[all...]
H A Dpixdesc.h30 uint16_t shift :3; ///< number of lsb that must be shifted away to get the value member in struct:AVComponentDescriptor
47 * Amount to shift the luma width right to find the chroma width.
55 * Amount to shift the luma height right to find the chroma height.
76 int shift= comp.shift; local
87 val = (val>>shift) & mask;
91 shift-=depth;
92 while(shift<0){
93 shift+=8;
H A Dcolorspace.h91 #define RGB_TO_U(r1, g1, b1, shift)\
93 FIX(0.50000) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)
95 #define RGB_TO_V(r1, g1, b1, shift)\
97 FIX(0.08131) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)
103 #define RGB_TO_U_CCIR(r1, g1, b1, shift)\
105 FIX(0.50000*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)
107 #define RGB_TO_V_CCIR(r1, g1, b1, shift)\
[all...]
H A Dpng.c38 /* x shift to get row width */
75 int shift, xmin, pass_width; local
80 shift = ff_png_pass_xshift[pass];
81 pass_width = (width - xmin + (1 << shift) - 1) >> shift;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/syslib/
H A Dgen550_dbg.c41 static int shift; variable
88 shift = rs_table[chan].iomem_reg_shift;
91 lcr = serial_inb(com_port + (UART_LCR << shift));
94 serial_outb(com_port + (UART_LCR << shift), UART_LCR_DLAB);
95 dlm = serial_inb(com_port + (UART_DLM << shift));
105 serial_outb(com_port + (UART_LCR << shift), lcr);
109 serial_outb(com_port + (UART_DLL << shift),
111 serial_outb(com_port + (UART_DLM << shift),
114 serial_outb(com_port + (UART_LCR << shift), 0x03);
116 serial_outb(com_port + (UART_MCR << shift),
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/cxgb3/
H A Diwch_mem.c43 int shift,
56 shift-12,
71 int shift,
90 shift-12,
108 int *shift,
130 /* Find largest page shift we can use to cover buffers */
131 for (*shift = PAGE_SHIFT; *shift < 27; ++(*shift))
133 if ((1ULL << *shift)
41 iwch_register_mem(struct iwch_dev *rhp, struct iwch_pd *php, struct iwch_mr *mhp, int shift, __be64 *page_list) argument
69 iwch_reregister_mem(struct iwch_dev *rhp, struct iwch_pd *php, struct iwch_mr *mhp, int shift, __be64 *page_list, int npages) argument
103 build_phys_page_list(struct ib_phys_buf *buffer_list, int num_phys_buf, u64 *iova_start, u64 *total_size, int *npages, int *shift, __be64 **page_list) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/boards/shmin/
H A Dsetup.c20 { .irq=32, .addr=INTC_IPRC, .shift= 0, .priority=0 },
21 { .irq=33, .addr=INTC_IPRC, .shift= 4, .priority=0 },
22 { .irq=34, .addr=INTC_IPRC, .shift= 8, .priority=8 },
23 { .irq=35, .addr=INTC_IPRC, .shift=12, .priority=0 },
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/pci/
H A Dops-vr41xx.c93 int shift; local
102 shift = (where & 3) << 3;
103 data &= ~(0xffU << shift);
104 data |= ((val & 0xffU) << shift);
107 shift = (where & 2) << 3;
108 data &= ~(0xffffU << shift);
109 data |= ((val & 0xffffU) << shift);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dcfbimgblt.c85 u32 color = 0, val, shift; local
95 shift = 0;
101 shift = start_index;
110 val |= FB_SHIFT_HIGH(color, shift);
111 if (shift >= null_bits) {
114 val = (shift == null_bits) ? 0 :
115 FB_SHIFT_LOW(color, 32 - shift);
117 shift += bpp;
118 shift &= (32 - 1);
121 if (shift) {
143 u32 shift, color = 0, bpp = p->var.bits_per_pixel; local
218 u32 bit_mask, end_mask, eorx, shift; local
[all...]
H A Dsysimgblt.c61 u32 color = 0, val, shift; local
71 shift = 0;
78 shift = start_index;
87 val |= FB_SHIFT_HIGH(color, shift);
88 if (shift >= null_bits) {
91 val = (shift == null_bits) ? 0 :
92 FB_SHIFT_LOW(color, 32 - shift);
94 shift += bpp;
95 shift &= (32 - 1);
98 if (shift) {
119 u32 shift, color = 0, bpp = p->var.bits_per_pixel; local
194 u32 bit_mask, end_mask, eorx, shift; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/ac97/
H A Dac97_patch.h25 #define AC97_SINGLE_VALUE(reg,shift,mask,invert) \
26 ((reg) | ((shift) << 8) | ((shift) << 12) | ((mask) << 16) | \
28 #define AC97_PAGE_SINGLE_VALUE(reg,shift,mask,invert,page) \
29 (AC97_SINGLE_VALUE(reg,shift,mask,invert) | (1<<25) | ((page) << 26))
30 #define AC97_SINGLE(xname, reg, shift, mask, invert) \
34 .private_value = AC97_SINGLE_VALUE(reg, shift, mask, invert) }
35 #define AC97_PAGE_SINGLE(xname, reg, shift, mask, invert, page) \
39 .private_value = AC97_PAGE_SINGLE_VALUE(reg, shift, mask, invert, page) }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dsystem.h146 int shift; local
151 shift = (3 ^ (addr & 3)) << 3;
161 : "d" (x << shift), "d" (~(255 << shift)), "a" (addr),
163 x = old >> shift;
167 shift = (2 ^ (addr & 2)) << 3;
177 : "d" (x << shift), "d" (~(65535 << shift)), "a" (addr),
179 x = old >> shift;
223 int shift; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m32r/lib/
H A Dashxdi3.S10 ; input r2 shift val
26 ; case 32 =< shift
32 1: ; case shift <32
46 ; case 32 =< shift
51 1: ; case shift <32
63 ; case 32 =< shift
68 1: ; case shift <32
83 ; case 32 =< shift
89 1: ; case shift <32
103 ; case 32 =< shift
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/oprofile/
H A Dop_model_rs64.c24 unsigned long shift = 0, mask = 0; local
31 shift = 6;
36 shift = 0;
41 shift = 31 - 4;
46 shift = 31 - 9;
51 shift = 31 - 14;
56 shift = 31 - 19;
61 shift = 31 - 24;
66 shift = 31 - 28;
71 tmp = tmp & ~(mask << shift);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/sysdev/qe_lib/
H A Ducc.c86 u8 * shift)
91 *shift = 16;
95 *shift = 0;
99 *shift = 16;
103 *shift = 0;
107 *shift = 16;
111 *shift = 0;
115 *shift = 16;
119 *shift = 0;
130 u8 shift; local
85 get_cmxucr_reg(int ucc_num, volatile u32 ** p_cmxucr, u8 * reg_num, u8 * shift) argument
150 u8 shift; local
247 clock_bits <<= shift; local
248 clock_mask <<= shift; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/clocksource/
H A Dscx200_hrt.c61 /* mult, shift are set based on mhz27 flag */
83 cs_hrt.shift = HRT_SHIFT_27;
85 cs_hrt.shift);
87 cs_hrt.shift = HRT_SHIFT_1;
89 cs_hrt.shift);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/core/
H A Dpacker.c72 int shift; local
77 shift = 32 - desc[i].offset_bits - desc[i].size_bits;
81 structure) << shift;
85 mask = cpu_to_be32(((1ull << desc[i].size_bits) - 1) << shift);
89 int shift; local
94 shift = 64 - desc[i].offset_bits - desc[i].size_bits;
98 structure) << shift;
102 mask = cpu_to_be64((~0ull >> (64 - desc[i].size_bits)) << shift);
162 int shift; local
167 shift
176 int shift; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/drivers/pci/
H A Dops-sh4.c67 int shift; local
77 shift = (where & 3) << 3;
78 data &= ~(0xff << shift);
79 data |= ((val & 0xff) << shift);
82 shift = (where & 2) << 3;
83 data &= ~(0xffff << shift);
84 data |= ((val & 0xffff) << shift);

Completed in 278 milliseconds

1234567891011>>