HomeSort by relevance Sort by last modified time
    Searched defs:getBlockSize (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
BlockCipher.java 33 public int getBlockSize();
BufferedBlockCipher.java 40 buf = new byte[cipher.getBlockSize()];
97 public int getBlockSize()
99 return cipher.getBlockSize();
120 leftOver = total % buf.length - (cipher.getBlockSize() + 2);
204 int blockSize = getBlockSize();
  /cts/tests/tests/keystore/src/android/keystore/cts/
AESCBCCipherTestBase.java 43 protected int getBlockSize() {
AESCTRCipherTestBase.java 43 protected int getBlockSize() {
AESECBCipherTestBase.java 41 protected int getBlockSize() {
59 assertInitRejectsIvParameterSpec(new byte[getBlockSize()]);
AESGCMCipherTestBase.java 50 protected int getBlockSize() {
DESedeCipherTestBase.java 11 protected int getBlockSize() {
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
BlockCipher.java 35 public int getBlockSize();
BufferedBlockCipher.java 42 buf = new byte[cipher.getBlockSize()];
99 public int getBlockSize()
101 return cipher.getBlockSize();
122 leftOver = total % buf.length - (cipher.getBlockSize() + 2);
206 int blockSize = getBlockSize();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 80 public int getBlockSize()
RC2Engine.java 155 public int getBlockSize()
DESEngine.java 60 public int getBlockSize()
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/engines/
DESedeEngine.java 82 public int getBlockSize()
RC2Engine.java 157 public int getBlockSize()
  /external/llvm/lib/Transforms/Instrumentation/
MaximumSpanningTree.h 41 static bool getBlockSize(const T *X) {
51 size_t XSizeA = getBlockSize(X.first.first);
52 size_t YSizeA = getBlockSize(Y.first.first);
56 size_t XSizeB = getBlockSize(X.first.second);
57 size_t YSizeB = getBlockSize(Y.first.second);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 75 uint32_t getBlockSize() const { return BlockSize; }
145 uint32_t getBlockSize() const { return ReadInterface.getBlockSize(); }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
MaximumSpanningTree.h 41 static bool getBlockSize(const T *X) {
51 size_t XSizeA = getBlockSize(X.first.first);
52 size_t YSizeA = getBlockSize(Y.first.first);
56 size_t XSizeB = getBlockSize(X.first.second);
57 size_t YSizeB = getBlockSize(Y.first.second);
  /cts/tests/tests/os/src/android/os/cts/
StatFsTest.java 29 assertTrue(stat.getBlockSize() > 0);
46 assertTrue(stat.getBlockSize() > 0);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 39 this.IV = new byte[cipher.getBlockSize()];
40 this.ofbV = new byte[cipher.getBlockSize()];
41 this.ofbOutV = new byte[cipher.getBlockSize()];
116 public int getBlockSize()
CBCBlockCipher.java 32 this.blockSize = cipher.getBlockSize();
123 public int getBlockSize()
125 return cipher.getBlockSize();
CFBBlockCipher.java 42 this.IV = new byte[cipher.getBlockSize()];
43 this.cfbV = new byte[cipher.getBlockSize()];
44 this.cfbOutV = new byte[cipher.getBlockSize()];
169 public int getBlockSize()
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/
CBCBlockCipher.java 34 this.blockSize = cipher.getBlockSize();
125 public int getBlockSize()
127 return cipher.getBlockSize();
CFBBlockCipher.java 44 this.IV = new byte[cipher.getBlockSize()];
45 this.cfbV = new byte[cipher.getBlockSize()];
46 this.cfbOutV = new byte[cipher.getBlockSize()];
171 public int getBlockSize()
OFBBlockCipher.java 41 this.IV = new byte[cipher.getBlockSize()];
42 this.ofbV = new byte[cipher.getBlockSize()];
43 this.ofbOutV = new byte[cipher.getBlockSize()];
118 public int getBlockSize()
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowStatFs.java 32 protected int getBlockSize() {

Completed in 958 milliseconds

1 2 3