Home
last modified time | relevance | path

Searched refs:word64_t (Results 1 – 18 of 18) sorted by relevance

/dports/audio/bcg729/bcg729-faaa895862165acde6df8add722ba4f85a25007d/src/
H A DfixedPointMacros.h45 #define SSHL64(a,shift) ((a < 0)?(NEG64((word64_t)(NEG64(a)) << (shift))):((word64_t)(a) << (shift)…
121 #define ADD64(a,b) ((word64_t)(a)+(word64_t)(b))
122 #define SUB64(a,b) ((word64_t)(a)-(word32_t)(b))
123 #define ADD64_32(a,b) ((word64_t)(a)+(word32_t)(b))
124 #define MULT32_32(a,b) ((word64_t)((word64_t)(a)*((word64_t)(b))))
125 #define DIV64(a,b) ((word64_t)(a)/(word64_t)(b))
126 #define MAC64(c,a,b) ((word64_t)c+(word64_t)((word64_t)a*(word64_t)b))
129 #define DIV32_32_Q24(a,b) (((word64_t)(a)<<24)/((word32_t)(b)))
130 #define DIV32_32_Q27(a,b) ((SSHL64((word64_t)(a),27))/((word32_t)(b)))
133 #define MULT32_32_Q23(a,b) ((word32_t)(SHR64(((word64_t)a*(word64_t)b),23)))
[all …]
H A DgainQuantization.c54 …d16_t convolvedFixedCodebookVector[], word16_t fixedCodebookVector[], word64_t xy64, word64_t yy64, in gainQuantization()
58 word64_t xz64=0, yz64=0, zz64=0; in gainQuantization()
67 word64_t denominator; in gainQuantization()
72 word64_t distanceMin = MAXINT64; in gainQuantization()
139 word64_t numerator = MAC64(MULT32_32(zz, xy), -xz, yz); /* in Q24 */ in gainQuantization()
147 word64_t shiftedDenominator = SHR64(denominator, 9-numeratorNorm); in gainQuantization()
164word64_t shiftedDenominator = SHR64(denominator, 14-numeratorNorm); /* bestFixedCodebookGain in Q1… in gainQuantization()
205word64_t acc = MULT32_32(MULT16_16(gp, gp), yy); /* acc = gp^2*yy gp in Q14, yy in Q0 -> acc in Q… in gainQuantization()
H A DcomputeAdaptativeCodebookGain.h34 …etSignal[], word16_t filteredAdaptativeCodebookVector[], word64_t *gainQuantizationXy, word64_t *g…
H A DgainQuantization.h39 …d16_t convolvedFixedCodebookVector[], word16_t fixedCodebookVector[], word64_t Xy64, word64_t Yy64,
H A DcomputeAdaptativeCodebookGain.c39 …etSignal[], word16_t filteredAdaptativeCodebookVector[], word64_t *gainQuantizationXy, word64_t *g… in computeAdaptativeCodebookGain()
H A Dtypedef.h36 typedef int64_t word64_t; typedef
87 word64_t lastFrameEnergy; /* in Q0 */
H A Ddtx.c44 word64_t autoCorrelationSumBuffer[NB_LSP_COEFF+1]; /* used to temporary store sum on 64 bits */ in sumAutocorrelationCoefficients()
45 word64_t max=0; in sumAutocorrelationCoefficients()
184 word64_t acc = 0; in compareLPCFilters()
H A Dcng.c78 word64_t delta; in computeComfortNoiseExcitationVector()
168 delta = ADD64(MULT32_32(Ei,Ei), SHR(SUB64(K,SHL64((word64_t)Ea,3)),1)); in computeComfortNoiseExcitationVector()
H A DcomputeLP.c136 word64_t acc64=0; /* acc on 64 bits */ in computeLP()
H A DfindOpenLoopPitchDelay.c49 word64_t autocorrelation = 0; in findOpenLoopPitchDelay()
H A Dencoder.c299word64_t gainQuantizationXy, gainQuantizationYy; /* used to store in Q0 values reused in gain quan… in bcg729Encoder()
/dports/audio/xmcd/xmcd-3.3.2/common_d/
H A Dutil.h245 extern word64_t util_bswap64(word64_t);
249 extern word64_t util_lswap64(word64_t);
253 extern word64_t util_assign64(sword32_t);
254 extern word32_t util_assign32(word64_t);
H A Dappenv.h322 typedef unsigned long long word64_t; /* 64-bit unsigned */ typedef
325 typedef unsigned long word64_t; /* 64-bit unsigned */ typedef
330 typedef unsigned long long word64_t; /* 64-bit unsigned */ typedef
334 typedef struct { word32_t v[2]; } word64_t; /* 64-bit unsigned */ typedef
344 #define ASSIGN64(x) ((word64_t) (x))
H A Dutil.c3373 word64_t
3374 util_bswap64(word64_t x) in util_bswap64()
3377 word64_t ret; in util_bswap64()
3502 word64_t
3503 util_lswap64(word64_t x) in util_lswap64()
3508 word64_t ret; in util_lswap64()
3594 word64_t
3597 word64_t ret; in util_assign64()
3620 util_assign32(word64_t val) in util_assign32()
/dports/audio/bcg729/bcg729-faaa895862165acde6df8add722ba4f85a25007d/test/src/
H A DcomputeAdaptativeCodebookGainTest.c58word64_t gainQuantizationXy, gainQuantizationYy; /* used to store in Q0 values reused in gain quan… in main()
H A DgainQuantizationTest.c66 word64_t xy, yy; /* Q0 */ in main()
/dports/audio/xmcd/xmcd-3.3.2/cdda_d/
H A Dif_flac.c52 typedef word64_t FLAC__uint64;
H A Dsysvipc.c110 return semctl(semid, semnun, cmd, (word64_t) arg.val << 32);