/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/encodings/ |
D | PKCS1Encoding.java | 46 private int pLen = -1; field in PKCS1Encoding 70 int pLen) in PKCS1Encoding() argument 74 this.pLen = pLen; in PKCS1Encoding() 91 this.pLen = fallback.length; in PKCS1Encoding() 157 if (pLen > 0 && fallback == null && random == null) in init() 262 private static int checkPkcs1Encoding(byte[] encoded, int pLen) in checkPkcs1Encoding() argument 274 pLen /* Lenght of the PMS */ in checkPkcs1Encoding() 290 correct |= encoded[encoded.length - (pLen + 1)]; in checkPkcs1Encoding() 324 random = new byte[this.pLen]; in decodeBlockOrRandom() 337 int correct = PKCS1Encoding.checkPkcs1Encoding(data, this.pLen); in decodeBlockOrRandom() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/ |
D | PKCS1Encoding.java | 44 private int pLen = -1; field in PKCS1Encoding 68 int pLen) in PKCS1Encoding() argument 72 this.pLen = pLen; in PKCS1Encoding() 89 this.pLen = fallback.length; in PKCS1Encoding() 155 if (pLen > 0 && fallback == null && random == null) in init() 260 private static int checkPkcs1Encoding(byte[] encoded, int pLen) in checkPkcs1Encoding() argument 272 pLen /* Lenght of the PMS */ in checkPkcs1Encoding() 288 correct |= encoded[encoded.length - (pLen + 1)]; in checkPkcs1Encoding() 322 random = new byte[this.pLen]; in decodeBlockOrRandom() 335 int correct = PKCS1Encoding.checkPkcs1Encoding(data, this.pLen); in decodeBlockOrRandom() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | nfsprep.c | 218 int32_t pLen=0, sLen=0, reqLen=0, in nfs4_mixed_prepare() local 236 … pLen = nfs4_prepare(prefix, prefixLen, p, pCapacity, NFS4_MIXED_PREP_PREFIX, parseError, status); in nfs4_mixed_prepare() 239 p = (char*) malloc(pLen); in nfs4_mixed_prepare() 244 pLen = nfs4_prepare(prefix, prefixLen, p, pLen, NFS4_MIXED_PREP_PREFIX, parseError, status); in nfs4_mixed_prepare() 252 s = (char*) malloc(pLen); in nfs4_mixed_prepare() 260 reqLen = pLen+sLen+1 /* for the delimiter */; in nfs4_mixed_prepare() 262 memmove(dest, p, pLen); in nfs4_mixed_prepare() 265 dest[pLen++] = PREFIX_SUFFIX_SEPARATOR; in nfs4_mixed_prepare() 266 memmove(dest+pLen, s, sLen); in nfs4_mixed_prepare()
|
D | usrchtst.c | 2609 int32_t pLen = UPRV_LENGTHOF(pattern); in TestStrengthIdentical() local 2626 search = usearch_openFromCollator (pattern, pLen, text, tLen, coll, NULL, &ec); in TestStrengthIdentical()
|
/external/epid-sdk/ext/ipp/sources/ippcp/ |
D | pcpecc_psetdp.c | 99 int pLen, const BNU_CHUNK_T* pP, in ECCPSetDP() argument 115 int primeBitSize = BITSIZE_BNU(pP, pLen); in ECCPSetDP()
|
D | pcpeccp.h | 70 int pLen, const BNU_CHUNK_T* pP,
|
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/ |
D | Ala.cpp | 2263 UINT8 Numof_lengthbytes(UINT8 *read_buf, INT32 *pLen) in Numof_lengthbytes() argument 2316 *pLen = wLen; in Numof_lengthbytes() 2317 ALOGE("%s:exit; len_bytes=0x0%x, Length=%ld", fn, len_byte, *pLen); in Numof_lengthbytes()
|
/external/epid-sdk/ext/ipp/include/ |
D | ippcp.h | 648 IPPAPI(IppStatus, ippsPrimeGet, (Ipp32u* pPrime, int* pLen, const IppsPrimeState* pCtx))
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 76169 SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){ 76173 assert( pLen!=0 ); 76175 *pLen = 0; 76190 *pLen = 0; 76193 *pLen = 1; 76197 if( u<=32767 ){ *pLen = 2; return 2; } 76198 if( u<=8388607 ){ *pLen = 3; return 3; } 76199 if( u<=2147483647 ){ *pLen = 4; return 4; } 76200 if( u<=MAX_6BYTE ){ *pLen = 6; return 5; } 76201 *pLen = 8; [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 76185 SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){ 76189 assert( pLen!=0 ); 76191 *pLen = 0; 76206 *pLen = 0; 76209 *pLen = 1; 76213 if( u<=32767 ){ *pLen = 2; return 2; } 76214 if( u<=8388607 ){ *pLen = 3; return 3; } 76215 if( u<=2147483647 ){ *pLen = 4; return 4; } 76216 if( u<=MAX_6BYTE ){ *pLen = 6; return 5; } 76217 *pLen = 8; [all …]
|