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

1 2

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
SHA384Digest.java 3 import org.bouncycastle.crypto.util.Pack;
55 Pack.longToBigEndian(H1, out, outOff);
56 Pack.longToBigEndian(H2, out, outOff + 8);
57 Pack.longToBigEndian(H3, out, outOff + 16);
58 Pack.longToBigEndian(H4, out, outOff + 24);
59 Pack.longToBigEndian(H5, out, outOff + 32);
60 Pack.longToBigEndian(H6, out, outOff + 40);
SHA512Digest.java 3 import org.bouncycastle.crypto.util.Pack;
54 Pack.longToBigEndian(H1, out, outOff);
55 Pack.longToBigEndian(H2, out, outOff + 8);
56 Pack.longToBigEndian(H3, out, outOff + 16);
57 Pack.longToBigEndian(H4, out, outOff + 24);
58 Pack.longToBigEndian(H5, out, outOff + 32);
59 Pack.longToBigEndian(H6, out, outOff + 40);
60 Pack.longToBigEndian(H7, out, outOff + 48);
61 Pack.longToBigEndian(H8, out, outOff + 56);
SHA256Digest.java 5 import org.bouncycastle.crypto.util.Pack;
73 // X[xOff] = Pack.bigEndianToInt(in, inOff);
104 Pack.intToBigEndian(H1, out, outOff);
105 Pack.intToBigEndian(H2, out, outOff + 4);
106 Pack.intToBigEndian(H3, out, outOff + 8);
107 Pack.intToBigEndian(H4, out, outOff + 12);
108 Pack.intToBigEndian(H5, out, outOff + 16);
109 Pack.intToBigEndian(H6, out, outOff + 20);
110 Pack.intToBigEndian(H7, out, outOff + 24);
111 Pack.intToBigEndian(H8, out, outOff + 28)
    [all...]
SHA1Digest.java 3 import org.bouncycastle.crypto.util.Pack;
62 // X[xOff] = Pack.bigEndianToInt(in, inOff);
93 Pack.intToBigEndian(H1, out, outOff);
94 Pack.intToBigEndian(H2, out, outOff + 4);
95 Pack.intToBigEndian(H3, out, outOff + 8);
96 Pack.intToBigEndian(H4, out, outOff + 12);
97 Pack.intToBigEndian(H5, out, outOff + 16);
LongDigest.java 4 import org.bouncycastle.crypto.util.Pack;
166 W[wOff] = Pack.bigEndianToLong(in, inOff);
  /external/skia/include/views/
SkStackViewLayout.h 36 enum Pack {
43 Pack getPack() const { return (Pack)fPack; }
44 void setPack(Pack);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/gcm/
GCMUtil.java 3 import org.bouncycastle.crypto.util.Pack;
25 us[0] = Pack.bigEndianToInt(bs, 0);
26 us[1] = Pack.bigEndianToInt(bs, 4);
27 us[2] = Pack.bigEndianToInt(bs, 8);
28 us[3] = Pack.bigEndianToInt(bs, 12);
Tables8kGCMMultiplier.java 3 import org.bouncycastle.crypto.util.Pack;
97 Pack.intToBigEndian(z[0], x, 0);
98 Pack.intToBigEndian(z[1], x, 4);
99 Pack.intToBigEndian(z[2], x, 8);
100 Pack.intToBigEndian(z[3], x, 12);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 38 [StructLayout( LayoutKind.Sequential, Pack = 2 )]
  /external/quake/quake/src/WinQuake/
quake-hipnotic.spec.sh 23 Summary: Quake Hipnotic Mission Pack #1: Scourge of Armagon
27 The Scourge of Armagon is the highly acclaimed mission pack for id Software's
32 Looking for a way to breath some new life into Quake? Get Mission Pack #1:
95 Hard Disk Space: 40 MB for Mission Pack
quake-rogue.spec.sh 23 Summary: Quake Rogue Mission Pack #2: Dissolution of Eternity
30 and continuity. This expansion pack is most definitely not a conglomeration
  /external/skia/include/gpu/
GrGlyph.h 61 static inline PackedID Pack(uint16_t glyphID, GrFixed x, GrFixed y) {
  /external/clang/include/clang/AST/
TemplateBase.h 58 /// The template argument is a pack expansion of a template name that was
64 /// The template argument is actually a parameter pack. Arguments are stored
66 Pack
129 /// \brief Construct a template argument that is a template pack expansion.
159 /// \brief Construct a template argument that is a template argument pack.
163 TemplateArgument(const TemplateArgument *Args, unsigned NumArgs) : Kind(Pack){
175 } else if (Kind == Pack) {
204 } else if (Other.Kind == Pack) {
224 /// \brief Create a new template argument pack by copying the given set of
246 /// parameter pack
    [all...]
ExprCXX.h     [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/util/
Pack.java 3 public abstract class Pack
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 12 import org.bouncycastle.crypto.util.Pack;
413 Pack.intToBigEndian((int)(count >>> 32), bs, off);
414 Pack.intToBigEndian((int)count, bs, off + 4);
  /external/skia/src/views/
SkStackViewLayout.cpp 42 void SkStackViewLayout::setPack(Pack pack)
44 SkASSERT((unsigned)pack < kPackCount);
45 fPack = SkToU8(pack);
225 if ((index = dom.findList(node, "pack", "start,center,end")) >= 0)
226 this->setPack((Pack)index);
228 assert_no_attr(dom, node, "pack");
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 667 /// \brief Retrieve the depth and index of a parameter pack.
733 void ExpandingFunctionParameterPack(ParmVarDecl *Pack) {
734 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(Pack);
    [all...]
SemaTemplateDeduction.cpp 262 case TemplateArgument::Pack:
263 if (Y.getKind() != TemplateArgument::Pack ||
526 /// \brief Retrieve the depth and index of an unexpanded parameter pack.
555 // Save the deduced template arguments for each parameter pack expanded
556 // by this pack expansion, then clear out the deduction.
558 // Save the previously-deduced argument pack, then clear it out so that we
559 // can deduce a new argument pack.
563 // If the template arugment pack was explicitly specified, add that to
592 // pack expansion.
595 // We were not able to deduce anything for this parameter pack,
    [all...]
  /external/clang/lib/AST/
TypeLoc.cpp 302 case TemplateArgument::Pack:
StmtProfile.cpp 1172 case TemplateArgument::Pack:
1173 const TemplateArgument *Pack = Arg.pack_begin();
1175 VisitTemplateArgument(Pack[i]);
ItaniumMangle.cpp     [all...]
StmtPrinter.cpp     [all...]
  /external/clang/include/clang/Sema/
Template.h 207 /// For a parameter pack, the local instantiation scope may contain a
227 /// \brief If non-NULL, the template parameter pack that has been
232 /// explicitly-specified template arguments in that pack.
320 /// \returns A pointer to the declaration or argument pack of declarations
330 /// \brief Note that the given parameter pack has been partially substituted
334 /// \param Pack The parameter pack, which will always be a template
335 /// parameter pack.
338 /// for this parameter pack.
341 /// arguments provided for this parameter pack
    [all...]
  /build/core/tasks/
cts.mk 163 # Pack cts.bat into the same zip file as well. See http://buganizer/issue?id=1656821 for more details

Completed in 383 milliseconds

1 2