Searched refs:xBuf (Results 1 – 5 of 5) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/ |
D | GeneralDigest.java | 14 private byte[] xBuf; field in GeneralDigest 24 xBuf = new byte[4]; in GeneralDigest() 35 xBuf = new byte[t.xBuf.length]; in GeneralDigest() 42 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length); in copyIn() 51 xBuf[xBufOff++] = in; in update() 53 if (xBufOff == xBuf.length) in update() 55 processWord(xBuf, 0); in update() 81 while (len > xBuf.length) in update() 85 inOff += xBuf.length; in update() 86 len -= xBuf.length; in update() [all …]
|
D | LongDigest.java | 15 private byte[] xBuf; field in LongDigest 31 xBuf = new byte[8]; in LongDigest() 44 xBuf = new byte[t.xBuf.length]; in LongDigest() 51 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length); in copyIn() 73 xBuf[xBufOff++] = in; in update() 75 if (xBufOff == xBuf.length) in update() 77 processWord(xBuf, 0); in update() 103 while (len > xBuf.length) in update() 107 inOff += xBuf.length; in update() 108 len -= xBuf.length; in update() [all …]
|
/external/webrtc/src/modules/audio_processing/aecm/ |
D | aecm_core_neon.c | 171 "r"(&aecm->xBuf[i + PART_LEN]) : "q10"); in InverseFFTAndWindowNeon() 172 __asm__("vst1.16 {d20, d21, d22, d23}, [%0, :256]" : : "r"(&aecm->xBuf[i]): "q10"); in InverseFFTAndWindowNeon()
|
D | aecm_core.h | 164 WebRtc_Word16 *xBuf; member
|
D | aecm_core.c | 326 aecm->xBuf = (WebRtc_Word16*) (((uintptr_t)aecm->xBuf_buf + 31) & ~ 31); in WebRtcAecm_CreateCore() 472 memcpy(aecm->xBuf, aecm->xBuf + PART_LEN, sizeof(WebRtc_Word16) * PART_LEN); in InverseFFTAndWindowC() 1573 memcpy(aecm->xBuf + PART_LEN, farend, sizeof(WebRtc_Word16) * PART_LEN); in WebRtcAecm_ProcessBlock() 1587 far_q = TimeToFrequencyDomain(aecm->xBuf, in WebRtcAecm_ProcessBlock()
|