HomeSort by: relevance | last modified time | path
    Searched refs:old_len (Results 1 - 8 of 8) sorted by relevancy

  /src/usr.bin/make/
buf.h 103 size_t old_len = buf->len++; local in function:Buf_AddByte
105 if (old_len + 1 >= buf->cap)
107 end = buf->data + old_len;
buf.c 92 size_t old_len = buf->len; local in function:Buf_AddBytes
95 if (old_len + bytes_len >= buf->cap) {
101 end = buf->data + old_len;
102 buf->len = old_len + bytes_len;
  /src/tests/rump/modautoload/
t_modautoload.c 37 size_t old_len, new_len; local in function:mountkernfs
49 old_len = sizeof(old_autoload);
52 &old_autoload, &old_len,
  /src/sys/ufs/ext2fs/
ext2fs_xattr.c 77 size_t value_offs, value_len, len, old_len; local in function:ext2fs_find_xattr
114 old_len = uio->uio_resid;
117 uio->uio_resid = old_len - (len - uio->uio_resid);
  /src/sys/ufs/lfs/
ulfs_extattr.c 1082 size_t len, old_len; local in function:ulfs_extattr_get
1130 old_len = uio->uio_resid;
1138 uio->uio_resid = old_len - (len - uio->uio_resid);
  /src/sys/ufs/ufs/
ufs_extattr.c 1071 size_t len, old_len; local in function:ufs_extattr_get
1119 old_len = uio->uio_resid;
1127 uio->uio_resid = old_len - (len - uio->uio_resid);
  /src/lib/libform/
internals.c 708 int old_len, count; local in function:_formi_join_line
743 old_len = row->length;
758 field->row_xpos += old_len;
813 old_len = saved->length;
827 field->row_xpos += old_len;
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
linux_syscall_hooks.h 616 #define __sanitizer_syscall_pre_mremap(addr, old_len, new_len, flags, \
618 __sanitizer_syscall_pre_impl_mremap((long)(addr), (long)(old_len), \
621 #define __sanitizer_syscall_post_mremap(res, addr, old_len, new_len, flags, \
623 __sanitizer_syscall_post_impl_mremap(res, (long)(addr), (long)(old_len), \
2354 void __sanitizer_syscall_pre_impl_mremap(long addr, long old_len, long new_len,
2356 void __sanitizer_syscall_post_impl_mremap(long res, long addr, long old_len,

Completed in 20 milliseconds