Searched refs:xBuf (Results 1 - 5 of 5) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DGeneralDigest.java14 private byte[] xBuf; field in class:GeneralDigest
24 xBuf = new byte[4];
35 xBuf = new byte[t.xBuf.length];
42 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length);
51 xBuf[xBufOff++] = in;
53 if (xBufOff == xBuf.length)
55 processWord(xBuf,
[all...]
H A DLongDigest.java15 private byte[] xBuf; field in class:LongDigest
31 xBuf = new byte[8];
44 xBuf = new byte[t.xBuf.length];
51 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length);
73 xBuf[xBufOff++] = in;
75 if (xBufOff == xBuf.length)
77 processWord(xBuf,
[all...]
/external/webrtc/src/modules/audio_processing/aecm/
H A Daecm_core_neon.c171 "r"(&aecm->xBuf[i + PART_LEN]) : "q10");
172 __asm__("vst1.16 {d20, d21, d22, d23}, [%0, :256]" : : "r"(&aecm->xBuf[i]): "q10");
H A Daecm_core.h164 WebRtc_Word16 *xBuf; member in struct:__anon28105
H A Daecm_core.c326 aecm->xBuf = (WebRtc_Word16*) (((uintptr_t)aecm->xBuf_buf + 31) & ~ 31);
472 memcpy(aecm->xBuf, aecm->xBuf + PART_LEN, sizeof(WebRtc_Word16) * PART_LEN);
1573 memcpy(aecm->xBuf + PART_LEN, farend, sizeof(WebRtc_Word16) * PART_LEN);
1587 far_q = TimeToFrequencyDomain(aecm->xBuf,

Completed in 156 milliseconds