Searched refs:list_size (Results 1 - 13 of 13) sorted by relevance

/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dlist_impl.h44 size_t list_size; member in struct:list
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_read_disk_entry_from_file.c377 ssize_t list_size; local
385 list_size = llistxattr(path, NULL, 0);
387 list_size = listxattr(path, NULL, 0);
389 if (list_size == -1) {
397 if (list_size == 0)
400 if ((list = malloc(list_size)) == NULL) {
406 list_size = llistxattr(path, list, list_size);
408 list_size = listxattr(path, list, list_size);
497 ssize_t list_size; local
[all...]
/freebsd-9.3-release/contrib/ofed/libibverbs/src/
H A Dinit.c485 int *list_size)
489 if (*list_size <= *num_devices) {
490 *list_size = *list_size ? *list_size * 2 : 1;
491 new_list = realloc(*dev_list, *list_size * sizeof (struct ibv_device *));
506 int list_size = 0; local
537 add_device(device, list, &num_devices, &list_size);
574 add_device(device, list, &num_devices, &list_size);
482 add_device(struct ibv_device *dev, struct ibv_device ***dev_list, int *num_devices, int *list_size) argument
/freebsd-9.3-release/sys/dev/vxge/vxgehal/
H A Dvxgehal-fifo.h205 u32 list_size,
H A Dvxgehal-fifo.c1720 * @list_size: List size
1729 u32 list_size,
1734 u32 invalid_frags = frags % list_size;
1747 "list_size = %d, frags = %d", (ptr_t) fifo, (ptr_t) txdp,
1748 list_size, frags);
1754 (ptr_t) txdp, frags, list_size);
1760 (ptr_t) txdp, frags, list_size);
1769 frags -= list_size;
1776 frags, list_size);
1726 __hal_fifo_txdl_free_many( __hal_fifo_t *fifo, vxge_hal_fifo_txd_t * txdp, u32 list_size, u32 frags) argument
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/os/
H A Dlist.c70 list->list_size = size;
200 ASSERT(dst->list_size == src->list_size);
/freebsd-9.3-release/usr.sbin/mfiutil/
H A Dmfi_drive.c254 uint32_t list_size; local
261 list_size = 1024;
263 list = reallocf(list, list_size);
266 if (mfi_dcmd_command(fd, MFI_DCMD_PD_GET_LIST, list, list_size, NULL,
272 if (list->size > list_size) {
273 list_size = list->size;
/freebsd-9.3-release/contrib/ee/
H A Dee.c318 void paint_menu P_((struct menu_entries menu_list[], int max_width, int max_height, int list_size, int top_offset, WINDOW *menu_win, int off_start, int vert_size));
3350 int list_size; local
3361 list_size = 1;
3362 while (menu_list[list_size + 1].item_string != NULL)
3363 list_size++;
3365 for (counter = 0; counter <= list_size; counter++)
3392 if (list_size > LINES)
3402 vert_size = list_size;
3403 max_height = list_size;
3419 paint_menu(menu_list, max_width, max_height, list_size, top_offse
[all...]
/freebsd-9.3-release/sys/dev/nxge/xgehal/
H A Dxgehal-fifo-fp.c135 xge_hal_fifo_txd_t *txdp, int list_size, int frags)
139 int invalid_frags = frags % list_size;
143 txdp, frags, list_size);
149 txdp, frags, list_size);
157 frags -= list_size;
165 frags, list_size);
134 __hal_fifo_txdl_free_many(xge_hal_channel_h channelh, xge_hal_fifo_txd_t *txdp, int list_size, int frags) argument
/freebsd-9.3-release/usr.sbin/uhsoctl/
H A Duhsoctl.c1024 int error, i, usbport, usbport0, list_size = 0; local
1120 list = realloc(list, (list_size + 1) * sizeof(char *));
1121 list[list_size] = malloc(strlen(data) + strlen(TTY_NAME));
1122 sprintf(list[list_size], TTY_NAME, data);
1123 list_size++;
1127 list = realloc(list, (list_size + 1) * sizeof(char *));
1128 list[list_size] = NULL;
/freebsd-9.3-release/sys/dev/ciss/
H A Dcissreg.h174 u_int32_t list_size; /* big-endian */ member in struct:ciss_lun_report
H A Dciss.c1343 cll->list_size = htonl(report_size - sizeof(*cll)); /* big-endian field */
1405 ndrives = (ntohl(cll->list_size) / sizeof(union ciss_device_address));
1492 nphys = (ntohl(cll->list_size) / sizeof(union ciss_device_address));
1596 nphys = (ntohl(cll->list_size) / sizeof(union ciss_device_address));
3947 ndrives = (ntohl(cll->list_size) / sizeof(union ciss_device_address));
/freebsd-9.3-release/sys/dev/aic7xxx/
H A Daic79xx.c5209 bus_size_t list_size; local
5211 list_size = sizeof(struct ahd_dma_seg) * AHD_NSEG;
5213 list_size = sizeof(struct ahd_dma64_seg) * AHD_NSEG;
5214 return (list_size);

Completed in 271 milliseconds