Home
last modified time | relevance | path

Searched refs:struct_size (Results 1 – 10 of 10) sorted by relevance

/titanic_50/usr/src/uts/common/io/ib/mgt/ibmf/
H A Dibmf_saa_utils.c971 int struct_size, buf_size; in ibmf_saa_utils_pack_payload() local
990 struct_size = sizeof (ib_mad_classportinfo_t); in ibmf_saa_utils_pack_payload()
995 struct_size = sizeof (ib_mad_notice_t); in ibmf_saa_utils_pack_payload()
1000 struct_size = sizeof (ib_mad_informinfo_t); in ibmf_saa_utils_pack_payload()
1005 struct_size = sizeof (sa_node_record_t); in ibmf_saa_utils_pack_payload()
1010 struct_size = sizeof (sa_portinfo_record_t); in ibmf_saa_utils_pack_payload()
1015 struct_size = sizeof (sa_SLtoVLmapping_record_t); in ibmf_saa_utils_pack_payload()
1020 struct_size = sizeof (sa_switchinfo_record_t); in ibmf_saa_utils_pack_payload()
1025 struct_size = sizeof (sa_linearft_record_t); in ibmf_saa_utils_pack_payload()
1030 struct_size = sizeof (sa_randomft_record_t); in ibmf_saa_utils_pack_payload()
[all …]
/titanic_50/usr/src/cmd/svr4pkg/libinst/
H A Dlistmgr.c47 #define REC_SIZE(x) (bl_cs_array[x]->struct_size)
60 int struct_size; /* size of a single list element */ member
219 bl_ptr->struct_size)) == NULL) { in alloc_next_seg()
254 bl_create(int count_per_block, int struct_size, char *desc) in bl_create() argument
270 bl_ptr->struct_size = struct_size; in bl_create()
272 bl_ptr->block_size = (count_per_block * struct_size); in bl_create()
307 bl_ptr->cur_segment->avail_ptr += bl_ptr->struct_size; in bl_next_avail()
345 return ((char *)cur_as_ptr + ((recno - cur_rec) * bl_ptr->struct_size)); in bl_get_record()
381 ar_create(int count_per_block, int struct_size, char *desc) in ar_create() argument
387 if ((data_handle = bl_create(count_per_block, struct_size, desc)) == -1) in ar_create()
[all …]
/titanic_50/usr/src/uts/common/fs/smbsrv/
H A Dsmb2_negotiate.c177 uint16_t struct_size; in smb2_newrq_negotiate() local
196 &struct_size, /* w */ in smb2_newrq_negotiate()
205 if (struct_size != 36 || version_cnt > 8) in smb2_newrq_negotiate()
/titanic_50/usr/src/lib/libpkg/common/
H A Dncgrpw.c80 cache_alloc(char *fname, int len, size_t struct_size) in cache_alloc() argument
96 } else if ((itemp->data = malloc(struct_size)) == NULL) { in cache_alloc()
98 struct_size, "itemp->data"); in cache_alloc()
104 itemp->datal = struct_size; in cache_alloc()
/titanic_50/usr/src/lib/libc/port/i18n/
H A Dgettext_real.c886 int struct_size, struct_size_old; in sun_setmsg() local
914 struct_size = (int)(MSG_STRUCT_SIZE * count); in sun_setmsg()
918 (msg_struct_size != struct_size))) { in sun_setmsg()
938 struct_size); in sun_setmsg()
940 struct_size + sun_header->str_count_msgid); in sun_setmsg()
/titanic_50/usr/src/cmd/svr4pkg/hdrs/
H A Dlibinst.h165 extern int bl_create __P((int count_per_block, int struct_size,
170 extern int ar_create __P((int count_per_block, int struct_size,
/titanic_50/usr/src/uts/common/io/comstar/stmf/
H A Dlun_map.c596 int struct_size, total_size, real_id_size; in stmf_alloc_id() local
599 struct_size = (sizeof (*id) + 7) & (~7); in stmf_alloc_id()
600 total_size = ((additional_size + 7) & (~7)) + struct_size + in stmf_alloc_id()
605 id->id_data = ((uint8_t *)id) + struct_size; in stmf_alloc_id()
608 id->id_impl_specific = ((uint8_t *)id) + struct_size + in stmf_alloc_id()
/titanic_50/usr/src/uts/common/fs/
H A Dgfs.c515 gfs_dir_create(size_t struct_size, vnode_t *pvp, vnodeops_t *ops, in gfs_dir_create() argument
523 vp = gfs_file_create(struct_size, pvp, ops); in gfs_dir_create()
/titanic_50/usr/src/lib/libc/port/gen/
H A Dnss_dbdefs.c60 _nss_XbyY_buf_alloc(int struct_size, int buffer_size) in _nss_XbyY_buf_alloc() argument
66 malloc(ALIGN(sizeof (*b)) + struct_size + buffer_size); in _nss_XbyY_buf_alloc()
71 b->buffer = (char *)(b->result) + struct_size; in _nss_XbyY_buf_alloc()
/titanic_50/usr/src/head/
H A Dnss_dbdefs.h376 extern nss_XbyY_buf_t *_nss_XbyY_buf_alloc(int struct_size, int buffer_size);