/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
getdents_helper.cc | 56 size_t copylen = std::min(d_name_max, namelen); local 57 strncpy(&entry.d_name[0], name, copylen); 58 entry.d_name[copylen] = 0;
|
/external/chromium_org/chrome/installer/mac/third_party/bsdiff/ |
goobspatch.c | 165 size_t copylen; local 221 copylen = xzf->read_out_len; 222 if (copylen > len) 223 copylen = len; 224 memcpy(buf, xzf->read_out, copylen); 225 nread += copylen; 226 buf += copylen; 227 len -= copylen; 228 xzf->read_out += copylen; 229 xzf->read_out_len -= copylen; [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
SuballocatedIntVector.java | 287 int copylen=m_blocksize-offset-1; local 297 System.arraycopy(block, offset , block, offset+1, copylen); 356 int copylen=m_blocksize-offset-1; local 361 System.arraycopy(block, offset+1, block, offset, copylen);
|
/external/chromium_org/third_party/boringssl/src/crypto/asn1/ |
bio_asn1.c | 98 int copylen; member in struct:BIO_ASN1_BUF_CTX_t 172 ctx->copylen = 0; 241 ctx->copylen = inl; 265 if (inl > ctx->copylen) 266 wrmax = ctx->copylen; 273 ctx->copylen -= ret; 277 if (ctx->copylen == 0)
|
/external/openssl/crypto/asn1/ |
bio_asn1.c | 101 int copylen; member in struct:BIO_ASN1_BUF_CTX_t 175 ctx->copylen = 0; 244 ctx->copylen = inl; 268 if (inl > ctx->copylen) 269 wrmax = ctx->copylen; 276 ctx->copylen -= ret; 280 if (ctx->copylen == 0)
|
/external/elfutils/0.153/libebl/ |
eblgstrtab.c | 353 size_t copylen; local 376 copylen = nulllen; 377 copystrings (st->root, &endp, ©len); 378 assert (copylen == st->total * st->width + nulllen);
|
eblwstrtab.c | 347 size_t copylen; local 370 copylen = sizeof (wchar_t) * nulllen; 371 copystrings (st->root, &endp, ©len); 372 assert (copylen == (st->total + nulllen) * sizeof (wchar_t));
|
eblstrtab.c | 359 size_t copylen = nulllen; local 361 copystrings (st->root, &endp, ©len); 362 assert (copylen == st->total + nulllen);
|
/external/jemalloc/src/ |
ctl.c | 969 size_t copylen = (sizeof(t) <= *oldlenp) \ 971 memcpy(oldp, (void *)&(v), copylen); \ [all...] |