Lines Matching defs:structure
264 * History structure to support problem analysis.
522 * This structure gets overlay onto:
525 * This structure must be exactly IDNSB_SIZE bytes.
1611 * points to the proper phase structure
1852 * The size of this structure must be a power of 2
1873 * Requirements of the following data structure:
3032 * Holds slab structure of
3203 * This structure is primarily defined to be consistent with
3263 * Per logical interface private data structure.
3526 #define GETSTRUCT(structure, num) \
3527 ((structure *)_idn_getstruct("structure", sizeof (structure)*(num)))
3528 #define FREESTRUCT(ptr, structure, num) \
3529 (_idn_freestruct((caddr_t)ptr, "structure", sizeof (structure)*(num)))
3531 #define GETSTRUCT(structure, num) \
3532 ((structure *)kmem_zalloc((uint_t)(sizeof (structure) * (num)), \
3534 #define FREESTRUCT(ptr, structure, num) \
3535 (kmem_free((caddr_t)(ptr), sizeof (structure) * (num)))