Home
last modified time | relevance | path

Searched refs:pLen (Results 1 – 4 of 4) sorted by relevance

/third_party/icu/icu4c/source/test/cintltst/
Dnfsprep.c218 int32_t pLen=0, sLen=0, reqLen=0, in nfs4_mixed_prepare() local
236pLen = 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()
Dusrchtst.c2622 int32_t pLen = UPRV_LENGTHOF(pattern); in TestStrengthIdentical() local
2639 search = usearch_openFromCollator (pattern, pLen, text, tLen, coll, NULL, &ec); in TestStrengthIdentical()
/third_party/openh264/test/build/ios/codec_unittest/codec_unittest/
Dmain.m16 int DoTest(char *pPath, unsigned long *pLen)
18 if (!pLen) return 1;
19 unsigned long uPathLen = *pLen;
/third_party/sqlite/src/
Dsqlite3.c86055 SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){
86059 assert( pLen!=0 );
86061 *pLen = 0;
86078 *pLen = 0;
86081 *pLen = 1;
86085 if( u<=32767 ){ *pLen = 2; return 2; }
86086 if( u<=8388607 ){ *pLen = 3; return 3; }
86087 if( u<=2147483647 ){ *pLen = 4; return 4; }
86088 if( u<=MAX_6BYTE ){ *pLen = 6; return 5; }
86089 *pLen = 8;
[all …]