Searched refs:MUL64 (Results 1 - 16 of 16) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dmathops.h58 #define MUL64 MUL64 macro
59 static av_always_inline av_const int64_t MUL64(int a, int b) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/x86/
H A Dmathops.h55 #define MUL64 MUL64 macro
56 static av_always_inline av_const int64_t MUL64(int a, int b) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dmathops.h44 #ifndef MUL64
45 # define MUL64(a,b) ((int64_t)(a) * (int64_t)(b)) macro
49 # define MULL(a,b,s) (MUL64(a, b) >> (s))
54 return MUL64(a, b) >> 32;
65 # define MAC64(d, a, b) ((d) += MUL64(a, b))
69 # define MLS64(d, a, b) ((d) -= MUL64(a, b))
H A Dalsdec.c487 int tmp1 = ((MUL64(par[k], cof[j]) + (1 << 19)) >> 20);
488 cof[j] += ((MUL64(par[k], cof[i]) + (1 << 19)) >> 20);
492 cof[i] += ((MUL64(par[k], cof[j]) + (1 << 19)) >> 20);
884 y += MUL64(bd->ltp_gain[tab], raw_samples[base]);
896 y += MUL64(lpc_cof[sb], raw_samples[-(sb + 1)]);
946 y += MUL64(lpc_cof[sb], raw_samples[sb]);
1268 MUL64(ch[dep].weighting[0], master[smp - 1 ]) +
1269 MUL64(ch[dep].weighting[1], master[smp ]) +
1270 MUL64(ch[dep].weighting[2], master[smp + 1 ]) +
1271 MUL64(c
[all...]
H A Dmpegaudiodsp_template.c62 # define MULS(ra, rb) MUL64(ra, rb)
H A Dmpegaudiodec.c232 val = MUL64(mant + (-1 << n) + 1, scale_factor_mult[n-1][mod]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/avr32/
H A Dmathops.h50 #define MUL64 MUL64 macro
51 static inline av_const int64_t MUL64(int a, int b) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/avr32/
H A Dmathops.h50 #define MUL64 MUL64 macro
51 static inline av_const int64_t MUL64(int a, int b) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmathops.h54 #ifndef MUL64
55 # define MUL64(a,b) ((int64_t)(a) * (int64_t)(b)) macro
59 # define MULL(a,b,s) (MUL64(a, b) >> (s))
64 return MUL64(a, b) >> 32;
75 # define MAC64(d, a, b) ((d) += MUL64(a, b))
79 # define MLS64(d, a, b) ((d) -= MUL64(a, b))
H A Dalsdec.c496 int tmp1 = ((MUL64(par[k], cof[j]) + (1 << 19)) >> 20);
497 cof[j] += ((MUL64(par[k], cof[i]) + (1 << 19)) >> 20);
501 cof[i] += ((MUL64(par[k], cof[j]) + (1 << 19)) >> 20);
904 y += MUL64(bd->ltp_gain[tab], raw_samples[base]);
916 y += MUL64(lpc_cof[sb], raw_samples[-(sb + 1)]);
966 y += MUL64(lpc_cof[sb], raw_samples[sb]);
1296 MUL64(ch[dep].weighting[0], master[smp - 1 ]) +
1297 MUL64(ch[dep].weighting[1], master[smp ]) +
1298 MUL64(ch[dep].weighting[2], master[smp + 1 ]) +
1299 MUL64(c
[all...]
H A Dflacdsp_lpc_template.c33 # define MUL(a, b) MUL64(a, b)
H A Dopus.h60 #define ROUND_MULL(a,b,s) (((MUL64(a, b) >> ((s) - 1)) + 1) >> 1)
H A Dmpegaudiodsp_template.c62 # define MULS(ra, rb) MUL64(ra, rb)
H A Dmpegaudiodec_template.c219 val = MUL64((int)(mant + (-1U << n) + 1), scale_factor_mult[n-1][mod]);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/crypto/
H A Dvmac.c60 * MUL64: 64x64->128-bit multiplication
85 #define MUL64(rh, rl, i1, i2) \ macro
115 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
126 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
129 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i+2], \
141 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
144 MUL64(th, tl, pe64_to_cpup((mp)+i+2)+(kp)[i+2], \
147 MUL64(th, tl, pe64_to_cpup((mp)+i+4)+(kp)[i+4], \
150 MUL64(th, tl, pe64_to_cpup((mp)+i+6)+(kp)[i+6], \
161 MUL64(t
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dvmac.cpp388 #define MUL64(rh,rl,i1,i2) {word128 p = word128(i1)*(i2); rh = word64(p>>64); rl = word64(p);} macro
399 #define MUL64(rh,rl,i1,i2) asm ("mulq %3" : "=a"(rl), "=d"(rh) : "a"(i1), "g"(i2) : "cc"); macro
404 #define MUL64(rh,rl,i1,i2) (rl) = _umul128(i1,i2,&(rh)); macro
413 #define MUL64(rh,rl,i1,i2) \ macro
665 MUL64(t2h,t2l,ah,kl); \
666 MUL64(t3h,t3l,al,kh); \
667 MUL64(t1h,t1l,ah,2*kh); \
668 MUL64(ah,al,al,kl); \
767 MUL64(rh, rl, p1, p2);

Completed in 189 milliseconds