HomeSort by relevance Sort by last modified time
    Searched refs:tLen (Results 1 - 17 of 17) sorted by null

  /external/conscrypt/src/main/java/org/conscrypt/
GCMParameters.java 26 public final int tLen;
31 public GCMParameters(int tLen, byte[] iv) {
32 this.tLen = tLen;
40 return tLen;
  /libcore/ojluni/src/main/java/javax/crypto/spec/
GCMParameterSpec.java 39 * <li>{@code tLen}: length (in bits) of authentication tag T</li>
54 * The GCM specification states that {@code tLen} may only have the
70 private int tLen;
76 * @param tLen the authentication tag length (in bits)
80 * @throws IllegalArgumentException if {@code tLen} is negative,
83 public GCMParameterSpec(int tLen, byte[] src) {
88 init(tLen, src, 0, src.length);
96 * @param tLen the authentication tag length (in bits)
102 * @throws IllegalArgumentException if {@code tLen} is negative,
107 public GCMParameterSpec(int tLen, byte[] src, int offset, int len)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
GcmSpecUtil.java 56 Method tLen = gcmSpecClass.getDeclaredMethod("getTLen", new Class[0]);
59 return new GCMParameters((byte[])iv.invoke(paramSpec, new Object[0]), ((Integer)tLen.invoke(paramSpec, new Object[0])).intValue() / 8);
  /external/icu/icu4c/source/test/intltest/
tscoll.h 52 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
tscoll.cpp 92 IntlTestCollator::compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status) {
104 uiter_setString(&tIter, target, tLen);
146 int32_t sLen = source.length(), tLen = target.length();
154 uiter_setString(&tIter, trg, tLen);
168 u_strToUTF8(utf8Target, 256, &utf8TargetLen, trg, tLen, &status);
176 uiter_setString(&tIter, target, tLen);*/
211 partialSKResult = compareUsingPartials(myCollation, src, sLen, trg, tLen, partialSizes[i], status);
219 partialNormalizedSKResult = compareUsingPartials(myCollation, src, sLen, trg, tLen, partialSizes[i], status);
  /external/icu/icu4c/source/test/cintltst/
cmsccoll.c 50 const UChar *target, const int tLen);
1698 uint32_t tlen = u_unescape(testString, test, 32); local
    [all...]
callcoll.c 230 static UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode *status) {
247 uiter_setString(&tIter, target, tLen);
275 uint32_t tLen = u_strlen(target);
283 compareResult = ucol_strcoll(myCollation, source, sLen, target, tLen);
295 uiter_setString(&tIter, target, tLen);
310 u_strToUTF8(utf8Target, 256, &utf8TargetLen, target, tLen, &status);
375 partialSKResult = compareUsingPartials(myCollation, source, sLen, target, tLen, partialSizes[i], &status);
385 partialNormalizedSKResult = compareUsingPartials(myCollation, source, sLen, target, tLen, partialSizes[i], &status);
397 sortklen2=ucol_getSortKey(myCollation, target, tLen, NULL, 0);
410 ucol_getSortKey(myCollation, target, tLen, sortKey2, sortklen2+1)
    [all...]
usrchtst.c     [all...]
  /hardware/ti/omap4-aah/test/CameraHal/
camera_test_script.cpp 209 int tLen = 0;
282 tLen = strlen(cycle_cmd);
283 temp_cmd = new char[tLen+1];
308 ctx += tLen + 1;
    [all...]
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_script.cpp 107 int tLen = 0;
174 tLen = strlen(cycle_cmd);
175 temp_cmd = new char[tLen+1];
200 ctx += tLen + 1;
    [all...]
  /external/conscrypt/src/compat/java/org/conscrypt/
Platform.java 392 int tLen;
397 tLen = (int) getTLenMethod.invoke(params);
400 return new GCMParameters(tLen, iv);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseBlockCipher.java 804 Method tLen = gcmSpecClass.getDeclaredMethod("getTLen", new Class[0]);
816 param = aeadParams = new AEADParameters(keyParam, ((Integer)tLen.invoke(params, new Object[0])).intValue(), (byte[])iv.invoke(params, new Object[0]));
    [all...]
  /external/icu/icu4c/source/tools/genrb/
wrtxml.cpp 804 int32_t tLen = ( outDir == NULL) ? 0 :(int32_t)uprv_strlen(outDir);
805 char* fn = (char*) uprv_malloc(sizeof(char) * (tLen+1024 +
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/sdk/24/
android.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 808 milliseconds