Searched refs:b5 (Results 1 - 25 of 31) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/ppc/
H A Dfdct_altivec.c80 #define FDCTROW(b0,b1,b2,b3,b4,b5,b6,b7) /* {{{ */ \
85 x2 = vec_add(b2, b5); /* x2 = b2 + b5; */ \
86 x5 = vec_sub(b2, b5); /* x5 = b2 - b5; */ \
97 b5 = vec_add(b6, b2); /* b5 = b6 + b2; */ \
99 b5 = vec_madd(cnst, b5, mzero); /* b5
[all...]
H A Dsnow_altivec.c369 void ff_snow_vertical_compose97i_altivec(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, DWTELEM *b3, DWTELEM *b4, DWTELEM *b5, int width) argument
380 v5=(vector signed int *)b5;
385 b4[i] -= (3*(b3[i] + b5[i])+4)>>3;
409 b4[i] -= (W_DM*(b3[i] + b5[i])+W_DO)>>W_DS;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dh264idct.c98 const int b5 = (a3>>2) - a5; local
103 block[1+i*8] = b2 + b5;
104 block[6+i*8] = b2 - b5;
129 const int b5 = (a3>>2) - a5; local
133 dst[i + 1*stride] = cm[ dst[i + 1*stride] + ((b2 + b5) >> 6) ];
138 dst[i + 6*stride] = cm[ dst[i + 6*stride] + ((b2 - b5) >> 6) ];
H A Dsnow.h124 void ff_snow_vertical_compose97i(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5, int width);
H A Dcavsdsp.c198 const int b5 = ((a0 - a1 + a2)<<1) + a0; local
213 src[i][1] = (b1 + b5) >> 3;
218 src[i][6] = (b1 - b5) >> 3;
228 const int b5 = ((a0 - a1 + a2)<<1) + a0; local
243 dst[i + 1*stride] = cm[ dst[i + 1*stride] + ((b1 + b5) >> 7)];
248 dst[i + 6*stride] = cm[ dst[i + 6*stride] + ((b1 - b5) >> 7)];
H A Dsnow.c993 DWTELEM *b5= buffer + mirror(y+4, height-1)*stride; local
996 if(y+4<(unsigned)height) horizontal_decompose97i(b5, width);
998 if(y+3<(unsigned)height) vertical_decompose97iH0(b3, b4, b5, width);
1006 b3=b5;
1187 void ff_snow_vertical_compose97i(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5, int width){ argument
1191 b4[i] -= (W_DM*(b3[i] + b5[i])+W_DO)>>W_DS;
1226 IDWTELEM *b5= slice_buffer_get_line(sb, mirror(y + 4, height - 1) * stride_line); local
1229 dsp->vertical_compose97i(b0, b1, b2, b3, b4, b5, width);
1231 if(y+3<(unsigned)height) vertical_compose97iL1(b3, b4, b5, width);
1243 cs->b3=b5;
1254 IDWTELEM *b5= buffer + mirror(y+4, height-1)*stride; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wireless/
H A Dray_cs.h41 struct b5_startup_params b5; member in union:ray_dev_t::__anon6154
H A Dray_cs.c242 /* b4 - b5 differences start here */
277 /* b4 - b5 differences start here */
599 memcpy_toio(local->sram + HOST_TO_ECF_BASE, &local->sparm.b5,
667 memcpy((UCHAR *)&local->sparm.b5, b5_default_startup_parms,
670 local->sparm.b5.a_hop_time[0] = (hop_dwell >> 8) & 0xff;
671 local->sparm.b5.a_hop_time[1] = hop_dwell & 0xff;
672 local->sparm.b5.a_beacon_period[0] = (beacon_period >> 8) & 0xff;
673 local->sparm.b5.a_beacon_period[1] = beacon_period & 0xff;
675 local->sparm.b5.a_power_mgt_state = 1;
676 local->sparm.b5
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/atm/
H A Dfore200e.h74 #define BITFIELD5(b1, b2, b3, b4, b5) b1; b2; b3; b4; b5;
75 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b1; b2; b3; b4; b5; b6;
80 #define BITFIELD5(b1, b2, b3, b4, b5) b5; b4; b3; b2; b1;
81 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b6; b5; b4; b3; b2; b1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/x86/
H A Dsnowdsp_mmx.c438 void ff_snow_vertical_compose97i_sse2(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5, int width){ argument
444 b4[i] -= (W_DM*(b3[i] + b5[i])+W_DO)>>W_DS;
508 :"r"(b0),"r"(b1),"r"(b2),"r"(b3),"r"(b4),"r"(b5));
536 void ff_snow_vertical_compose97i_mmx(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5, int width){ argument
541 b4[i] -= (W_DM*(b3[i] + b5[i])+W_DO)>>W_DS;
602 :"r"(b0),"r"(b1),"r"(b2),"r"(b3),"r"(b4),"r"(b5));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dq_gred.c264 SPRINT_BUF(b5);
289 sprint_size(qopt->backlog, b5));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ia64/
H A Dptrace.h221 unsigned long b5; member in struct:switch_stack
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/mm/
H A Dproc-funcs.S140 .irp b5, 0x00, 0x04
147 .long 0x03800300 + \b7 + \b6 + \b5 + \b4 + \b3 + \b2 + \b1 + \b0
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/tagutils/
H A Dtagutils-asf.h35 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
36 GUID name = { l, { w1, w2 }, { b1, b2, b3, b4, b5, b6, b7, b8 } }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/tagutils/
H A Dtagutils-asf.h34 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
35 GUID name = { l, { w1, w2 }, { b1, b2, b3, b4, b5, b6, b7, b8 } }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/tagutils/
H A Dtagutils-asf.h35 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
36 GUID name = { l, { w1, w2 }, { b1, b2, b3, b4, b5, b6, b7, b8 } }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/kernel/
H A Dentry.h58 .spillsp b4,SW(B4)+16+(off); .spillsp b5,SW(B5)+16+(off); \
H A Drelocate_kernel.S233 mov r5=b5
236 st8 [loc1]=r5, 8 // b5
H A Dasm-offsets.c156 DEFINE(IA64_SWITCH_STACK_B5_OFFSET, offsetof (struct switch_stack, b5));
H A Dmca_asm.S593 mov temp4=b5
596 st8 [temp2]=temp4 // save b5
752 ld8 temp4=[temp2] // restore b5
755 mov b5=temp4
H A Dentry.S97 ldf.fill f12=[sp]; mov f13=f0; mov b5=r0
319 mov r26=b5
332 st8 [r14]=r26 // save b5
400 ld8 r26=[r3],16 // restore b5
448 mov b5=r26
H A Dhead.S111 SAVE_FROM_REG(b5,_reg1,_reg2);; \
1034 SET_REG(b5);
1165 RESTORE_REG(b5, r25, r17);;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/kernel/
H A Dkprobes.c88 #define W(row,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,ba,bb,bc,bd,be,bf) \
90 (b4##UL << 0x4)|(b5##UL << 0x5)|(b6##UL << 0x6)|(b7##UL << 0x7) | \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Dkprobes.c61 #define W(row,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,ba,bb,bc,bd,be,bf) \
63 (b4##UL << 0x4)|(b5##UL << 0x5)|(b6##UL << 0x6)|(b7##UL << 0x7) | \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/telephony/
H A Dixj.h78 unsigned int b5:1; member in struct:__anon7044

Completed in 312 milliseconds

12