Searched refs:_structure (Results 1 – 10 of 10) sorted by relevance
/external/syslinux/gpxe/src/interface/smbios/ |
D | smbios_settings.c | 47 #define SMBIOS_RAW_TAG( _type, _structure, _field ) \ argument 50 ( offsetof ( _structure, _field ) << 8 ) | \ 51 ( sizeof ( ( ( _structure * ) 0 )->_field ) ) ) 61 #define SMBIOS_STRING_TAG( _type, _structure, _field ) \ argument 64 ( offsetof ( _structure, _field ) << 8 ) )
|
/external/syslinux/gpxe/src/drivers/infiniband/ |
D | mlx_bitops.h | 43 #define MLX_DECLARE_STRUCT( _structure ) \ argument 44 _structure { \ 46 uint8_t bytes[ sizeof ( struct _structure ## _st ) / 8 ]; \ 47 uint32_t dwords[ sizeof ( struct _structure ## _st ) / 32 ]; \ 48 struct _structure ## _st *dummy[0]; \
|
/external/syslinux/gpxe/src/include/gpxe/ |
D | bitops.h | 63 #define PSEUDO_BIT_STRUCT( _structure ) \ argument 65 uint8_t bytes[ sizeof ( _structure ) / 8 ]; \ 66 uint32_t dwords[ sizeof ( _structure ) / 32 ]; \ 67 uint64_t qwords[ sizeof ( _structure ) / 64 ]; \ 68 _structure *dummy[0]; \
|
/external/syslinux/gpxe/src/drivers/net/phantom/ |
D | nx_bitops.h | 43 #define NX_PSEUDO_BIT_STRUCT( _structure ) \ argument 45 uint8_t bytes[ sizeof ( _structure ) / 8 ]; \ 46 uint64_t qwords[ sizeof ( _structure ) / 64 ]; \ 47 _structure *dummy[0]; \
|
/external/python/cpython2/Lib/email/ |
D | iterators.py | 61 def _structure(msg, fp=None, level=0, include_default=False): function 73 _structure(subpart, fp, level+1, include_default)
|
/external/python/cpython2/Lib/email/test/ |
D | test_email_torture.py | 20 from email.iterators import _structure 60 _structure(msg, fp=fp)
|
D | test_email_renamed.py | 1362 iterators._structure(msg, sfp) 1380 iterators._structure(msg, sfp) 2349 iterators._structure(msg, sfp)
|
D | test_email.py | 1427 Iterators._structure(msg, sfp) 1445 Iterators._structure(msg, sfp) 2488 Iterators._structure(msg, sfp)
|
/external/python/cpython2/Doc/library/ |
D | email.iterators.rst | 43 .. function:: _structure(msg[, fp[, level]]) 49 >>> _structure(msg)
|
D | email.rst | 218 * The non-public function :func:`email.Iterators._structure` was added.
|