Searched refs:size_p (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/stand/libsa/
H A Dufs.c305 buf_write_file(f, buf_p, size_p)
308 size_t *size_p; /* out */
337 if (*size_p > DIP(fp, di_size) - fp->f_seekp)
338 *size_p = DIP(fp, di_size) - fp->f_seekp;
339 if (*size_p > block_size - off)
340 *size_p = block_size - off;
346 if (((off > 0) || (*size_p + off < block_size)) &&
365 bcopy(buf_p, fp->f_buf + off, *size_p);
383 buf_read_file(f, buf_p, size_p)
386 size_t *size_p; /* ou
[all...]
H A Dcd9660.c65 size_t *size_p);
460 buf_read_file(struct open_file *f, char **buf_p, size_t *size_p) argument
487 *size_p = ISO_DEFAULT_BLOCK_SIZE - blkoff;
489 if (*size_p > fp->f_size - fp->f_off)
490 *size_p = fp->f_size - fp->f_off;
H A Dext2fs.c325 size_t *size_p);
700 buf_read_file(struct open_file *f, char **buf_p, size_t *size_p) argument
742 *size_p = block_size - off;
747 if (*size_p > fp->f_di.di_size - fp->f_seekp)
748 *size_p = fp->f_di.di_size - fp->f_seekp;
H A Dnandfs.c570 nandfs_buf_read(struct nandfs *fs, void **buf_p, size_t *size_p) argument
589 *size_p = fs->nf_blocksize - blkoff;
591 NANDFS_DEBUG("nandfs_buf_read buf_p=%p size_p=%d\n", *buf_p, *size_p);
593 if (*size_p > fs->nf_opened_node->inode->i_size - fs->nf_offset)
594 *size_p = fs->nf_opened_node->inode->i_size - fs->nf_offset;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Dreps-strings.h79 svn_error_t *svn_fs_base__rep_contents_size(svn_filesize_t *size_p,
H A Dreps-strings.c727 svn_fs_base__rep_contents_size(svn_filesize_t *size_p,
740 SVN_ERR(svn_fs_bdb__string_size(size_p, fs,
757 *size_p = last_chunk->offset + last_chunk->size;
721 svn_fs_base__rep_contents_size(svn_filesize_t *size_p, svn_fs_t *fs, const char *rep_key, trail_t *trail, apr_pool_t *pool) argument
/freebsd-11-stable/sys/vm/
H A Dmemguard.c288 u_long size_p, size_v; local
291 size_p = round_page(req_size);
292 if (size_p == 0)
301 size_v = size_p;
349 rv = kmem_back(kmem_object, addr, size_p, flags);
/freebsd-11-stable/tools/bus_space/
H A Dbusdma.c523 bd_seg_get_size(int sid, u_long *size_p) argument
527 if (size_p == NULL)
534 *size_p = seg->u.seg.size;
/freebsd-11-stable/contrib/binutils/bfd/
H A Delfxx-ia64.c2428 unsigned int *count_p, *sorted_count_p, *size_p;
2441 size_p = &global_h->size;
2457 size_p = &loc_h->size;
2462 size = *size_p;
2514 *size_p = size;
2548 *size_p = count;
2422 unsigned int *count_p, *sorted_count_p, *size_p; local
/freebsd-11-stable/contrib/subversion/subversion/libsvn_diff/
H A Ddiff_file.c171 char **buffer, apr_size_t *size_p,
225 *size_p = size;
169 map_or_read_file(apr_file_t **file, MMAP_T_PARAM(mm) char **buffer, apr_size_t *size_p, const char *path, apr_pool_t *pool) argument

Completed in 348 milliseconds