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

  /libcore/ojluni/src/main/java/javax/crypto/
CipherOutputStream.java 75 private byte[] obuffer; field in class:CipherOutputStream
118 obuffer = cipher.update(ibuffer, 0, 1);
119 if (obuffer != null) {
120 output.write(obuffer);
121 obuffer = null;
155 obuffer = cipher.update(b, off, len);
156 if (obuffer != null) {
157 output.write(obuffer);
158 obuffer = null;
177 if (obuffer != null)
    [all...]
CipherInputStream.java 84 private byte[] obuffer; field in class:CipherInputStream
107 obuffer = cipher.doFinal();
109 catch (IllegalBlockSizeException e) {obuffer = null;}
110 catch (BadPaddingException e) {obuffer = null;}
111 if (obuffer == null)
115 ofinish = obuffer.length;
120 obuffer = cipher.update(ibuffer, 0, readin);
121 } catch (IllegalStateException e) {obuffer = null;};
123 if (obuffer == null)
125 else ofinish = obuffer.length
    [all...]
  /external/webrtc/talk/session/media/
yuvscaler_unittest.cc 106 scoped_ptr<uint8_t[]> obuffer(
112 uint8_t* obuf = ALIGNP(obuffer.get(), kAlignment) + memoffset;
213 scoped_ptr<uint8_t[]> obuffer(new uint8_t[I420_SIZE(ow, oh) + kAlignment]);
216 uint8_t* obuf = ALIGNP(obuffer.get(), kAlignment);

Completed in 993 milliseconds