Home
last modified time | relevance | path

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

/external/syslinux/gpxe/src/interface/smbios/
Dsmbios_settings.c47 #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/
Dmlx_bitops.h43 #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/
Dbitops.h63 #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/
Dnx_bitops.h43 #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/
Diterators.py61 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/
Dtest_email_torture.py20 from email.iterators import _structure
60 _structure(msg, fp=fp)
Dtest_email_renamed.py1362 iterators._structure(msg, sfp)
1380 iterators._structure(msg, sfp)
2349 iterators._structure(msg, sfp)
Dtest_email.py1427 Iterators._structure(msg, sfp)
1445 Iterators._structure(msg, sfp)
2488 Iterators._structure(msg, sfp)
/external/python/cpython2/Doc/library/
Demail.iterators.rst43 .. function:: _structure(msg[, fp[, level]])
49 >>> _structure(msg)
Demail.rst218 * The non-public function :func:`email.Iterators._structure` was added.