HomeSort by relevance Sort by last modified time
    Searched refs:IV (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/harfbuzz_ng/src/
hb-ot-shape-complex-use-table.cc 27 #define IV USE_IV /* BASE_VOWEL */
83 /* 0900 */ VMAbv, VMAbv, VMAbv, VMPst, IV, IV, IV, IV, IV, IV, IV, IV, IV, IV, IV, IV
    [all...]
hb-ot-shape-complex-myanmar-machine.rl 49 IV = 2;
79 consonant_syllable = k? (c|IV|D|GB).VS? (H (c|IV).VS?)* syllable_tail;
hb-ot-shape-complex-use-machine.rl 47 IV = 2; # BASE_VOWEL
99 R? (B | GB | IV) VS?
112 R? (IV) VS?
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 16 private byte[] IV;
39 this.IV = new byte[cipher.getBlockSize()];
45 * Initialise the cipher and, possibly, the initialisation vector (IV).
46 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
47 * An IV which is too short is handled in FIPS compliant fashion.
63 byte[] iv = ivParam.getIV();
65 if (iv.length < IV.length)
67 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
CFBBlockCipher.java 16 private byte[] IV;
42 this.IV = new byte[cipher.getBlockSize()];
49 * Initialise the cipher and, possibly, the initialisation vector (IV).
50 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
51 * An IV which is too short is handled in FIPS compliant fashion.
69 byte[] iv = ivParam.getIV();
71 if (iv.length < IV.length)
73 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
SICBlockCipher.java 23 private byte[] IV;
39 this.IV = new byte[blockSize];
53 this.IV = Arrays.clone(ivParam.getIV());
55 if (blockSize < IV.length)
57 throw new IllegalArgumentException("CTR/SIC mode requires IV no greater than: " + blockSize + " bytes.");
62 if (blockSize - IV.length > maxCounterSize)
64 throw new IllegalArgumentException("CTR/SIC mode requires IV of at least: " + (blockSize - maxCounterSize) + " bytes.");
67 // if null it's an IV changed only.
125 // if the IV is the same as the blocksize we assume the user knows what they are doing
126 if (IV.length < blockSize
    [all...]
CBCBlockCipher.java 15 private byte[] IV;
34 this.IV = new byte[blockSize];
50 * Initialise the cipher and, possibly, the initialisation vector (IV).
51 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
71 byte[] iv = ivParam.getIV();
73 if (iv.length != blockSize)
78 System.arraycopy(iv, 0, IV, 0, iv.length)
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
CipherInputStreamBenchmark.java 38 private static final byte[] IV = new byte[IV_SIZE];
45 IV[i] = (byte) i;
63 spec = new IvParameterSpec(IV);
CipherBenchmark.java 40 private static final byte[] IV = new byte[IV_SIZE];
47 IV[i] = (byte) i;
124 spec = new IvParameterSpec(IV);
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.c 79 int rijndael_cipherInit(cipherInstance *cipher, BYTE mode, char *IV) {
85 if (IV != NULL) {
86 bcopy(IV, cipher->IV, MAX_IV_SIZE);
88 bzero(cipher->IV, MAX_IV_SIZE);
96 word8 block[16], iv[4][4]; local
120 bcopy(cipher->IV, block, 16);
121 bcopy(input, iv, 16);
122 ((word32*)block)[0] ^= ((word32*)iv)[0];
123 ((word32*)block)[1] ^= ((word32*)iv)[1]
210 word8 block[16], *iv, *cp; local
273 word8 block[16], iv[4][4]; local
372 word32 iv[4]; local
    [all...]
rijndael-api-fst.h 44 #define MAX_IV_SIZE 16 /* # bytes needed to represent an IV */
70 u_int8_t IV[MAX_IV_SIZE]; /* A possible Initialization Vector for ciphering */
86 int rijndael_cipherInit(cipherInstance *cipher, u_int8_t mode, char *IV);
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 232 LatticeVal &IV = TrackedGlobals[GV];
234 IV.markConstant(GV->getInitializer());
309 void markConstant(LatticeVal &IV, Value *V, Constant *C) {
310 if (!IV.markConstant(C)) return;
312 if (IV.isOverdefined())
325 LatticeVal &IV = ValueState[V];
326 IV.markForcedConstant(C);
328 if (IV.isOverdefined())
338 void markOverdefined(LatticeVal &IV, Value *V) {
339 if (!IV.markOverdefined()) return
    [all...]
LoopRerollPass.cpp 79 // %iv = phi [ (preheader, ...), (body, %iv.next) ]
80 // f(%iv)
81 // %iv.1 = add %iv, 1 <-- a root increment
82 // f(%iv.1)
83 // %iv.2 = add %iv, 2 <-- a root increment
84 // f(%iv.2)
85 // %iv.scale_m_1 = add %iv, scale-1 <-- a root incremen
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 82 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex);
84 << " ivar '" << IV->getDecl()->getName() << "')";
85 SourceLocation L = IV->getLocation();
157 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S);
158 os << "Access to instance variable '" << *IV->getDecl()
160 AddDerefSource(os, Ranges, IV->getBase()->IgnoreParenCasts(),
  /device/google/contexthub/util/nanoapp_encr/
nanoapp_encr.c 79 rand_bytes(encr.IV, sizeof(encr.IV));
80 printHash(stderr, "Using IV", encr.IV, AES_BLOCK_WORDS);
129 aesCbcInitForEncr(&ctx, key, encr.IV);
197 printHash(stderr, "Using IV", encr->IV, AES_BLOCK_WORDS);
201 aesCbcInitForDecr(&ctx, key, encr->IV);
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 235 LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this);
236 if (IV != LatticeFunc->getUntrackedVal())
237 UpdateState(PN, IV);
285 LatticeVal IV = LatticeFunc->ComputeInstructionState(I, *this);
286 if (IV != LatticeFunc->getUntrackedVal())
287 UpdateState(I, IV);
  /build/kati/testcase/
override_define.mk 22 echo IV
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 61 private static final byte[] IV = new byte[] {
266 AlgorithmParameterSpec ap = new IvParameterSpec(IV);
271 assertTrue("IVs differ", Arrays.equals(cipherIV, IV));
295 AlgorithmParameterSpec ap = new IvParameterSpec(IV);
300 assertTrue("IVs differ", Arrays.equals(cipherIV, IV));
333 + ".iv");
334 IvParameterSpec iv = new IvParameterSpec(ivMaterial); local
336 c.init(Cipher.DECRYPT_MODE, k, iv);
391 + ".iv");
392 IvParameterSpec iv = new IvParameterSpec(ivMaterial) local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlprimtypes.swg 61 IV v = SvIV(obj);
126 IV v = SvIV(obj);
174 sv = newSViv((IV)(value));
201 IV v = SvIV(obj);
273 IV v = SvIV(obj);
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderOperatorTests.cpp 269 IV = VALUE_INT_VEC,
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderOperatorTests.cpp 289 IV = VALUE_INT_VEC,
    [all...]
  /external/llvm/include/llvm/ADT/
PointerIntPair.h 177 uintptr_t IV = reinterpret_cast<uintptr_t>(V.getOpaqueValue());
178 return unsigned(IV) ^ unsigned(IV >> 9);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SystemUIModes.java 54 public static class IV extends ImageView implements View.OnSystemUiVisibilityChangeListener {
57 public IV(Context context) {
60 public IV(Context context, AttributeSet attrs) {
177 IV mImage;
195 mImage = (IV) findViewById(R.id.image);
  /external/deqp/modules/gles2/functional/
es2fShaderOperatorTests.cpp 225 IV = VALUE_INT_VEC,
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 689 DwarfDebug::getExistingAbstractVariable(InlinedVariable IV,
692 Cleansed = IV.first;
699 DbgVariable *DwarfDebug::getExistingAbstractVariable(InlinedVariable IV) {
701 return getExistingAbstractVariable(IV, Cleansed);
711 void DwarfDebug::ensureAbstractVariableIsCreated(InlinedVariable IV,
714 if (getExistingAbstractVariable(IV, Cleansed))
722 InlinedVariable IV, const MDNode *ScopeNode) {
724 if (getExistingAbstractVariable(IV, Cleansed))
897 InlinedVariable IV) {
898 ensureAbstractVariableIsCreatedIfScoped(IV, Scope.getScopeNode())
    [all...]

Completed in 1395 milliseconds

1 2 3 4 5