HomeSort by relevance Sort by last modified time
    Searched refs:xBuf (Results 1 - 5 of 5) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
GeneralDigest.java 13 private byte[] xBuf;
23 xBuf = new byte[4];
34 xBuf = new byte[t.xBuf.length];
35 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length);
44 xBuf[xBufOff++] = in;
46 if (xBufOff == xBuf.length)
48 processWord(xBuf, 0)
    [all...]
LongDigest.java 14 private byte[] xBuf;
30 xBuf = new byte[8];
43 xBuf = new byte[t.xBuf.length];
44 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length);
66 xBuf[xBufOff++] = in;
68 if (xBufOff == xBuf.length)
70 processWord(xBuf, 0)
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/
aecm_core_neon.c 171 "r"(&aecm->xBuf[i + PART_LEN]) : "q10");
172 __asm__("vst1.16 {d20, d21, d22, d23}, [%0, :256]" : : "r"(&aecm->xBuf[i]): "q10");
aecm_core.h 164 WebRtc_Word16 *xBuf;
aecm_core.c 326 aecm->xBuf = (WebRtc_Word16*) (((uintptr_t)aecm->xBuf_buf + 31) & ~ 31);
472 memcpy(aecm->xBuf, aecm->xBuf + PART_LEN, sizeof(WebRtc_Word16) * PART_LEN);
    [all...]

Completed in 1240 milliseconds