Searched refs:ncopy (Results 1 – 8 of 8) sorted by relevance
/external/mksh/src/ |
D | shf.c | 452 ssize_t ncopy, orig_bsize = bsize; in shf_read() local 464 ncopy = shf->rnleft; in shf_read() 465 if (ncopy > bsize) in shf_read() 466 ncopy = bsize; in shf_read() 467 memcpy(buf, shf->rp, ncopy); in shf_read() 468 buf += ncopy; in shf_read() 469 bsize -= ncopy; in shf_read() 470 shf->rp += ncopy; in shf_read() 471 shf->rnleft -= ncopy; in shf_read() 488 ssize_t ncopy; in shf_getse() local [all …]
|
/external/wpa_supplicant_8/src/wps/ |
D | httpread.c | 530 int ncopy; in httpread_read_handler() local 608 ncopy = (h->chunk_start + h->chunk_size + 2) - in httpread_read_handler() 617 ncopy = h->content_length - h->body_nbytes; in httpread_read_handler() 619 ncopy = nread; in httpread_read_handler() 622 if (ncopy < 0) { in httpread_read_handler() 624 "httpread: Invalid ncopy=%d", ncopy); in httpread_read_handler() 627 if (ncopy > nread) in httpread_read_handler() 628 ncopy = nread; in httpread_read_handler() 629 os_memcpy(bbp, rbp, ncopy); in httpread_read_handler() 630 bbp += ncopy; in httpread_read_handler() [all …]
|
/external/curl/lib/ |
D | http2.c | 216 size_t left, ncopy; in on_frame_recv() local 278 ncopy = MIN(stream->len, left); in on_frame_recv() 282 ncopy); in on_frame_recv() 283 stream->nread_header_recvbuf += ncopy; in on_frame_recv() 286 ncopy, stream_id, stream->mem)); in on_frame_recv() 288 stream->len -= ncopy; in on_frame_recv() 289 stream->memlen += ncopy; in on_frame_recv() 834 size_t ncopy = MIN(len, left); in http2_recv() local 836 ncopy); in http2_recv() 837 stream->nread_header_recvbuf += ncopy; in http2_recv() [all …]
|
/external/eigen/unsupported/Eigen/ |
D | FFT | 319 size_t ncopy = (std::min)(src.size(),src.size() + resize_input); 323 tmp.head(ncopy) = src.head(ncopy); 324 tmp(ncopy-1) = real(tmp(ncopy-1)); // enforce real-only Nyquist bin 327 nhead = 1+ncopy/2-1; // range [0:pi) 328 ntail = ncopy/2-1; // range (-pi:0)
|
/external/elfutils/src/ |
D | ld.h | 890 size_t ncopy; member
|
D | i386_ld.c | 599 ++statep->ncopy; in elf_i386_count_relocations()
|
D | elflint.c | 2772 size_t ncopy = MIN (len - 1, strlen (known_flags[cnt].name)); in section_flags_string() local 2773 cp = mempcpy (cp, known_flags[cnt].name, ncopy); in section_flags_string() 2774 len -= ncopy; in section_flags_string()
|
D | ldgeneric.c | 3010 if (ld_state.ncopy > 0 || ld_state.common_syms != NULL) in sort_sections_lscript() 3040 if (ld_state.ncopy > 0) in sort_sections_lscript()
|