Searched refs:pLen (Results 1 – 6 of 6) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/ |
D | PKCS1Encoding.java | 43 private int pLen = -1; field in PKCS1Encoding 67 int pLen) in PKCS1Encoding() argument 71 this.pLen = pLen; in PKCS1Encoding() 88 this.pLen = fallback.length; in PKCS1Encoding() 154 if (pLen > 0 && fallback == null && random == null) in init() 259 private static int checkPkcs1Encoding(byte[] encoded, int pLen) in checkPkcs1Encoding() argument 271 pLen /* Lenght of the PMS */ in checkPkcs1Encoding() 287 correct |= encoded[encoded.length - (pLen + 1)]; in checkPkcs1Encoding() 321 random = new byte[this.pLen]; in decodeBlockOrRandom() 334 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/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/sqlite/dist/orig/ |
D | sqlite3.c | 74773 SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){ 74777 assert( pLen!=0 ); 74779 *pLen = 0; 74794 *pLen = 0; 74797 *pLen = 1; 74801 if( u<=32767 ){ *pLen = 2; return 2; } 74802 if( u<=8388607 ){ *pLen = 3; return 3; } 74803 if( u<=2147483647 ){ *pLen = 4; return 4; } 74804 if( u<=MAX_6BYTE ){ *pLen = 6; return 5; } 74805 *pLen = 8; [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 74773 SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){ 74777 assert( pLen!=0 ); 74779 *pLen = 0; 74794 *pLen = 0; 74797 *pLen = 1; 74801 if( u<=32767 ){ *pLen = 2; return 2; } 74802 if( u<=8388607 ){ *pLen = 3; return 3; } 74803 if( u<=2147483647 ){ *pLen = 4; return 4; } 74804 if( u<=MAX_6BYTE ){ *pLen = 6; return 5; } 74805 *pLen = 8; [all …]
|