HomeSort by relevance Sort by last modified time
    Searched full:branch (Results 1 - 25 of 2537) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/teletrust/
TeleTrusTObjectIdentifiers.java 9 static final ASN1ObjectIdentifier ripemd160 = teleTrusTAlgorithm.branch("2.1");
10 static final ASN1ObjectIdentifier ripemd128 = teleTrusTAlgorithm.branch("2.2");
11 static final ASN1ObjectIdentifier ripemd256 = teleTrusTAlgorithm.branch("2.3");
13 static final ASN1ObjectIdentifier teleTrusTRSAsignatureAlgorithm = teleTrusTAlgorithm.branch("3.1");
15 static final ASN1ObjectIdentifier rsaSignatureWithripemd160 = teleTrusTRSAsignatureAlgorithm.branch("2");
16 static final ASN1ObjectIdentifier rsaSignatureWithripemd128 = teleTrusTRSAsignatureAlgorithm.branch("3");
17 static final ASN1ObjectIdentifier rsaSignatureWithripemd256 = teleTrusTRSAsignatureAlgorithm.branch("4");
19 static final ASN1ObjectIdentifier ecSign = teleTrusTAlgorithm.branch("3.2");
21 static final ASN1ObjectIdentifier ecSignWithSha1 = ecSign.branch("1");
22 static final ASN1ObjectIdentifier ecSignWithRipemd160 = ecSign.branch("2")
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/
NISTObjectIdentifiers.java 16 static final ASN1ObjectIdentifier hashAlgs = nistAlgorithm.branch("2");
18 static final ASN1ObjectIdentifier id_sha256 = hashAlgs.branch("1");
19 static final ASN1ObjectIdentifier id_sha384 = hashAlgs.branch("2");
20 static final ASN1ObjectIdentifier id_sha512 = hashAlgs.branch("3");
21 static final ASN1ObjectIdentifier id_sha224 = hashAlgs.branch("4");
22 static final ASN1ObjectIdentifier id_sha512_224 = hashAlgs.branch("5");
23 static final ASN1ObjectIdentifier id_sha512_256 = hashAlgs.branch("6");
25 static final ASN1ObjectIdentifier aes = nistAlgorithm.branch("1");
27 static final ASN1ObjectIdentifier id_aes128_ECB = aes.branch("1");
28 static final ASN1ObjectIdentifier id_aes128_CBC = aes.branch("2")
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
SECObjectIdentifiers.java 15 static final ASN1ObjectIdentifier sect163k1 = ellipticCurve.branch("1");
16 static final ASN1ObjectIdentifier sect163r1 = ellipticCurve.branch("2");
17 static final ASN1ObjectIdentifier sect239k1 = ellipticCurve.branch("3");
18 static final ASN1ObjectIdentifier sect113r1 = ellipticCurve.branch("4");
19 static final ASN1ObjectIdentifier sect113r2 = ellipticCurve.branch("5");
20 static final ASN1ObjectIdentifier secp112r1 = ellipticCurve.branch("6");
21 static final ASN1ObjectIdentifier secp112r2 = ellipticCurve.branch("7");
22 static final ASN1ObjectIdentifier secp160r1 = ellipticCurve.branch("8");
23 static final ASN1ObjectIdentifier secp160k1 = ellipticCurve.branch("9");
24 static final ASN1ObjectIdentifier secp256k1 = ellipticCurve.branch("10")
    [all...]
  /dalvik/dx/tests/103-verify-branch-ops/
info.txt 1 This tests branch opcodes to verify that their arguments are actually of
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PKCSObjectIdentifiers.java 12 static final ASN1ObjectIdentifier rsaEncryption = pkcs_1.branch("1");
14 // static final ASN1ObjectIdentifier md2WithRSAEncryption = pkcs_1.branch("2");
15 // static final ASN1ObjectIdentifier md4WithRSAEncryption = pkcs_1.branch("3");
17 static final ASN1ObjectIdentifier md5WithRSAEncryption = pkcs_1.branch("4");
18 static final ASN1ObjectIdentifier sha1WithRSAEncryption = pkcs_1.branch("5");
19 static final ASN1ObjectIdentifier srsaOAEPEncryptionSET = pkcs_1.branch("6");
20 static final ASN1ObjectIdentifier id_RSAES_OAEP = pkcs_1.branch("7");
21 static final ASN1ObjectIdentifier id_mgf1 = pkcs_1.branch("8");
22 static final ASN1ObjectIdentifier id_pSpecified = pkcs_1.branch("9");
23 static final ASN1ObjectIdentifier id_RSASSA_PSS = pkcs_1.branch("10")
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9ObjectIdentifiers.java 14 static final ASN1ObjectIdentifier id_fieldType = ansi_X9_62.branch("1");
16 static final ASN1ObjectIdentifier prime_field = id_fieldType.branch("1");
18 static final ASN1ObjectIdentifier characteristic_two_field = id_fieldType.branch("2");
20 static final ASN1ObjectIdentifier gnBasis = characteristic_two_field.branch("3.1");
22 static final ASN1ObjectIdentifier tpBasis = characteristic_two_field.branch("3.2");
24 static final ASN1ObjectIdentifier ppBasis = characteristic_two_field.branch("3.3");
26 static final ASN1ObjectIdentifier id_ecSigType = ansi_X9_62.branch("4");
30 static final ASN1ObjectIdentifier id_publicKeyType = ansi_X9_62.branch("2");
32 static final ASN1ObjectIdentifier id_ecPublicKey = id_publicKeyType.branch("1");
34 static final ASN1ObjectIdentifier ecdsa_with_SHA2 = id_ecSigType.branch("3")
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ObjectIdentifier.java 16 ASN1ObjectIdentifier(ASN1ObjectIdentifier oid, String branch)
18 super(oid, branch);
22 * Return an OID that creates a branch under the current one.
24 * @param branchID node numbers for the new branch.
25 * @return the OID for the new created branch.
27 public ASN1ObjectIdentifier branch(String branchID) method in class:ASN1ObjectIdentifier
33 * Return true if this oid is an extension of the passed in branch, stem.
34 * @param stem the arc or branch that is a possible parent.
35 * @return true if the branch is on the passed in stem, false otherwise.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/eac/
EACObjectIdentifiers.java 16 static final ASN1ObjectIdentifier id_PK = bsi_de.branch("2.2.1");
18 static final ASN1ObjectIdentifier id_PK_DH = id_PK.branch("1");
19 static final ASN1ObjectIdentifier id_PK_ECDH = id_PK.branch("2");
24 static final ASN1ObjectIdentifier id_CA = bsi_de.branch("2.2.3");
25 static final ASN1ObjectIdentifier id_CA_DH = id_CA.branch("1");
26 static final ASN1ObjectIdentifier id_CA_DH_3DES_CBC_CBC = id_CA_DH.branch("1");
27 static final ASN1ObjectIdentifier id_CA_ECDH = id_CA.branch("2");
28 static final ASN1ObjectIdentifier id_CA_ECDH_3DES_CBC_CBC = id_CA_ECDH.branch("1");
34 static final ASN1ObjectIdentifier id_TA = bsi_de.branch("2.2.2");
36 static final ASN1ObjectIdentifier id_TA_RSA = id_TA.branch("1")
    [all...]
  /external/valgrind/main/callgrind/tests/
simwork-branch.vgtest 2 vgopts: --branch-sim=yes
simwork-both.vgtest 2 vgopts: --cache-sim=yes --branch-sim=yes
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/misc/
MiscObjectIdentifiers.java 12 static final ASN1ObjectIdentifier netscapeCertType = netscape.branch("1");
13 static final ASN1ObjectIdentifier netscapeBaseURL = netscape.branch("2");
14 static final ASN1ObjectIdentifier netscapeRevocationURL = netscape.branch("3");
15 static final ASN1ObjectIdentifier netscapeCARevocationURL = netscape.branch("4");
16 static final ASN1ObjectIdentifier netscapeRenewalURL = netscape.branch("7");
17 static final ASN1ObjectIdentifier netscapeCApolicyURL = netscape.branch("8");
18 static final ASN1ObjectIdentifier netscapeSSLServerName = netscape.branch("12");
19 static final ASN1ObjectIdentifier netscapeCertComment = netscape.branch("13");
30 static final ASN1ObjectIdentifier verisignCzagExtension = verisign.branch("6.3");
32 static final ASN1ObjectIdentifier verisignDnbDunsNumber = verisign.branch("6.15")
    [all...]
  /external/chromium/third_party/libjingle/source/
README.chrome-sandbox 1 The chrome-sandbox branch contains some experemental changes that are needed
  /external/dropbear/_MTN/
options 2 branch "au.asn.ucc.matt.dropbear"
  /external/iproute2/
README.devel 10 The master branch contains the source corresponding to the current
12 branch is a temporary branch that tracks the code intended for the
13 next release; it corresponds with networking development branch in
  /external/llvm/utils/lit/tests/
.coveragerc 3 branch = False
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
KeyPurposeId.java 31 public static final KeyPurposeId anyExtendedKeyUsage = new KeyPurposeId(Extension.extendedKeyUsage.branch("0"));
36 public static final KeyPurposeId id_kp_serverAuth = new KeyPurposeId(id_kp.branch("1"));
40 public static final KeyPurposeId id_kp_clientAuth = new KeyPurposeId(id_kp.branch("2"));
44 public static final KeyPurposeId id_kp_codeSigning = new KeyPurposeId(id_kp.branch("3"));
48 public static final KeyPurposeId id_kp_emailProtection = new KeyPurposeId(id_kp.branch("4"));
52 public static final KeyPurposeId id_kp_ipsecEndSystem = new KeyPurposeId(id_kp.branch("5"));
56 public static final KeyPurposeId id_kp_ipsecTunnel = new KeyPurposeId(id_kp.branch("6"));
60 public static final KeyPurposeId id_kp_ipsecUser = new KeyPurposeId(id_kp.branch("7"));
64 public static final KeyPurposeId id_kp_timeStamping = new KeyPurposeId(id_kp.branch("8"));
68 public static final KeyPurposeId id_kp_OCSPSigning = new KeyPurposeId(id_kp.branch("9"))
    [all...]
  /dalvik/vm/mterp/x86/
zcmp.S 1 %verify "branch taken"
2 %verify "branch not taken"
4 * Generic one-operand compare-and-branch operation. Provide a "revcmp"
13 movl $$2,%eax # assume branch not taken
OP_GOTO_16.S 4 * Unconditional branch, 16-bit offset.
6 * The branch distance is a signed code-unit offset
OP_GOTO_32.S 4 * Unconditional branch, 32-bit offset.
6 * The branch distance is a signed code-unit offset.
  /dalvik/vm/mterp/c/
OP_GOTO_32.cpp 10 ILOGV("> branch taken");
11 if (offset <= 0) /* allowed to branch to self */
  /dalvik/vm/mterp/mips/
bincmp.S 1 %verify "branch taken"
2 %verify "branch not taken"
4 * Generic two-operand compare-and-branch operation. Provide a "revcmp"
15 b${revcmp} a2, a3, 1f # branch to 1 if comparison failed
16 FETCH_S(a1, 1) # a1<- branch offset, in code units
19 li a1, 2 # a1- BYTE branch dist for not-taken
zcmp.S 1 %verify "branch taken"
2 %verify "branch not taken"
4 * Generic one-operand compare-and-branch operation. Provide a "revcmp"
13 FETCH_S(a1, 1) # a1 <- branch offset, in code units
14 b${revcmp} a2, zero, 1f # branch to 1 if comparison failed
17 li a1, 2 # a1- BYTE branch dist for not-taken
  /external/proguard/src/proguard/evaluation/
BasicBranchUnit.java 28 * This BranchUnit remembers the branch unit commands that are invoked on it.
41 * Resets the flag that tells whether any of the branch unit commands was
50 * Sets the flag that tells whether any of the branch unit commands was
59 * Returns whether any of the branch unit commands was called.
68 * Sets the initial branch targets, which will be updated as the branch
69 * methods of the branch unit are called.
84 public void branch(Clazz clazz, method in class:BasicBranchUnit
89 // Override the branch targets.
102 // Accumulate the branch targets
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
TeeOutputStream.java 32 protected OutputStream branch; field in class:TeeOutputStream
37 * @param branch the second OutputStream
39 public TeeOutputStream( OutputStream out, OutputStream branch ) {
41 this.branch = branch;
51 this.branch.write(b);
63 this.branch.write(b, off, len);
73 this.branch.write(b);
82 this.branch.flush();
91 this.branch.close();
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
host_file_system_provider.py 14 server's source code and templates) tracking trunk, or any branch.
67 def GetBranch(self, branch):
68 '''Gets a file system tracking |branch|, for example '1150' - anything other
75 assert isinstance(branch, basestring), 'Branch %s must be a string' % branch
76 assert branch != 'trunk', 'Cannot specify branch=\'trunk\', use GetTrunk()'
77 return self._Create(branch)
79 def _Create(self, branch, revision=None)
    [all...]

Completed in 2636 milliseconds

1 2 3 4 5 6 7 8 91011>>