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

  /external/icu4c/test/cintltst/
nfsprep.c 216 int32_t pLen=0, sLen=0, reqLen=0,
234 pLen = nfs4_prepare(prefix, prefixLen, p, pCapacity, NFS4_MIXED_PREP_PREFIX, parseError, status);
237 p = (char*) malloc(pLen);
242 pLen = nfs4_prepare(prefix, prefixLen, p, pLen, NFS4_MIXED_PREP_PREFIX, parseError, status);
250 s = (char*) malloc(pLen);
258 reqLen = pLen+sLen+1 /* for the delimiter */;
260 memmove(dest, p, pLen);
263 dest[pLen++] = PREFIX_SUFFIX_SEPARATOR;
264 memmove(dest+pLen, s, sLen)
    [all...]
usrchtst.c     [all...]
  /dalvik/vm/
LinearAlloc.cpp 428 const u4* pLen = getBlockHeader(mem);
429 ALOGV("--- LinearRealloc(%d) old=%d", newSize, *pLen);
432 if (*pLen >= newSize) {
442 memcpy(newMem, mem, *pLen);
461 u4* pLen = getBlockHeader(mem);
462 u4 len = *pLen & LENGTHFLAG_MASK;
465 firstPage = ((u1*)pLen - (u1*)pHdr->mapAddr) / SYSTEM_PAGE_SIZE;
482 if ((*pLen & LENGTHFLAG_RW) == 0) {
486 *pLen &= ~LENGTHFLAG_RW;
517 if ((*pLen & LENGTHFLAG_RW) != 0)
    [all...]
Native.cpp 555 * Returns a newly-allocated string, and sets "*pLen" to the length.
558 const char* methodName, int* pLen)
563 *pLen = 4 + descriptorLength + strlen(methodName);
565 result = (char*)malloc(*pLen +1);
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_ETC.c 41 ssize_t getline(char **ppLine, size_t *pLen, FILE *pStream)
55 *pLen = defaultBufferSize;
58 if (*pLen < defaultBufferSize) {
64 *pLen = defaultBufferSize;
111 if (i != *pLen) {
117 *pLen = i;

Completed in 160 milliseconds