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

  /external/openssl/crypto/rsa/
rsa_pss.c 74 const EVP_MD *Hash, const unsigned char *EM, int sLen)
86 * Negative sLen has special meanings:
87 * -1 sLen == hLen
91 if (sLen == -1) sLen = hLen;
92 else if (sLen == -2) sLen = -2;
93 else if (sLen < -2)
111 if (emLen < (hLen + sLen + 2)) /* sLen can be small negative *
    [all...]
rsa.h 382 const EVP_MD *Hash, const unsigned char *EM, int sLen);
385 const EVP_MD *Hash, int sLen);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/signers/
PSSSigner.java 30 private int sLen;
42 * @param sLen the length of the salt to use (in bytes).
47 int sLen)
49 this(cipher, digest, sLen, TRAILER_IMPLICIT);
55 int sLen,
61 this.sLen = sLen;
62 this.salt = new byte[sLen];
63 this.mDash = new byte[8 + sLen + hLen];
145 if (emBits < (8 * hLen + 8 * sLen + 9)
    [all...]
  /external/icu4c/samples/legacy/
newcol.cpp 27 int32_t getSortKey_current(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) {
33 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
oldcol.cpp 28 int32_t getSortKey_legacy(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) {
34 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
  /external/icu4c/tools/toolutil/
uparse.h 122 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status);
uparse.c 353 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status) {
357 if(sLen == -1) {
358 sLen = (int32_t)strlen(source);
361 while(read < source+sLen) {
  /external/icu4c/test/cintltst/
nfsprep.c 216 int32_t pLen=0, sLen=0, reqLen=0,
247 sLen = nfs4_prepare(suffix, suffixLen, s, sCapacity, NFS4_MIXED_PREP_SUFFIX, parseError, status);
255 sLen = nfs4_prepare(suffix, suffixLen, s, sLen, NFS4_MIXED_PREP_SUFFIX, parseError, status);
258 reqLen = pLen+sLen+1 /* for the delimiter */;
264 memmove(dest+pLen, s, sLen);
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) {
246 uiter_setString(&sIter, source, sLen);
274 uint32_t sLen = u_strlen(source);
282 uiter_setString(&sIter, source, sLen);
293 u_strToUTF8(utf8Source, 256, &utf8SourceLen, source, sLen, &status);
304 /*uiter_setString(&sIter, source, sLen);
340 partialSKResult = compareUsingPartials(myCollation, source, sLen, target, tLen, partialSizes[i], &status);
350 partialNormalizedSKResult = compareUsingPartials(myCollation, source, sLen, target, tLen, partialSizes[i], &status);
362 compareResult = ucol_strcoll(myCollation, source, sLen, target, tLen);
368 sortklen1=ucol_getSortKey(myCollation, source, sLen, NULL, 0)
    [all...]
cmsccoll.c 47 const UChar *source, const int sLen,
652 static UCollationResult ucaTest(void *collator, const int object, const UChar *source, const int sLen, const UChar *target, const int tLen) {
654 return ucol_strcoll(UCA, source, sLen, target, tLen);
658 static UCollationResult winTest(void *collator, const int object, const UChar *source, const int sLen, const UChar *target, const int tLen) {
661 return (UCollationResult)CompareString(lcid, 0, source, sLen, target, tLen);
670 const UChar *s, const uint32_t sLen,
680 return func(collator, opts, source, sLen+1, target, tLen+1);
685 const UChar *s, const uint32_t sLen,
691 source[sLen] = s1;
695 return func(collator, opts, source, sLen+1, target, tLen+1)
    [all...]
  /external/icu4c/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 103 IntlTestCollator::compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status) {
114 uiter_setString(&sIter, source, sLen);
157 int32_t sLen = source.length(), tLen = target.length();
164 uiter_setString(&sIter, src, sLen);
175 u_strToUTF8(utf8Source, 256, &utf8SourceLen, src, sLen, &status);
186 /*uiter_setString(&sIter, source, sLen);
222 partialSKResult = compareUsingPartials(myCollation, src, sLen, trg, tLen, partialSizes[i], status);
230 partialNormalizedSKResult = compareUsingPartials(myCollation, src, sLen, trg, tLen, partialSizes[i], status);
  /external/openssl/include/openssl/
rsa.h 382 const EVP_MD *Hash, const unsigned char *EM, int sLen);
385 const EVP_MD *Hash, int sLen);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
ProjectCreator.java     [all...]
  /external/icu4c/i18n/
ucol.cpp     [all...]
  /external/webkit/WebCore/platform/
KURL.cpp 263 static int findFirstOf(const UChar* s, int sLen, int startPos, const char* toFind)
265 for (int i = startPos; i < sLen; i++) {
    [all...]

Completed in 489 milliseconds