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

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/spec/
AEADParameterSpec.java 15 private final byte[] associatedData;
34 * @param associatedData associated data to be prepended to the cipher stream.
36 public AEADParameterSpec(byte[] nonce, int macSizeInBits, byte[] associatedData)
41 this.associatedData = Arrays.clone(associatedData);
61 return Arrays.clone(associatedData);
  /external/clang/lib/CodeGen/
CodeGenModule.h 252 Structor() : Priority(0), Initializer(nullptr), AssociatedData(nullptr) {}
254 llvm::Constant *AssociatedData)
256 AssociatedData(AssociatedData) {}
259 llvm::Constant *AssociatedData;
    [all...]
CodeGenModule.cpp 711 llvm::Constant *AssociatedData) {
713 GlobalCtors.push_back(Structor(Priority, Ctor, AssociatedData));
738 (I.AssociatedData
739 ? llvm::ConstantExpr::getBitCast(I.AssociatedData, VoidPtrTy)
    [all...]

Completed in 287 milliseconds