| 1 | # 2 "prelude.cf"  // needed for error messages from this file | 
|---|
| 2 | //                               -*- Mode: C -*- | 
|---|
| 3 | // | 
|---|
| 4 | // Copyright (C) Glen Ditchfield 1994, 1999 | 
|---|
| 5 | // | 
|---|
| 6 | // prelude.cf -- Standard Cforall Preample for C99 | 
|---|
| 7 | // | 
|---|
| 8 | // Author           : Glen Ditchfield | 
|---|
| 9 | // Created On       : Sat Nov 29 07:23:41 2014 | 
|---|
| 10 | // Last Modified By : Peter A. Buhr | 
|---|
| 11 | // Last Modified On : Wed Mar  2 18:03:41 2016 | 
|---|
| 12 | // Update Count     : 89 | 
|---|
| 13 | // | 
|---|
| 14 |  | 
|---|
| 15 | // Following line added from stddef.h by build | 
|---|
| 16 |  | 
|---|
| 17 | typedef long int ptrdiff_t; | 
|---|
| 18 |  | 
|---|
| 19 | // Section numbers from: http://plg.uwaterloo.ca/~cforall/refrat.pdf | 
|---|
| 20 |  | 
|---|
| 21 | // ------------------------------------------------------------ | 
|---|
| 22 | // | 
|---|
| 23 | // Section 4.1 Primary Expressions | 
|---|
| 24 | // | 
|---|
| 25 | // ------------------------------------------------------------ | 
|---|
| 26 |  | 
|---|
| 27 | const int 0, 1; | 
|---|
| 28 |  | 
|---|
| 29 | forall ( dtype DT ) const DT * const    0; | 
|---|
| 30 | forall ( ftype FT ) FT * const          0; | 
|---|
| 31 |  | 
|---|
| 32 | // ------------------------------------------------------------ | 
|---|
| 33 | // | 
|---|
| 34 | // Section 4.2 Postfix Operators | 
|---|
| 35 | // | 
|---|
| 36 | // ------------------------------------------------------------ | 
|---|
| 37 |  | 
|---|
| 38 | _Bool                   ?++( _Bool * ),                         ?++( volatile _Bool * ); | 
|---|
| 39 | _Bool                   ?--( _Bool * ),                         ?--( volatile _Bool * ); | 
|---|
| 40 | unsigned char           ?++( unsigned char * ),                 ?++( volatile unsigned char * ); | 
|---|
| 41 | signed int              ?++( signed int * ),                    ?++( volatile signed int * ); | 
|---|
| 42 | signed int              ?--( signed int * ),                    ?--( volatile signed int * ); | 
|---|
| 43 | unsigned int            ?++( unsigned int * ),                  ?++( volatile unsigned int * ); | 
|---|
| 44 | unsigned int            ?--( unsigned int * ),                  ?--( volatile unsigned int * ); | 
|---|
| 45 | signed long int         ?++( signed long int * ),               ?++( volatile signed long int * ); | 
|---|
| 46 | signed long int         ?--( signed long int * ),               ?--( volatile signed long int * ); | 
|---|
| 47 | unsigned long int       ?++( unsigned long int * ),             ?++( volatile unsigned long int * ); | 
|---|
| 48 | unsigned long int       ?--( unsigned long int * ),             ?--( volatile unsigned long int * ); | 
|---|
| 49 | signed long long int    ?++( signed long long int * ),          ?++( volatile signed long long int * ); | 
|---|
| 50 | signed long long int    ?--( signed long long int * ),          ?--( volatile signed long long int * ); | 
|---|
| 51 | unsigned long long int  ?++( unsigned long long int * ),        ?++( volatile unsigned long long int * ); | 
|---|
| 52 | unsigned long long int  ?--( unsigned long long int * ),        ?--( volatile unsigned long long int * ); | 
|---|
| 53 | float                   ?++( float * ),                         ?++( volatile float * ); | 
|---|
| 54 | float                   ?--( float * ),                         ?--( volatile float * ); | 
|---|
| 55 | double                  ?++( double * ),                        ?++( volatile double * ); | 
|---|
| 56 | double                  ?--( double * ),                        ?--( volatile double * ); | 
|---|
| 57 | long double             ?++( long double * ),                   ?++( volatile long double * ); | 
|---|
| 58 | long double             ?--( long double * ),                   ?--( volatile long double * ); | 
|---|
| 59 | float _Complex          ?++( float _Complex * ),                ?++( volatile float _Complex * ); | 
|---|
| 60 | float _Complex          ?--( float _Complex * ),                ?--( volatile float _Complex * ); | 
|---|
| 61 | double _Complex         ?++( double _Complex * ),               ?++( volatile double _Complex * ); | 
|---|
| 62 | double _Complex         ?--( double _Complex * ),               ?--( volatile double _Complex * ); | 
|---|
| 63 | long double _Complex    ?++( long double _Complex * ),          ?++( volatile long double _Complex * ); | 
|---|
| 64 | long double _Complex    ?--( long double _Complex * ),          ?--( volatile long double _Complex * ); | 
|---|
| 65 |  | 
|---|
| 66 | forall( otype T ) T *                    ?++(                T ** ); | 
|---|
| 67 | forall( otype T ) const T *              ?++( const          T ** ); | 
|---|
| 68 | forall( otype T ) volatile T *           ?++(       volatile T ** ); | 
|---|
| 69 | forall( otype T ) const volatile T *     ?++( const volatile T ** ); | 
|---|
| 70 | forall( otype T ) T *                    ?--(                T ** ); | 
|---|
| 71 | forall( otype T ) const T *              ?--( const          T ** ); | 
|---|
| 72 | forall( otype T ) volatile T *           ?--(       volatile T ** ); | 
|---|
| 73 | forall( otype T ) const volatile T *     ?--( const volatile T ** ); | 
|---|
| 74 |  | 
|---|
| 75 | forall( otype T ) lvalue T               ?[?](                T *,          ptrdiff_t ); | 
|---|
| 76 | forall( otype T ) const lvalue T         ?[?]( const          T *,          ptrdiff_t ); | 
|---|
| 77 | forall( otype T ) volatile lvalue T      ?[?](       volatile T *,          ptrdiff_t ); | 
|---|
| 78 | forall( otype T ) const volatile lvalue T ?[?]( const volatile T *,         ptrdiff_t ); | 
|---|
| 79 | forall( otype T ) lvalue T               ?[?](          ptrdiff_t,                T * ); | 
|---|
| 80 | forall( otype T ) const lvalue T         ?[?](          ptrdiff_t, const          T * ); | 
|---|
| 81 | forall( otype T ) volatile lvalue T      ?[?](          ptrdiff_t,       volatile T * ); | 
|---|
| 82 | forall( otype T ) const volatile lvalue T ?[?](         ptrdiff_t, const volatile T * ); | 
|---|
| 83 |  | 
|---|
| 84 | // ------------------------------------------------------------ | 
|---|
| 85 | // | 
|---|
| 86 | // Section 4.3 Unary Operators | 
|---|
| 87 | // | 
|---|
| 88 | // ------------------------------------------------------------ | 
|---|
| 89 |  | 
|---|
| 90 | _Bool                   ++?( _Bool * ),                         --?( _Bool * ); | 
|---|
| 91 | signed int              ++?( signed int * ),                    --?( signed int * ); | 
|---|
| 92 | unsigned int            ++?( unsigned int * ),                  --?( unsigned int * ); | 
|---|
| 93 | signed long int         ++?( signed long int * ),               --?( signed long int * ); | 
|---|
| 94 | unsigned long int       ++?( unsigned long int * ),             --?( unsigned long int * ); | 
|---|
| 95 | signed long long int    ++?( signed long long int * ),          --?( signed long long int * ); | 
|---|
| 96 | unsigned long long int  ++?( unsigned long long int * ),        --?( unsigned long long int * ); | 
|---|
| 97 | float                   ++?( float * ),                         --?( float * ); | 
|---|
| 98 | double                  ++?( double * ),                        --?( double * ); | 
|---|
| 99 | long double             ++?( long double * ),                   --?( long double * ); | 
|---|
| 100 | float _Complex          ++?( float _Complex * ),                --?( float _Complex * ); | 
|---|
| 101 | double _Complex         ++?( double _Complex * ),               --?( double _Complex * ); | 
|---|
| 102 | long double _Complex    ++?( long double _Complex * ),          --?( long double _Complex * ); | 
|---|
| 103 |  | 
|---|
| 104 | forall( otype T ) T *                    ++?(                T ** ); | 
|---|
| 105 | forall( otype T ) const T *              ++?( const          T ** ); | 
|---|
| 106 | forall( otype T ) volatile T *           ++?(       volatile T ** ); | 
|---|
| 107 | forall( otype T ) const volatile T *     ++?( const volatile T ** ); | 
|---|
| 108 | forall( otype T ) T *                    --?(                T ** ); | 
|---|
| 109 | forall( otype T ) const T *              --?( const          T ** ); | 
|---|
| 110 | forall( otype T ) volatile T *           --?(       volatile T ** ); | 
|---|
| 111 | forall( otype T ) const volatile T *     --?( const volatile T ** ); | 
|---|
| 112 |  | 
|---|
| 113 | forall( otype T ) lvalue T               *?(                 T * ); | 
|---|
| 114 | forall( otype T ) const lvalue T                 *?( const           T * ); | 
|---|
| 115 | forall( otype T ) volatile lvalue T      *?(       volatile  T * ); | 
|---|
| 116 | forall( otype T ) const volatile lvalue T *?( const volatile  T * ); | 
|---|
| 117 | forall( ftype FT ) lvalue FT             *?( FT * ); | 
|---|
| 118 |  | 
|---|
| 119 | _Bool                   +?( _Bool ),                    -?( _Bool ),                    ~?( _Bool ); | 
|---|
| 120 | signed int              +?( signed int ),               -?( signed int ),               ~?( signed int ); | 
|---|
| 121 | unsigned int            +?( unsigned int ),             -?( unsigned int ),             ~?( unsigned int ); | 
|---|
| 122 | signed long int         +?( signed long int ),          -?( signed long int ),          ~?( signed long int ); | 
|---|
| 123 | unsigned long int       +?( unsigned long int ),        -?( unsigned long int ),        ~?( unsigned long int ); | 
|---|
| 124 | signed long long int    +?( signed long long int ),     -?( signed long long int ),     ~?( signed long long int ); | 
|---|
| 125 | unsigned long long int  +?( unsigned long long int ),   -?( unsigned long long int ),   ~?( unsigned long long int ); | 
|---|
| 126 | float                   +?( float ),                    -?( float ); | 
|---|
| 127 | double                  +?( double ),                   -?( double ); | 
|---|
| 128 | long double             +?( long double ),              -?( long double ); | 
|---|
| 129 | float _Complex          +?( float _Complex ),           -?( float _Complex ); | 
|---|
| 130 | double _Complex         +?( double _Complex ),          -?( double _Complex ); | 
|---|
| 131 | long double _Complex    +?( long double _Complex ),     -?( long double _Complex ); | 
|---|
| 132 |  | 
|---|
| 133 | signed int      !?( signed int ),               !?( unsigned int ), | 
|---|
| 134 | !?( long int ),                 !?( unsigned long int ), | 
|---|
| 135 | !?( long long int ),            !?( unsigned long long int ), | 
|---|
| 136 | !?( float ),                    !?( double ),                   !?( long double ), | 
|---|
| 137 | !?( float _Complex ),           !?( double _Complex ),          !?( long double _Complex ); | 
|---|
| 138 |  | 
|---|
| 139 | forall ( dtype DT ) int !?( const volatile DT * ); | 
|---|
| 140 | forall ( ftype FT ) int !?( FT * ); | 
|---|
| 141 |  | 
|---|
| 142 | // ------------------------------------------------------------ | 
|---|
| 143 | // | 
|---|
| 144 | // Section 4.5 Multiplicative Operators | 
|---|
| 145 | // | 
|---|
| 146 | // ------------------------------------------------------------ | 
|---|
| 147 |  | 
|---|
| 148 | _Bool                   ?*?( _Bool, _Bool ),                                    ?/?( _Bool, _Bool ),                            ?%?( _Bool, _Bool ); | 
|---|
| 149 | signed int              ?*?( signed int, signed int ),                          ?/?( signed int, signed int ),                  ?%?( signed int, signed int ); | 
|---|
| 150 | unsigned int            ?*?( unsigned int, unsigned int ),                      ?/?( unsigned int, unsigned int ),              ?%?( unsigned int, unsigned int ); | 
|---|
| 151 | signed long int         ?*?( signed long int, signed long int ),                ?/?( signed long int, signed long int ),        ?%?( signed long int, signed long int ); | 
|---|
| 152 | unsigned long int       ?*?( unsigned long int, unsigned long int ),            ?/?( unsigned long int, unsigned long int ),    ?%?( unsigned long int, unsigned long int ); | 
|---|
| 153 | signed long long int    ?*?( signed long long int, signed long long int ),      ?/?( signed long long int, signed long long int ), ?%?( signed long long int, signed long long int ); | 
|---|
| 154 | unsigned long long int  ?*?( unsigned long long int, unsigned long long int ),  ?/?( unsigned long long int, unsigned long long int ), ?%?( unsigned long long int, unsigned long long int ); | 
|---|
| 155 | float                   ?*?( float, float ),                                    ?/?( float, float ); | 
|---|
| 156 | double                  ?*?( double, double ),                                  ?/?( double, double ); | 
|---|
| 157 | long double             ?*?( long double, long double ),                        ?/?( long double, long double ); | 
|---|
| 158 | // gcc does not support _Imaginary | 
|---|
| 159 | //float _Imaginary      ?*?( float _Imaginary, float _Imaginary),               ?/?( float _Imaginary, float _Imaginary ); | 
|---|
| 160 | //double _Imaginary     ?*?( double _Imaginary, double _Imaginary),             ?/?( double _Imaginary, double _Imaginary ); | 
|---|
| 161 | //long double _Imaginary        ?*?( long double _Imaginary, long double _Imaginary),   ?/?( long double _Imaginary, long double _Imaginary ); | 
|---|
| 162 | float _Complex          ?*?( float _Complex, float _Complex ),                  ?/?( float _Complex, float _Complex ); | 
|---|
| 163 | double _Complex         ?*?( double _Complex, double _Complex ),                ?/?( double _Complex, double _Complex ); | 
|---|
| 164 | long double _Complex    ?*?( long double _Complex, long double _Complex ),      ?/?( long double _Complex, long double _Complex ); | 
|---|
| 165 |  | 
|---|
| 166 | // ------------------------------------------------------------ | 
|---|
| 167 | // | 
|---|
| 168 | // Section 4.6 Additive Operators | 
|---|
| 169 | // | 
|---|
| 170 | // ------------------------------------------------------------ | 
|---|
| 171 |  | 
|---|
| 172 | _Bool                   ?+?( _Bool, _Bool ),                                    ?-?( _Bool, _Bool ); | 
|---|
| 173 | signed int              ?+?( signed int, signed int ),                          ?-?( signed int, signed int ); | 
|---|
| 174 | unsigned int            ?+?( unsigned int, unsigned int ),                      ?-?( unsigned int, unsigned int ); | 
|---|
| 175 | signed long int         ?+?( signed long int, signed long int ),                ?-?( signed long int, signed long int ); | 
|---|
| 176 | unsigned long int       ?+?( unsigned long int, unsigned long int ),            ?-?( unsigned long int, unsigned long int ); | 
|---|
| 177 | signed long long int    ?+?( signed long long int, long long int  signed),      ?-?( signed long long int, signed long long int ); | 
|---|
| 178 | unsigned long long int  ?+?( unsigned long long int, unsigned long long int ),  ?-?( unsigned long long int, unsigned long long int ); | 
|---|
| 179 | float                   ?+?( float, float ),                                    ?-?( float, float ); | 
|---|
| 180 | double                  ?+?( double, double ),                                  ?-?( double, double ); | 
|---|
| 181 | long double             ?+?( long double, long double ),                        ?-?( long double, long double ); | 
|---|
| 182 | float _Complex          ?+?( float _Complex, float _Complex ),                  ?-?( float _Complex, float _Complex ); | 
|---|
| 183 | double _Complex         ?+?( double _Complex, double _Complex ),                ?-?( double _Complex, double _Complex ); | 
|---|
| 184 | long double _Complex    ?+?( long double _Complex, long double _Complex ),      ?-?( long double _Complex, long double _Complex ); | 
|---|
| 185 |  | 
|---|
| 186 | forall( otype T ) T *                   ?+?(                T *,          ptrdiff_t ); | 
|---|
| 187 | forall( otype T ) T *                   ?+?(          ptrdiff_t,                T * ); | 
|---|
| 188 | forall( otype T ) const T *             ?+?( const          T *,          ptrdiff_t ); | 
|---|
| 189 | forall( otype T ) const T *             ?+?(          ptrdiff_t, const          T * ); | 
|---|
| 190 | forall( otype T ) volatile T *          ?+?(       volatile T *,          ptrdiff_t ); | 
|---|
| 191 | forall( otype T ) volatile T *          ?+?(          ptrdiff_t,       volatile T * ); | 
|---|
| 192 | forall( otype T ) const volatile T *    ?+?( const volatile T *,          ptrdiff_t ); | 
|---|
| 193 | forall( otype T ) const volatile T *    ?+?(          ptrdiff_t, const volatile T * ); | 
|---|
| 194 | forall( otype T ) T *                   ?-?(                T *,          ptrdiff_t ); | 
|---|
| 195 | forall( otype T ) const T *             ?-?( const          T *,          ptrdiff_t ); | 
|---|
| 196 | forall( otype T ) volatile T *          ?-?(       volatile T *,          ptrdiff_t ); | 
|---|
| 197 | forall( otype T ) const volatile T *    ?-?( const volatile T *,          ptrdiff_t ); | 
|---|
| 198 | forall( otype T ) ptrdiff_t             ?-?( const volatile T *, const volatile T * ); | 
|---|
| 199 |  | 
|---|
| 200 | // ------------------------------------------------------------ | 
|---|
| 201 | // | 
|---|
| 202 | // Section 4.7 Bitwise Shift Operators | 
|---|
| 203 | // | 
|---|
| 204 | // ------------------------------------------------------------ | 
|---|
| 205 |  | 
|---|
| 206 | _Bool                   ?<<?( _Bool, _Bool ),                                   ?>>?( _Bool, _Bool ); | 
|---|
| 207 | signed int              ?<<?( signed int, signed int ),                         ?>>?( signed int, signed int ); | 
|---|
| 208 | unsigned int            ?<<?( unsigned int, unsigned int ),                     ?>>?( unsigned int, unsigned int ); | 
|---|
| 209 | signed long int         ?<<?( signed long int, signed long int ),               ?>>?( signed long int, signed long int ); | 
|---|
| 210 | unsigned long int       ?<<?( unsigned long int, unsigned long int ),           ?>>?( unsigned long int, unsigned long int ); | 
|---|
| 211 | signed long long int    ?<<?( signed long long int, signed long long int ),     ?>>?( signed long long int, signed long long int ); | 
|---|
| 212 | unsigned long long int  ?<<?( unsigned long long int, unsigned long long int ), ?>>?( unsigned long long int, unsigned long long int ); | 
|---|
| 213 |  | 
|---|
| 214 | // ------------------------------------------------------------ | 
|---|
| 215 | // | 
|---|
| 216 | // Section 4.8 Relational Operators | 
|---|
| 217 | // | 
|---|
| 218 | // ------------------------------------------------------------ | 
|---|
| 219 |  | 
|---|
| 220 | signed int ?<?( _Bool, _Bool ),                                         ?<=?( _Bool, _Bool ), | 
|---|
| 221 | ?>?( _Bool, _Bool ),                                         ?>=?( _Bool, _Bool ); | 
|---|
| 222 | signed int ?<?( unsigned char, unsigned char ),                         ?<=?( unsigned char, unsigned char ), | 
|---|
| 223 | ?>?( unsigned char, unsigned char ),                         ?>=?( unsigned char, unsigned char ); | 
|---|
| 224 | signed int ?<?( signed int, signed int ),                               ?<=?( signed int, signed int ), | 
|---|
| 225 | ?>?( signed int, signed int ),                               ?>=?( signed int, signed int ); | 
|---|
| 226 | signed int ?<?( unsigned int, unsigned int ),                           ?<=?( unsigned int, unsigned int ), | 
|---|
| 227 | ?>?( unsigned int, unsigned int ),                           ?>=?( unsigned int, unsigned int ); | 
|---|
| 228 | signed int ?<?( signed long int, signed long int ),                     ?<=?( signed long int, signed long int ), | 
|---|
| 229 | ?>?( signed long int, signed long int ),                     ?>=?( signed long int, signed long int ); | 
|---|
| 230 | signed int ?<?( unsigned long int, unsigned long int ),                 ?<=?( unsigned long int, unsigned long int ), | 
|---|
| 231 | ?>?( unsigned long int, unsigned long int ),                 ?>=?( unsigned long int, unsigned long int ); | 
|---|
| 232 | signed int ?<?( signed long long int, signed long long int ),           ?<=?( signed long long int, signed long long int ), | 
|---|
| 233 | ?>?( signed long long int, signed long long int ),           ?>=?( signed long long int, signed long long int ); | 
|---|
| 234 | signed int ?<?( unsigned long long int, unsigned long long int ),       ?<=?( unsigned long long int, unsigned long long int ), | 
|---|
| 235 | ?>?( unsigned long long int, unsigned long long int ),       ?>=?( unsigned long long int, unsigned long long int ); | 
|---|
| 236 | signed int ?<?( float, float ),                                         ?<=?( float, float ), | 
|---|
| 237 | ?>?( float, float ),                                         ?>=?( float, float ); | 
|---|
| 238 | signed int ?<?( double, double ),                                       ?<=?( double, double ), | 
|---|
| 239 | ?>?( double, double ),                                       ?>=?( double, double ); | 
|---|
| 240 | signed int ?<?( long double, long double ),                             ?<=?( long double, long double ), | 
|---|
| 241 | ?>?( long double, long double ),                             ?>=?( long double, long double ); | 
|---|
| 242 |  | 
|---|
| 243 | forall( dtype DT ) signed int ?<?(  const volatile DT *, const volatile DT * ); | 
|---|
| 244 | forall( dtype DT ) signed int ?>?(  const volatile DT *, const volatile DT * ); | 
|---|
| 245 | forall( dtype DT ) signed int ?<=?( const volatile DT *, const volatile DT * ); | 
|---|
| 246 | forall( dtype DT ) signed int ?>=?( const volatile DT *, const volatile DT * ); | 
|---|
| 247 |  | 
|---|
| 248 | // ------------------------------------------------------------ | 
|---|
| 249 | // | 
|---|
| 250 | // Section 4.9 Equality Operators | 
|---|
| 251 | // | 
|---|
| 252 | // ------------------------------------------------------------ | 
|---|
| 253 |  | 
|---|
| 254 | signed int ?==?( _Bool, _Bool ),                                        ?!=?( _Bool, _Bool ); | 
|---|
| 255 | signed int ?==?( signed int, signed int ),                              ?!=?( signed int, signed int ); | 
|---|
| 256 | signed int ?==?( unsigned int, unsigned int ),                          ?!=?( unsigned int, unsigned int ); | 
|---|
| 257 | signed int ?==?( signed long int, signed long int ),                    ?!=?( signed long int, signed long int ); | 
|---|
| 258 | signed int ?==?( unsigned long int, unsigned long int ),                ?!=?( unsigned long int, unsigned long int ); | 
|---|
| 259 | signed int ?==?( signed long long int, long long int  signed),          ?!=?( signed long long int, signed long long int ); | 
|---|
| 260 | signed int ?==?( unsigned long long int, unsigned long long int ),      ?!=?( unsigned long long int, unsigned long long int ); | 
|---|
| 261 | signed int ?==?( float, float ),                                        ?!=?( float, float ); | 
|---|
| 262 | signed int ?==?( double, double ),                                      ?!=?( double, double ); | 
|---|
| 263 | signed int ?==?( long double, long double ),                            ?!=?( long double, long double ); | 
|---|
| 264 | signed int ?==?( float _Complex, float _Complex ),                      ?!=?( float _Complex, float _Complex ); | 
|---|
| 265 | signed int ?==?( double _Complex, double _Complex ),                    ?!=?( double _Complex, double _Complex ); | 
|---|
| 266 | signed int ?==?( long double _Complex, long double _Complex ),          ?!=?( long double _Complex, long double _Complex ); | 
|---|
| 267 |  | 
|---|
| 268 | forall( dtype DT ) signed int ?==?(                DT *,                DT * ); | 
|---|
| 269 | forall( dtype DT ) signed int ?==?( const          DT *, const          DT * ); | 
|---|
| 270 | forall( dtype DT ) signed int ?==?(       volatile DT *,       volatile DT * ); | 
|---|
| 271 | forall( dtype DT ) signed int ?==?( const volatile DT *, const volatile DT * ); | 
|---|
| 272 | forall( ftype FT ) signed int ?==?( FT *, FT * ); | 
|---|
| 273 | forall( dtype DT ) signed int ?!=?(                DT *,                DT * ); | 
|---|
| 274 | forall( dtype DT ) signed int ?!=?( const          DT *, const          DT * ); | 
|---|
| 275 | forall( dtype DT ) signed int ?!=?(       volatile DT *,       volatile DT * ); | 
|---|
| 276 | forall( dtype DT ) signed int ?!=?( const volatile DT *, const volatile DT * ); | 
|---|
| 277 | forall( ftype FT ) signed int ?!=?( FT *, FT * ); | 
|---|
| 278 |  | 
|---|
| 279 | forall( dtype DT ) signed int ?==?( const volatile DT   *, const volatile void * ); | 
|---|
| 280 | forall( dtype DT ) signed int ?==?( const volatile void *, const volatile DT * ); | 
|---|
| 281 | forall( dtype DT ) signed int ?!=?( const volatile DT   *, const volatile void * ); | 
|---|
| 282 | forall( dtype DT ) signed int ?!=?( const volatile void *, const volatile DT * ); | 
|---|
| 283 |  | 
|---|
| 284 | forall( dtype DT ) signed int ?==?( const volatile DT *, forall( dtype DT2 )const DT2 * ); | 
|---|
| 285 | forall( dtype DT ) signed int ?==?( forall( dtype DT2 )const DT2 *, const volatile DT * ); | 
|---|
| 286 | forall( ftype FT ) signed int ?==?( FT *, forall( ftype FT2 )FT2 * ); | 
|---|
| 287 | forall( ftype FT ) signed int ?==?( forall( ftype FT2 )FT2 *, FT * ); | 
|---|
| 288 | forall( dtype DT ) signed int ?!=?( const volatile DT *, forall( dtype DT2 )const DT2 * ); | 
|---|
| 289 | forall( dtype DT ) signed int ?!=?( forall( dtype DT2 )const DT2 *, const volatile DT * ); | 
|---|
| 290 | forall( ftype FT ) signed int ?!=?( FT *, forall( ftype FT2 )FT2 * ); | 
|---|
| 291 | forall( ftype FT ) signed int ?!=?( forall( ftype FT2 )FT2 *, FT * ); | 
|---|
| 292 |  | 
|---|
| 293 | // ------------------------------------------------------------ | 
|---|
| 294 | // | 
|---|
| 295 | // Section 4.10 Bitwise AND Operators | 
|---|
| 296 | // | 
|---|
| 297 | // ------------------------------------------------------------ | 
|---|
| 298 |  | 
|---|
| 299 | _Bool                   ?&?( _Bool, _Bool ); | 
|---|
| 300 | signed int              ?&?( signed int, signed int ); | 
|---|
| 301 | unsigned int            ?&?( unsigned int, unsigned int ); | 
|---|
| 302 | signed long int         ?&?( signed long int, signed long int ); | 
|---|
| 303 | unsigned long int       ?&?( unsigned long int, unsigned long int ); | 
|---|
| 304 | signed long long int    ?&?( signed long long int, signed long long int ); | 
|---|
| 305 | unsigned long long int  ?&?( unsigned long long int, unsigned long long int ); | 
|---|
| 306 |  | 
|---|
| 307 | // ------------------------------------------------------------ | 
|---|
| 308 | // | 
|---|
| 309 | // Section 4.11 Bitwise XOR Operators | 
|---|
| 310 | // | 
|---|
| 311 | // ------------------------------------------------------------ | 
|---|
| 312 |  | 
|---|
| 313 | _Bool                   ?^?( _Bool, _Bool ); | 
|---|
| 314 | signed int              ?^?( signed int, signed int ); | 
|---|
| 315 | unsigned int            ?^?( unsigned int, unsigned int ); | 
|---|
| 316 | signed long int         ?^?( signed long int, signed long int ); | 
|---|
| 317 | unsigned long int       ?^?( unsigned long int, unsigned long int ); | 
|---|
| 318 | signed long long int    ?^?( signed long long int, signed long long int ); | 
|---|
| 319 | unsigned long long int  ?^?( unsigned long long int, unsigned long long int ); | 
|---|
| 320 |  | 
|---|
| 321 | // ------------------------------------------------------------ | 
|---|
| 322 | // | 
|---|
| 323 | // Section 4.12 Bitwise OR Operators | 
|---|
| 324 | // | 
|---|
| 325 | // ------------------------------------------------------------ | 
|---|
| 326 |  | 
|---|
| 327 | _Bool                   ?|?( _Bool, _Bool ); | 
|---|
| 328 | signed int              ?|?( signed int, signed int ); | 
|---|
| 329 | unsigned int            ?|?( unsigned int, unsigned int ); | 
|---|
| 330 | signed long int         ?|?( signed long int, signed long int ); | 
|---|
| 331 | unsigned long int       ?|?( unsigned long int, unsigned long int ); | 
|---|
| 332 | signed long long int    ?|?( signed long long int, signed long long int ); | 
|---|
| 333 | unsigned long long int  ?|?( unsigned long long int, unsigned long long int ); | 
|---|
| 334 |  | 
|---|
| 335 | // ------------------------------------------------------------ | 
|---|
| 336 | // | 
|---|
| 337 | // Section 4.16 Assignment Operator | 
|---|
| 338 | // | 
|---|
| 339 | // ------------------------------------------------------------ | 
|---|
| 340 |  | 
|---|
| 341 | forall( ftype FT ) FT *                 ?=?( FT **, FT * ); | 
|---|
| 342 | forall( ftype FT ) FT *                 ?=?( FT * volatile *, FT * ); | 
|---|
| 343 |  | 
|---|
| 344 | forall( dtype DT ) DT *                 ?=?(                 DT *          *,                   DT * ); | 
|---|
| 345 | forall( dtype DT ) DT *                 ?=?(                 DT * volatile *,                   DT * ); | 
|---|
| 346 | forall( dtype DT ) const DT *           ?=?( const           DT *          *,                   DT * ); | 
|---|
| 347 | forall( dtype DT ) const DT *           ?=?( const           DT * volatile *,                   DT * ); | 
|---|
| 348 | forall( dtype DT ) const DT *           ?=?( const           DT *          *, const             DT * ); | 
|---|
| 349 | forall( dtype DT ) const DT *           ?=?( const           DT * volatile *, const             DT * ); | 
|---|
| 350 | forall( dtype DT ) volatile DT *        ?=?(       volatile  DT *          *,                   DT * ); | 
|---|
| 351 | forall( dtype DT ) volatile DT *        ?=?(       volatile  DT * volatile *,                   DT * ); | 
|---|
| 352 | forall( dtype DT ) volatile DT *        ?=?(       volatile  DT *          *,       volatile    DT * ); | 
|---|
| 353 | forall( dtype DT ) volatile DT *        ?=?(       volatile  DT * volatile *,       volatile    DT * ); | 
|---|
| 354 |  | 
|---|
| 355 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT *          *,                   DT * ); | 
|---|
| 356 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT * volatile *,                   DT * ); | 
|---|
| 357 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT *          *, const             DT * ); | 
|---|
| 358 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT * volatile *, const             DT * ); | 
|---|
| 359 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT *          *,       volatile    DT * ); | 
|---|
| 360 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT * volatile *,       volatile    DT * ); | 
|---|
| 361 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT *          *, const volatile    DT * ); | 
|---|
| 362 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT * volatile *, const volatile    DT * ); | 
|---|
| 363 |  | 
|---|
| 364 | forall( dtype DT ) DT *                 ?=?(                 DT *          *,                   void * ); | 
|---|
| 365 | forall( dtype DT ) DT *                 ?=?(                 DT * volatile *,                   void * ); | 
|---|
| 366 | forall( dtype DT ) const DT *           ?=?( const           DT *          *,                   void * ); | 
|---|
| 367 | forall( dtype DT ) const DT *           ?=?( const           DT * volatile *,                   void * ); | 
|---|
| 368 | forall( dtype DT ) const DT *           ?=?( const           DT *          *, const             void * ); | 
|---|
| 369 | forall( dtype DT ) const DT *           ?=?( const           DT * volatile *, const             void * ); | 
|---|
| 370 | forall( dtype DT ) volatile DT *        ?=?(       volatile  DT *          *,                   void * ); | 
|---|
| 371 | forall( dtype DT ) volatile DT *        ?=?(       volatile  DT * volatile *,                   void * ); | 
|---|
| 372 | forall( dtype DT ) volatile DT *        ?=?(       volatile  DT *          *,       volatile    void * ); | 
|---|
| 373 | forall( dtype DT ) volatile DT *        ?=?(       volatile  DT * volatile *,       volatile    void * ); | 
|---|
| 374 |  | 
|---|
| 375 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT *          *,                   void * ); | 
|---|
| 376 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT * volatile *,                   void * ); | 
|---|
| 377 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT *          *, const             void * ); | 
|---|
| 378 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT * volatile *, const             void * ); | 
|---|
| 379 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT *          *,       volatile    void * ); | 
|---|
| 380 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT * volatile *,       volatile    void * ); | 
|---|
| 381 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT *          *, const volatile    void * ); | 
|---|
| 382 | forall( dtype DT ) const volatile DT *  ?=?( const volatile  DT * volatile *, const volatile    void * ); | 
|---|
| 383 |  | 
|---|
| 384 | forall( dtype DT ) void *                ?=?(                void *          *,                 DT * ); | 
|---|
| 385 | forall( dtype DT ) void *                ?=?(                void * volatile *,                 DT * ); | 
|---|
| 386 | forall( dtype DT ) const void *          ?=?( const          void *          *,                 DT * ); | 
|---|
| 387 | forall( dtype DT ) const void *          ?=?( const          void * volatile *,                 DT * ); | 
|---|
| 388 | forall( dtype DT ) const void *          ?=?( const          void *          *, const           DT * ); | 
|---|
| 389 | forall( dtype DT ) const void *          ?=?( const          void * volatile *, const           DT * ); | 
|---|
| 390 | forall( dtype DT ) volatile void *       ?=?(       volatile void *          *,                 DT * ); | 
|---|
| 391 | forall( dtype DT ) volatile void *       ?=?(       volatile void * volatile *,                 DT * ); | 
|---|
| 392 | forall( dtype DT ) volatile void *       ?=?(       volatile void *          *,       volatile  DT * ); | 
|---|
| 393 | forall( dtype DT ) volatile void *       ?=?(       volatile void * volatile *,       volatile  DT * ); | 
|---|
| 394 | forall( dtype DT ) const volatile void * ?=?( const volatile void *          *,                 DT * ); | 
|---|
| 395 | forall( dtype DT ) const volatile void * ?=?( const volatile void * volatile *,                 DT * ); | 
|---|
| 396 | forall( dtype DT ) const volatile void * ?=?( const volatile void *          *, const           DT * ); | 
|---|
| 397 | forall( dtype DT ) const volatile void * ?=?( const volatile void * volatile *, const           DT * ); | 
|---|
| 398 | forall( dtype DT ) const volatile void * ?=?( const volatile void *          *,       volatile  DT * ); | 
|---|
| 399 | forall( dtype DT ) const volatile void * ?=?( const volatile void * volatile *,       volatile  DT * ); | 
|---|
| 400 | forall( dtype DT ) const volatile void * ?=?( const volatile void *          *, const volatile  DT * ); | 
|---|
| 401 | forall( dtype DT ) const volatile void * ?=?( const volatile void * volatile *, const volatile  DT * ); | 
|---|
| 402 |  | 
|---|
| 403 | void *                  ?=?(                void *          *,                void * ); | 
|---|
| 404 | void *                  ?=?(                void * volatile *,                void * ); | 
|---|
| 405 | const void *            ?=?( const          void *          *,                void * ); | 
|---|
| 406 | const void *            ?=?( const          void * volatile *,                void * ); | 
|---|
| 407 | const void *            ?=?( const          void *          *, const          void * ); | 
|---|
| 408 | const void *            ?=?( const          void * volatile *, const          void * ); | 
|---|
| 409 | volatile void *         ?=?(       volatile void *          *,                void * ); | 
|---|
| 410 | volatile void *         ?=?(       volatile void * volatile *,                void * ); | 
|---|
| 411 | volatile void *         ?=?(       volatile void *          *,       volatile void * ); | 
|---|
| 412 | volatile void *         ?=?(       volatile void * volatile *,       volatile void * ); | 
|---|
| 413 | const volatile void *   ?=?( const volatile void *          *,                void * ); | 
|---|
| 414 | const volatile void *   ?=?( const volatile void * volatile *,                void * ); | 
|---|
| 415 | const volatile void *   ?=?( const volatile void *          *, const          void * ); | 
|---|
| 416 | const volatile void *   ?=?( const volatile void * volatile *, const          void * ); | 
|---|
| 417 | const volatile void *   ?=?( const volatile void *          *,       volatile void * ); | 
|---|
| 418 | const volatile void *   ?=?( const volatile void * volatile *,       volatile void * ); | 
|---|
| 419 | const volatile void *   ?=?( const volatile void *          *, const volatile void * ); | 
|---|
| 420 | const volatile void *   ?=?( const volatile void * volatile *, const volatile void * ); | 
|---|
| 421 |  | 
|---|
| 422 | //forall( dtype DT ) DT *                       ?=?(                DT *          *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 423 | //forall( dtype DT ) DT *                       ?=?(                DT * volatile *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 424 | forall( dtype DT ) const DT *           ?=?( const          DT *          *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 425 | forall( dtype DT ) const DT *           ?=?( const          DT * volatile *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 426 | //forall( dtype DT ) volatile DT *      ?=?( volatile       DT *          *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 427 | //forall( dtype DT ) volatile DT *      ?=?( volatile       DT * volatile *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 428 | forall( dtype DT ) const volatile DT *  ?=?( const volatile DT *          *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 429 | forall( dtype DT ) const volatile DT *  ?=?( const volatile DT * volatile *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 430 |  | 
|---|
| 431 | forall( ftype FT ) FT *                 ?=?( FT *          *, forall( ftype FT2 ) FT2 * ); | 
|---|
| 432 | forall( ftype FT ) FT *                 ?=?( FT * volatile *, forall( ftype FT2 ) FT2 * ); | 
|---|
| 433 |  | 
|---|
| 434 | forall( otype T ) T *                   ?+=?(                T *          *, ptrdiff_t ); | 
|---|
| 435 | forall( otype T ) T *                   ?+=?(                T * volatile *, ptrdiff_t ); | 
|---|
| 436 | forall( otype T ) const T *             ?+=?( const          T *          *, ptrdiff_t ); | 
|---|
| 437 | forall( otype T ) const T *             ?+=?( const          T * volatile *, ptrdiff_t ); | 
|---|
| 438 | forall( otype T ) volatile T *          ?+=?(       volatile T *          *, ptrdiff_t ); | 
|---|
| 439 | forall( otype T ) volatile T *          ?+=?(       volatile T * volatile *, ptrdiff_t ); | 
|---|
| 440 | forall( otype T ) const volatile T *    ?+=?( const volatile T *          *, ptrdiff_t ); | 
|---|
| 441 | forall( otype T ) const volatile T *    ?+=?( const volatile T * volatile *, ptrdiff_t ); | 
|---|
| 442 | forall( otype T ) T *                   ?-=?(                T *          *, ptrdiff_t ); | 
|---|
| 443 | forall( otype T ) T *                   ?-=?(                T * volatile *, ptrdiff_t ); | 
|---|
| 444 | forall( otype T ) const T *             ?-=?( const          T *          *, ptrdiff_t ); | 
|---|
| 445 | forall( otype T ) const T *             ?-=?( const          T * volatile *, ptrdiff_t ); | 
|---|
| 446 | forall( otype T ) volatile T *          ?-=?(       volatile T *          *, ptrdiff_t ); | 
|---|
| 447 | forall( otype T ) volatile T *          ?-=?(       volatile T * volatile *, ptrdiff_t ); | 
|---|
| 448 | forall( otype T ) const volatile T *    ?-=?( const volatile T *          *, ptrdiff_t ); | 
|---|
| 449 | forall( otype T ) const volatile T *    ?-=?( const volatile T * volatile *, ptrdiff_t ); | 
|---|
| 450 |  | 
|---|
| 451 | _Bool                   ?=?( _Bool *, _Bool ),                                  ?=?( volatile _Bool *, _Bool ); | 
|---|
| 452 | char                    ?=?( char *, char ),                                    ?=?( volatile char *, char ); | 
|---|
| 453 | char signed             ?=?( char signed *, char signed ),                      ?=?( volatile char signed *, char signed ); | 
|---|
| 454 | char unsigned           ?=?( char unsigned *, char unsigned ),                  ?=?( volatile char unsigned *, char unsigned ); | 
|---|
| 455 | int short               ?=?( int short *, int short ),                          ?=?( volatile int short *, int short ); | 
|---|
| 456 | int short unsigned      ?=?( int short unsigned *, int short unsigned ),        ?=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 457 | signed int              ?=?( signed int *, signed int ),                        ?=?( volatile signed int *, signed int ); | 
|---|
| 458 | unsigned int            ?=?( unsigned *, unsigned ),                            ?=?( volatile unsigned *, unsigned ); | 
|---|
| 459 | signed long int         ?=?( signed long int *, signed long int ),              ?=?( volatile signed long int *, signed long int ); | 
|---|
| 460 | unsigned long int       ?=?( unsigned long int *, unsigned long int ),          ?=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 461 | signed long long int    ?=?( signed long long int *, signed long long int ),    ?=?( volatile signed long long int *, signed long long int ); | 
|---|
| 462 | unsigned long long int  ?=?( unsigned long long int *, unsigned long long int ), ?=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 463 |  | 
|---|
| 464 | _Bool                   ?*=?( _Bool *, _Bool ),                                 ?*=?( volatile _Bool *, _Bool ); | 
|---|
| 465 | char                    ?*=?( char *, char ),                                   ?*=?( volatile char *, char ); | 
|---|
| 466 | char signed             ?*=?( char signed *, char signed ),                     ?*=?( volatile char signed *, char signed ); | 
|---|
| 467 | char unsigned           ?*=?( char unsigned *, char unsigned ),                 ?*=?( volatile char unsigned *, char unsigned ); | 
|---|
| 468 | int short               ?*=?( int short *, int short ),                         ?*=?( volatile int short *, int short ); | 
|---|
| 469 | int short unsigned      ?*=?( int short unsigned *, int short unsigned ),       ?*=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 470 | signed int              ?*=?( signed int *, signed int ),                       ?*=?( volatile signed int *, signed int ); | 
|---|
| 471 | unsigned int            ?*=?( unsigned *, unsigned ),                           ?*=?( volatile unsigned *, unsigned ); | 
|---|
| 472 | signed long int         ?*=?( signed long int *, signed long int ),             ?*=?( volatile signed long int *, signed long int ); | 
|---|
| 473 | unsigned long int       ?*=?( unsigned long int *, unsigned long int ),         ?*=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 474 | signed long long int    ?*=?( signed long long int *, signed long long int ),   ?*=?( volatile signed long long int *, signed long long int ); | 
|---|
| 475 | unsigned long long int  ?*=?( unsigned long long int *, unsigned long long int ), ?*=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 476 |  | 
|---|
| 477 | _Bool                   ?/=?( _Bool *, _Bool ),                                 ?/=?( volatile _Bool *, _Bool ); | 
|---|
| 478 | char                    ?/=?( char *, char ),                                   ?/=?( volatile char *, char ); | 
|---|
| 479 | char signed             ?/=?( char signed *, char signed ),                     ?/=?( volatile char signed *, char signed ); | 
|---|
| 480 | char unsigned           ?/=?( char unsigned *, char unsigned ),                 ?/=?( volatile char unsigned *, char unsigned ); | 
|---|
| 481 | int short               ?/=?( int short *, int short ),                         ?/=?( volatile int short *, int short ); | 
|---|
| 482 | int short unsigned      ?/=?( int short unsigned *, int short unsigned ),       ?/=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 483 | signed int              ?/=?( signed int *, signed int ),                       ?/=?( volatile signed int *, signed int ); | 
|---|
| 484 | unsigned int            ?/=?( unsigned *, unsigned ),                           ?/=?( volatile unsigned *, unsigned ); | 
|---|
| 485 | signed long int         ?/=?( signed long int *, signed long int ),             ?/=?( volatile signed long int *, signed long int ); | 
|---|
| 486 | unsigned long int       ?/=?( unsigned long int *, unsigned long int ),         ?/=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 487 | signed long long int    ?/=?( signed long long int *, signed long long int ),   ?/=?( volatile signed long long int *, signed long long int ); | 
|---|
| 488 | unsigned long long int  ?/=?( unsigned long long int *, unsigned long long int ), ?/=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 489 |  | 
|---|
| 490 | _Bool                   ?%=?( _Bool *, _Bool ),                                 ?%=?( volatile _Bool *, _Bool ); | 
|---|
| 491 | char                    ?%=?( char *, char ),                                   ?%=?( volatile char *, char ); | 
|---|
| 492 | char signed             ?%=?( char signed *, char signed ),                     ?%=?( volatile char signed *, char signed ); | 
|---|
| 493 | char unsigned           ?%=?( char unsigned *, char unsigned ),                 ?%=?( volatile char unsigned *, char unsigned ); | 
|---|
| 494 | int short               ?%=?( int short *, int short ),                         ?%=?( volatile int short *, int short ); | 
|---|
| 495 | int short unsigned      ?%=?( int short unsigned *, int short unsigned ),       ?%=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 496 | signed int              ?%=?( signed int *, signed int ),                       ?%=?( volatile signed int *, signed int ); | 
|---|
| 497 | unsigned int            ?%=?( unsigned *, unsigned ),                           ?%=?( volatile unsigned *, unsigned ); | 
|---|
| 498 | signed long int         ?%=?( signed long int *, signed long int ),             ?%=?( volatile signed long int *, signed long int ); | 
|---|
| 499 | unsigned long int       ?%=?( unsigned long int *, unsigned long int ),         ?%=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 500 | signed long long int    ?%=?( signed long long int *, signed long long int ),   ?%=?( volatile signed long long int *, signed long long int ); | 
|---|
| 501 | unsigned long long int  ?%=?( unsigned long long int *, unsigned long long int ), ?%=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 502 |  | 
|---|
| 503 | _Bool                   ?+=?( _Bool *, _Bool ),                                 ?+=?( volatile _Bool *, _Bool ); | 
|---|
| 504 | char                    ?+=?( char *, char ),                                   ?+=?( volatile char *, char ); | 
|---|
| 505 | char signed             ?+=?( char signed *, char signed ),                     ?+=?( volatile char signed *, char signed ); | 
|---|
| 506 | char unsigned           ?+=?( char unsigned *, char unsigned ),                 ?+=?( volatile char unsigned *, char unsigned ); | 
|---|
| 507 | int short               ?+=?( int short *, int short ),                         ?+=?( volatile int short *, int short ); | 
|---|
| 508 | int short unsigned      ?+=?( int short unsigned *, int short unsigned ),       ?+=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 509 | signed int              ?+=?( signed int *, signed int ),                       ?+=?( volatile signed int *, signed int ); | 
|---|
| 510 | unsigned int            ?+=?( unsigned *, unsigned ),                           ?+=?( volatile unsigned *, unsigned ); | 
|---|
| 511 | signed long int         ?+=?( signed long int *, signed long int ),             ?+=?( volatile signed long int *, signed long int ); | 
|---|
| 512 | unsigned long int       ?+=?( unsigned long int *, unsigned long int ),         ?+=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 513 | signed long long int    ?+=?( signed long long int *, signed long long int ),   ?+=?( volatile signed long long int *, signed long long int ); | 
|---|
| 514 | unsigned long long int  ?+=?( unsigned long long int *, unsigned long long int ), ?+=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 515 |  | 
|---|
| 516 | _Bool                   ?-=?( _Bool *, _Bool ),                                 ?-=?( volatile _Bool *, _Bool ); | 
|---|
| 517 | char                    ?-=?( char *, char ),                                   ?-=?( volatile char *, char ); | 
|---|
| 518 | char signed             ?-=?( char signed *, char signed ),                     ?-=?( volatile char signed *, char signed ); | 
|---|
| 519 | char unsigned           ?-=?( char unsigned *, char unsigned ),                 ?-=?( volatile char unsigned *, char unsigned ); | 
|---|
| 520 | int short               ?-=?( int short *, int short ),                         ?-=?( volatile int short *, int short ); | 
|---|
| 521 | int short unsigned      ?-=?( int short unsigned *, int short unsigned ),       ?-=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 522 | signed int              ?-=?( signed int *, signed int ),                       ?-=?( volatile signed int *, signed int ); | 
|---|
| 523 | unsigned int            ?-=?( unsigned *, unsigned ),                           ?-=?( volatile unsigned *, unsigned ); | 
|---|
| 524 | signed long int         ?-=?( signed long int *, signed long int ),             ?-=?( volatile signed long int *, signed long int ); | 
|---|
| 525 | unsigned long int       ?-=?( unsigned long int *, unsigned long int ),         ?-=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 526 | signed long long int    ?-=?( signed long long int *, signed long long int ),   ?-=?( volatile signed long long int *, signed long long int ); | 
|---|
| 527 | unsigned long long int  ?-=?( unsigned long long int *, unsigned long long int ), ?-=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 528 |  | 
|---|
| 529 | _Bool                   ?<<=?( _Bool *, _Bool ),                                ?<<=?( volatile _Bool *, _Bool ); | 
|---|
| 530 | char                    ?<<=?( char *, char ),                                  ?<<=?( volatile char *, char ); | 
|---|
| 531 | char signed             ?<<=?( char signed *, char signed ),                    ?<<=?( volatile char signed *, char signed ); | 
|---|
| 532 | char unsigned           ?<<=?( char unsigned *, char unsigned ),                ?<<=?( volatile char unsigned *, char unsigned ); | 
|---|
| 533 | int short               ?<<=?( int short *, int short ),                        ?<<=?( volatile int short *, int short ); | 
|---|
| 534 | int short unsigned      ?<<=?( int short unsigned *, int short unsigned ),      ?<<=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 535 | signed int              ?<<=?( signed int *, signed int ),                      ?<<=?( volatile signed int *, signed int ); | 
|---|
| 536 | unsigned int            ?<<=?( unsigned *, unsigned ),                          ?<<=?( volatile unsigned *, unsigned ); | 
|---|
| 537 | signed long int         ?<<=?( signed long int *, signed long int ),            ?<<=?( volatile signed long int *, signed long int ); | 
|---|
| 538 | unsigned long int       ?<<=?( unsigned long int *, unsigned long int ),        ?<<=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 539 | signed long long int    ?<<=?( signed long long int *, signed long long int ),  ?<<=?( volatile signed long long int *, signed long long int ); | 
|---|
| 540 | unsigned long long int  ?<<=?( unsigned long long int *, unsigned long long int ), ?<<=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 541 |  | 
|---|
| 542 | _Bool                   ?>>=?( _Bool *, _Bool ),                                ?>>=?( volatile _Bool *, _Bool ); | 
|---|
| 543 | char                    ?>>=?( char *, char ),                                  ?>>=?( volatile char *, char ); | 
|---|
| 544 | char signed             ?>>=?( char signed *, char signed ),                    ?>>=?( volatile char signed *, char signed ); | 
|---|
| 545 | char unsigned           ?>>=?( char unsigned *, char unsigned ),                ?>>=?( volatile char unsigned *, char unsigned ); | 
|---|
| 546 | int short               ?>>=?( int short *, int short ),                        ?>>=?( volatile int short *, int short ); | 
|---|
| 547 | int short unsigned      ?>>=?( int short unsigned *, int short unsigned ),      ?>>=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 548 | signed int              ?>>=?( signed int *, signed int ),                      ?>>=?( volatile signed int *, signed int ); | 
|---|
| 549 | unsigned int            ?>>=?( unsigned *, unsigned ),                          ?>>=?( volatile unsigned *, unsigned ); | 
|---|
| 550 | signed long int         ?>>=?( signed long int *, signed long int ),            ?>>=?( volatile signed long int *, signed long int ); | 
|---|
| 551 | unsigned long int       ?>>=?( unsigned long int *, unsigned long int ),        ?>>=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 552 | signed long long int    ?>>=?( signed long long int *, signed long long int ),  ?>>=?( volatile signed long long int *, signed long long int ); | 
|---|
| 553 | unsigned long long int  ?>>=?( unsigned long long int *, unsigned long long int ), ?>>=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 554 |  | 
|---|
| 555 | _Bool                   ?&=?( _Bool *, _Bool ),                                 ?&=?( volatile _Bool *, _Bool ); | 
|---|
| 556 | char                    ?&=?( char *, char ),                                   ?&=?( volatile char *, char ); | 
|---|
| 557 | char signed             ?&=?( char signed *, char signed ),                     ?&=?( volatile char signed *, char signed ); | 
|---|
| 558 | char unsigned           ?&=?( char unsigned *, char unsigned ),                 ?&=?( volatile char unsigned *, char unsigned ); | 
|---|
| 559 | int short               ?&=?( int short *, int short ),                         ?&=?( volatile int short *, int short ); | 
|---|
| 560 | int short unsigned      ?&=?( int short unsigned *, int short unsigned ),       ?&=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 561 | signed int              ?&=?( signed int *, signed int ),                       ?&=?( volatile signed int *, signed int ); | 
|---|
| 562 | unsigned int            ?&=?( unsigned *, unsigned ),                           ?&=?( volatile unsigned *, unsigned ); | 
|---|
| 563 | signed long int         ?&=?( signed long int *, signed long int ),             ?&=?( volatile signed long int *, signed long int ); | 
|---|
| 564 | unsigned long int       ?&=?( unsigned long int *, unsigned long int ),         ?&=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 565 | signed long long int    ?&=?( signed long long int *, signed long long int ),   ?&=?( volatile signed long long int *, signed long long int ); | 
|---|
| 566 | unsigned long long int  ?&=?( unsigned long long int *, unsigned long long int ), ?&=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 567 |  | 
|---|
| 568 | _Bool                   ?|=?( _Bool *, _Bool ),                                 ?|=?( volatile _Bool *, _Bool ); | 
|---|
| 569 | char                    ?|=?( char *, char ),                                   ?|=?( volatile char *, char ); | 
|---|
| 570 | char signed             ?|=?( char signed *, char signed ),                     ?|=?( volatile char signed *, char signed ); | 
|---|
| 571 | char unsigned           ?|=?( char unsigned *, char unsigned ),                 ?|=?( volatile char unsigned *, char unsigned ); | 
|---|
| 572 | int short               ?|=?( int short *, int short ),                         ?|=?( volatile int short *, int short ); | 
|---|
| 573 | int short unsigned      ?|=?( int short unsigned *, int short unsigned ),       ?|=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 574 | signed int              ?|=?( signed int *, signed int ),                       ?|=?( volatile signed int *, signed int ); | 
|---|
| 575 | unsigned int            ?|=?( unsigned *, unsigned ),                           ?|=?( volatile unsigned *, unsigned ); | 
|---|
| 576 | signed long int         ?|=?( signed long int *, signed long int ),             ?|=?( volatile signed long int *, signed long int ); | 
|---|
| 577 | unsigned long int       ?|=?( unsigned long int *, unsigned long int ),         ?|=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 578 | signed long long int    ?|=?( signed long long int *, signed long long int ),   ?|=?( volatile signed long long int *, signed long long int ); | 
|---|
| 579 | unsigned long long int  ?|=?( unsigned long long int *, unsigned long long int ), ?|=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 580 |  | 
|---|
| 581 | _Bool                   ?^=?( _Bool *, _Bool ),                                 ?^=?( volatile _Bool *, _Bool ); | 
|---|
| 582 | char                    ?^=?( char *, char ),                                   ?^=?( volatile char *, char ); | 
|---|
| 583 | char signed             ?^=?( char signed *, char signed ),                     ?^=?( volatile char signed *, char signed ); | 
|---|
| 584 | char unsigned           ?^=?( char unsigned *, char unsigned ),                 ?^=?( volatile char unsigned *, char unsigned ); | 
|---|
| 585 | int short               ?^=?( int short *, int short ),                         ?^=?( volatile int short *, int short ); | 
|---|
| 586 | int short unsigned      ?^=?( int short unsigned *, int short unsigned ),       ?^=?( volatile int short unsigned *, int short unsigned ); | 
|---|
| 587 | signed int              ?^=?( signed int *, signed int ),                       ?^=?( volatile signed int *, signed int ); | 
|---|
| 588 | unsigned int            ?^=?( unsigned *, unsigned ),                           ?^=?( volatile unsigned *, unsigned ); | 
|---|
| 589 | signed long int         ?^=?( signed long int *, signed long int ),             ?^=?( volatile signed long int *, signed long int ); | 
|---|
| 590 | unsigned long int       ?^=?( unsigned long int *, unsigned long int ),         ?^=?( volatile unsigned long int *, unsigned long int ); | 
|---|
| 591 | signed long long int    ?^=?( signed long long int *, signed long long int ),   ?^=?( volatile signed long long int *, signed long long int ); | 
|---|
| 592 | unsigned long long int  ?^=?( unsigned long long int *, unsigned long long int ), ?^=?( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 593 |  | 
|---|
| 594 | float                   ?=?(  float *, float ), ?=?(  volatile float *, float ), | 
|---|
| 595 | ?*=?( float *, float ), ?*=?( volatile float *, float ), | 
|---|
| 596 | ?/=?( float *, float ), ?/=?( volatile float *, float ), | 
|---|
| 597 | ?+=?( float *, float ), ?+=?( volatile float *, float ), | 
|---|
| 598 | ?-=?( float *, float ), ?-=?( volatile float *, float ); | 
|---|
| 599 |  | 
|---|
| 600 | double                  ?=?(  double *, double ), ?=?(  volatile double *, double ), | 
|---|
| 601 | ?*=?( double *, double ), ?*=?( volatile double *, double ), | 
|---|
| 602 | ?/=?( double *, double ), ?/=?( volatile double *, double ), | 
|---|
| 603 | ?+=?( double *, double ), ?+=?( volatile double *, double ), | 
|---|
| 604 | ?-=?( double *, double ), ?-=?( volatile double *, double ); | 
|---|
| 605 |  | 
|---|
| 606 | long double             ?=?(  long double *, long double ), ?=?(  volatile long double *, long double ), | 
|---|
| 607 | ?*=?( long double *, long double ), ?*=?( volatile long double *, long double ), | 
|---|
| 608 | ?/=?( long double *, long double ), ?/=?( volatile long double *, long double ), | 
|---|
| 609 | ?+=?( long double *, long double ), ?+=?( volatile long double *, long double ), | 
|---|
| 610 | ?-=?( long double *, long double ), ?-=?( volatile long double *, long double ); | 
|---|
| 611 |  | 
|---|
| 612 | float _Complex          ?=?(  float _Complex *, float _Complex ), ?=?(  volatile float _Complex *, float _Complex ), | 
|---|
| 613 | ?*=?( float _Complex *, float _Complex ), ?*=?( volatile float _Complex *, float _Complex ), | 
|---|
| 614 | ?/=?( float _Complex *, float _Complex ), ?/=?( volatile float _Complex *, float _Complex ), | 
|---|
| 615 | ?+=?( float _Complex *, float _Complex ), ?+=?( volatile float _Complex *, float _Complex ), | 
|---|
| 616 | ?-=?( float _Complex *, float _Complex ), ?-=?( volatile float _Complex *, float _Complex ); | 
|---|
| 617 |  | 
|---|
| 618 | double _Complex         ?=?(  double _Complex *, double _Complex ), ?=?(  volatile double _Complex *, double _Complex ), | 
|---|
| 619 | ?*=?( double _Complex *, double _Complex ), ?*=?( volatile double _Complex *, double _Complex ), | 
|---|
| 620 | ?/=?( double _Complex *, double _Complex ), ?/=?( volatile double _Complex *, double _Complex ), | 
|---|
| 621 | ?+=?( double _Complex *, double _Complex ), ?+=?( volatile double _Complex *, double _Complex ), | 
|---|
| 622 | ?-=?( double _Complex *, double _Complex ), ?-=?( volatile double _Complex *, double _Complex ); | 
|---|
| 623 |  | 
|---|
| 624 | long double _Complex    ?=?(  long double _Complex *, long double _Complex ), ?=?(  volatile long double _Complex *, long double _Complex ), | 
|---|
| 625 | ?*=?( long double _Complex *, long double _Complex ), ?*=?( volatile long double _Complex *, long double _Complex ), | 
|---|
| 626 | ?/=?( long double _Complex *, long double _Complex ), ?/=?( volatile long double _Complex *, long double _Complex ), | 
|---|
| 627 | ?+=?( long double _Complex *, long double _Complex ), ?+=?( volatile long double _Complex *, long double _Complex ), | 
|---|
| 628 | ?-=?( long double _Complex *, long double _Complex ), ?-=?( volatile long double _Complex *, long double _Complex ); | 
|---|
| 629 |  | 
|---|
| 630 |  | 
|---|
| 631 |  | 
|---|
| 632 |  | 
|---|
| 633 |  | 
|---|
| 634 | // ------------------------------------------------------------ | 
|---|
| 635 | // | 
|---|
| 636 | // Section ??? Constructors and Destructors | 
|---|
| 637 | // | 
|---|
| 638 | // ------------------------------------------------------------ | 
|---|
| 639 |  | 
|---|
| 640 | // default ctor | 
|---|
| 641 | void    ?{}( _Bool * ),                         ?{}( volatile _Bool * ); | 
|---|
| 642 | void    ?{}( char * ),  ?{}( volatile char * ); | 
|---|
| 643 | void    ?{}( unsigned char * ), ?{}( volatile unsigned char * ); | 
|---|
| 644 | void    ?{}( char signed * ),                   ?{}( volatile char signed * ); | 
|---|
| 645 | void    ?{}( int short * ),                             ?{}( volatile int short * ); | 
|---|
| 646 | void    ?{}( int short unsigned * ),    ?{}( volatile int short unsigned * ); | 
|---|
| 647 | void    ?{}( signed int * ),                    ?{}( volatile signed int * ); | 
|---|
| 648 | void    ?{}( unsigned int * ),                  ?{}( volatile unsigned int * ); | 
|---|
| 649 | void    ?{}( signed long int * ),               ?{}( volatile signed long int * ); | 
|---|
| 650 | void    ?{}( unsigned long int * ),             ?{}( volatile unsigned long int * ); | 
|---|
| 651 | void    ?{}( signed long long int * ),          ?{}( volatile signed long long int * ); | 
|---|
| 652 | void    ?{}( unsigned long long int * ),        ?{}( volatile unsigned long long int * ); | 
|---|
| 653 | void    ?{}( float * ),                         ?{}( volatile float * ); | 
|---|
| 654 | void    ?{}( double * ),                        ?{}( volatile double * ); | 
|---|
| 655 | void    ?{}( long double * ),                   ?{}( volatile long double * ); | 
|---|
| 656 | void    ?{}( float _Complex * ),                ?{}( volatile float _Complex * ); | 
|---|
| 657 | void    ?{}( double _Complex * ),               ?{}( volatile double _Complex * ); | 
|---|
| 658 | void    ?{}( long double _Complex * ),          ?{}( volatile long double _Complex * ); | 
|---|
| 659 |  | 
|---|
| 660 | // copy ctor | 
|---|
| 661 | void    ?{}( _Bool *, _Bool ),                                  ?{}( volatile _Bool *, _Bool ); | 
|---|
| 662 | void    ?{}( char *, char ),    ?{}( volatile char *, char ); | 
|---|
| 663 | void    ?{}( unsigned char *, unsigned char ),                  ?{}( volatile unsigned char *, unsigned char ); | 
|---|
| 664 | void    ?{}( char signed *, char signed ),                      ?{}( volatile char signed *, char signed ); | 
|---|
| 665 | void    ?{}( int short *, int short ),                          ?{}( volatile int short *, int short ); | 
|---|
| 666 | void    ?{}( int short unsigned *, int short unsigned ),        ?{}( volatile int short unsigned *, int short unsigned ); | 
|---|
| 667 | void    ?{}( signed int *, signed int),                         ?{}( volatile signed int *, signed int ); | 
|---|
| 668 | void    ?{}( unsigned int *, unsigned int),                     ?{}( volatile unsigned int *, unsigned int ); | 
|---|
| 669 | void    ?{}( signed long int *, signed long int),               ?{}( volatile signed long int *, signed long int ); | 
|---|
| 670 | void    ?{}( unsigned long int *, unsigned long int),           ?{}( volatile unsigned long int *, unsigned long int ); | 
|---|
| 671 | void    ?{}( signed long long int *, signed long long int),     ?{}( volatile signed long long int *, signed long long int ); | 
|---|
| 672 | void    ?{}( unsigned long long int *, unsigned long long int), ?{}( volatile unsigned long long int *, unsigned long long int ); | 
|---|
| 673 | void    ?{}( float *, float),                                   ?{}( volatile float *, float ); | 
|---|
| 674 | void    ?{}( double *, double),                                 ?{}( volatile double *, double ); | 
|---|
| 675 | void    ?{}( long double *, long double),                       ?{}( volatile long double *, long double ); | 
|---|
| 676 | void    ?{}( float _Complex *, float _Complex),                 ?{}( volatile float _Complex *, float _Complex ); | 
|---|
| 677 | void    ?{}( double _Complex *, double _Complex),               ?{}( volatile double _Complex *, double _Complex ); | 
|---|
| 678 | void    ?{}( long double _Complex *, long double _Complex),     ?{}( volatile long double _Complex *, long double _Complex ); | 
|---|
| 679 |  | 
|---|
| 680 | // dtor | 
|---|
| 681 | void    ^?{}( _Bool * ),                        ^?{}( volatile _Bool * ); | 
|---|
| 682 | void    ^?{}( char * ), ^?{}( volatile char * ); | 
|---|
| 683 | void    ^?{}( char unsigned * ),                        ^?{}( volatile char unsigned * ); | 
|---|
| 684 | void    ^?{}( char signed * ),                  ^?{}( volatile char signed * ); | 
|---|
| 685 | void    ^?{}( int short * ),                            ^?{}( volatile int short * ); | 
|---|
| 686 | void    ^?{}( int short unsigned * ),   ^?{}( volatile int short unsigned * ); | 
|---|
| 687 | void    ^?{}( signed int * ),                   ^?{}( volatile signed int * ); | 
|---|
| 688 | void    ^?{}( unsigned int * ),                 ^?{}( volatile unsigned int * ); | 
|---|
| 689 | void    ^?{}( signed long int * ),              ^?{}( volatile signed long int * ); | 
|---|
| 690 | void    ^?{}( unsigned long int * ),            ^?{}( volatile unsigned long int * ); | 
|---|
| 691 | void    ^?{}( signed long long int * ),         ^?{}( volatile signed long long int * ); | 
|---|
| 692 | void    ^?{}( unsigned long long int * ),       ^?{}( volatile unsigned long long int * ); | 
|---|
| 693 | void    ^?{}( float * ),                        ^?{}( volatile float * ); | 
|---|
| 694 | void    ^?{}( double * ),                       ^?{}( volatile double * ); | 
|---|
| 695 | void    ^?{}( long double * ),                  ^?{}( volatile long double * ); | 
|---|
| 696 | void    ^?{}( float _Complex * ),               ^?{}( volatile float _Complex * ); | 
|---|
| 697 | void    ^?{}( double _Complex * ),              ^?{}( volatile double _Complex * ); | 
|---|
| 698 | void    ^?{}( long double _Complex * ),         ^?{}( volatile long double _Complex * ); | 
|---|
| 699 |  | 
|---|
| 700 | // // default ctor | 
|---|
| 701 | // forall( dtype DT ) void       ?{}(                DT ** ); | 
|---|
| 702 | // forall( dtype DT ) void       ?{}( const          DT ** ); | 
|---|
| 703 | // forall( dtype DT ) void       ?{}(       volatile DT ** ); | 
|---|
| 704 | // forall( dtype DT ) void       ?{}( const volatile DT ** ); | 
|---|
| 705 |  | 
|---|
| 706 | // // copy ctor | 
|---|
| 707 | // forall( dtype DT ) void       ?{}(                DT **, DT* ); | 
|---|
| 708 | // forall( dtype DT ) void       ?{}( const          DT **, DT* ); | 
|---|
| 709 | // forall( dtype DT ) void       ?{}(       volatile DT **, DT* ); | 
|---|
| 710 | // forall( dtype DT ) void       ?{}( const volatile DT **, DT* ); | 
|---|
| 711 |  | 
|---|
| 712 | // // dtor | 
|---|
| 713 | // forall( dtype DT ) void      ^?{}(                DT ** ); | 
|---|
| 714 | // forall( dtype DT ) void      ^?{}( const          DT ** ); | 
|---|
| 715 | // forall( dtype DT ) void      ^?{}(       volatile DT ** ); | 
|---|
| 716 | // forall( dtype DT ) void      ^?{}( const volatile DT ** ); | 
|---|
| 717 |  | 
|---|
| 718 | // copied from assignment section | 
|---|
| 719 | // copy constructors | 
|---|
| 720 | forall( ftype FT ) void ?{}( FT **, FT * ); | 
|---|
| 721 | forall( ftype FT ) void ?{}( FT * volatile *, FT * ); | 
|---|
| 722 |  | 
|---|
| 723 | forall( dtype DT ) void ?{}(                 DT *          *,                   DT * ); | 
|---|
| 724 | forall( dtype DT ) void ?{}(                 DT * volatile *,                   DT * ); | 
|---|
| 725 | forall( dtype DT ) void ?{}( const           DT *          *,                   DT * ); | 
|---|
| 726 | forall( dtype DT ) void ?{}( const           DT * volatile *,                   DT * ); | 
|---|
| 727 | forall( dtype DT ) void ?{}( const           DT *          *, const             DT * ); | 
|---|
| 728 | forall( dtype DT ) void ?{}( const           DT * volatile *, const             DT * ); | 
|---|
| 729 | forall( dtype DT ) void ?{}(       volatile  DT *          *,                   DT * ); | 
|---|
| 730 | forall( dtype DT ) void ?{}(       volatile  DT * volatile *,                   DT * ); | 
|---|
| 731 | forall( dtype DT ) void ?{}(       volatile  DT *          *,       volatile    DT * ); | 
|---|
| 732 | forall( dtype DT ) void ?{}(       volatile  DT * volatile *,       volatile    DT * ); | 
|---|
| 733 |  | 
|---|
| 734 | forall( dtype DT ) void ?{}( const volatile  DT *          *,                   DT * ); | 
|---|
| 735 | forall( dtype DT ) void ?{}( const volatile  DT * volatile *,                   DT * ); | 
|---|
| 736 | forall( dtype DT ) void ?{}( const volatile  DT *          *, const             DT * ); | 
|---|
| 737 | forall( dtype DT ) void ?{}( const volatile  DT * volatile *, const             DT * ); | 
|---|
| 738 | forall( dtype DT ) void ?{}( const volatile  DT *          *,       volatile    DT * ); | 
|---|
| 739 | forall( dtype DT ) void ?{}( const volatile  DT * volatile *,       volatile    DT * ); | 
|---|
| 740 | forall( dtype DT ) void ?{}( const volatile  DT *          *, const volatile    DT * ); | 
|---|
| 741 | forall( dtype DT ) void ?{}( const volatile  DT * volatile *, const volatile    DT * ); | 
|---|
| 742 |  | 
|---|
| 743 | forall( dtype DT ) void ?{}(                 DT *          *,                   void * ); | 
|---|
| 744 | forall( dtype DT ) void ?{}(                 DT * volatile *,                   void * ); | 
|---|
| 745 | forall( dtype DT ) void ?{}( const           DT *          *,                   void * ); | 
|---|
| 746 | forall( dtype DT ) void ?{}( const           DT * volatile *,                   void * ); | 
|---|
| 747 | forall( dtype DT ) void ?{}( const           DT *          *, const             void * ); | 
|---|
| 748 | forall( dtype DT ) void ?{}( const           DT * volatile *, const             void * ); | 
|---|
| 749 | forall( dtype DT ) void ?{}(       volatile  DT *          *,                   void * ); | 
|---|
| 750 | forall( dtype DT ) void ?{}(       volatile  DT * volatile *,                   void * ); | 
|---|
| 751 | forall( dtype DT ) void ?{}(       volatile  DT *          *,       volatile    void * ); | 
|---|
| 752 | forall( dtype DT ) void ?{}(       volatile  DT * volatile *,       volatile    void * ); | 
|---|
| 753 |  | 
|---|
| 754 | forall( dtype DT ) void ?{}( const volatile  DT *          *,                   void * ); | 
|---|
| 755 | forall( dtype DT ) void ?{}( const volatile  DT * volatile *,                   void * ); | 
|---|
| 756 | forall( dtype DT ) void ?{}( const volatile  DT *          *, const             void * ); | 
|---|
| 757 | forall( dtype DT ) void ?{}( const volatile  DT * volatile *, const             void * ); | 
|---|
| 758 | forall( dtype DT ) void ?{}( const volatile  DT *          *,       volatile    void * ); | 
|---|
| 759 | forall( dtype DT ) void ?{}( const volatile  DT * volatile *,       volatile    void * ); | 
|---|
| 760 | forall( dtype DT ) void ?{}( const volatile  DT *          *, const volatile    void * ); | 
|---|
| 761 | forall( dtype DT ) void ?{}( const volatile  DT * volatile *, const volatile    void * ); | 
|---|
| 762 |  | 
|---|
| 763 | forall( dtype DT ) void ?{}(                 void *          *,                 DT * ); | 
|---|
| 764 | forall( dtype DT ) void ?{}(                 void * volatile *,                 DT * ); | 
|---|
| 765 | forall( dtype DT ) void ?{}( const           void *          *,                 DT * ); | 
|---|
| 766 | forall( dtype DT ) void ?{}( const           void * volatile *,                 DT * ); | 
|---|
| 767 | forall( dtype DT ) void ?{}( const           void *          *, const           DT * ); | 
|---|
| 768 | forall( dtype DT ) void ?{}( const           void * volatile *, const           DT * ); | 
|---|
| 769 | forall( dtype DT ) void ?{}(        volatile void *          *,                 DT * ); | 
|---|
| 770 | forall( dtype DT ) void ?{}(        volatile void * volatile *,                 DT * ); | 
|---|
| 771 | forall( dtype DT ) void ?{}(        volatile void *          *,       volatile  DT * ); | 
|---|
| 772 | forall( dtype DT ) void ?{}(        volatile void * volatile *,       volatile  DT * ); | 
|---|
| 773 | forall( dtype DT ) void ?{}( const volatile void *           *,                 DT * ); | 
|---|
| 774 | forall( dtype DT ) void ?{}( const volatile void * volatile *,                  DT * ); | 
|---|
| 775 | forall( dtype DT ) void ?{}( const volatile void *           *, const           DT * ); | 
|---|
| 776 | forall( dtype DT ) void ?{}( const volatile void * volatile *, const            DT * ); | 
|---|
| 777 | forall( dtype DT ) void ?{}( const volatile void *           *,       volatile  DT * ); | 
|---|
| 778 | forall( dtype DT ) void ?{}( const volatile void * volatile *,        volatile  DT * ); | 
|---|
| 779 | forall( dtype DT ) void ?{}( const volatile void *           *, const volatile  DT * ); | 
|---|
| 780 | forall( dtype DT ) void ?{}( const volatile void * volatile *, const volatile   DT * ); | 
|---|
| 781 |  | 
|---|
| 782 | void    ?{}(                void *          *,                void * ); | 
|---|
| 783 | void    ?{}(                void * volatile *,                void * ); | 
|---|
| 784 | void    ?{}( const          void *          *,                void * ); | 
|---|
| 785 | void    ?{}( const          void * volatile *,                void * ); | 
|---|
| 786 | void    ?{}( const          void *          *, const          void * ); | 
|---|
| 787 | void    ?{}( const          void * volatile *, const          void * ); | 
|---|
| 788 | void    ?{}(       volatile void *          *,                void * ); | 
|---|
| 789 | void    ?{}(       volatile void * volatile *,                void * ); | 
|---|
| 790 | void    ?{}(       volatile void *          *,       volatile void * ); | 
|---|
| 791 | void    ?{}(       volatile void * volatile *,       volatile void * ); | 
|---|
| 792 | void    ?{}( const volatile void *          *,                void * ); | 
|---|
| 793 | void    ?{}( const volatile void * volatile *,                void * ); | 
|---|
| 794 | void    ?{}( const volatile void *          *, const          void * ); | 
|---|
| 795 | void    ?{}( const volatile void * volatile *, const          void * ); | 
|---|
| 796 | void    ?{}( const volatile void *          *,       volatile void * ); | 
|---|
| 797 | void    ?{}( const volatile void * volatile *,       volatile void * ); | 
|---|
| 798 | void    ?{}( const volatile void *          *, const volatile void * ); | 
|---|
| 799 | void    ?{}( const volatile void * volatile *, const volatile void * ); | 
|---|
| 800 |  | 
|---|
| 801 | //forall( dtype DT ) void ?{}(              DT *          *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 802 | //forall( dtype DT ) void ?{}(              DT * volatile *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 803 | forall( dtype DT ) void ?{}( const          DT *          *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 804 | forall( dtype DT ) void ?{}( const          DT * volatile *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 805 | //forall( dtype DT ) void ?{}( volatile     DT *          *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 806 | //forall( dtype DT ) void ?{}( volatile     DT * volatile *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 807 | forall( dtype DT ) void ?{}( const volatile DT *          *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 808 | forall( dtype DT ) void ?{}( const volatile DT * volatile *, forall( dtype DT2 ) const DT2 * ); | 
|---|
| 809 |  | 
|---|
| 810 | forall( ftype FT ) void ?{}( FT *          *, forall( ftype FT2 ) FT2 * ); | 
|---|
| 811 | forall( ftype FT ) void ?{}( FT * volatile *, forall( ftype FT2 ) FT2 * ); | 
|---|
| 812 |  | 
|---|
| 813 | // default ctors | 
|---|
| 814 | forall( ftype FT ) void ?{}( FT *          * ); | 
|---|
| 815 | forall( ftype FT ) void ?{}( FT * volatile * ); | 
|---|
| 816 |  | 
|---|
| 817 | forall( dtype DT ) void ?{}(                 DT *          *); | 
|---|
| 818 | forall( dtype DT ) void ?{}(                 DT * volatile *); | 
|---|
| 819 | forall( dtype DT ) void ?{}( const           DT *          *); | 
|---|
| 820 | forall( dtype DT ) void ?{}( const           DT * volatile *); | 
|---|
| 821 | forall( dtype DT ) void ?{}(       volatile  DT *          *); | 
|---|
| 822 | forall( dtype DT ) void ?{}(       volatile  DT * volatile *); | 
|---|
| 823 | forall( dtype DT ) void ?{}( const volatile  DT *          *); | 
|---|
| 824 | forall( dtype DT ) void ?{}( const volatile  DT * volatile *); | 
|---|
| 825 |  | 
|---|
| 826 | void    ?{}(                void *          *); | 
|---|
| 827 | void    ?{}(                void * volatile *); | 
|---|
| 828 | void    ?{}( const          void *          *); | 
|---|
| 829 | void    ?{}( const          void * volatile *); | 
|---|
| 830 | void    ?{}(       volatile void *          *); | 
|---|
| 831 | void    ?{}(       volatile void * volatile *); | 
|---|
| 832 | void    ?{}( const volatile void *          *); | 
|---|
| 833 | void    ?{}( const volatile void * volatile *); | 
|---|
| 834 |  | 
|---|
| 835 | // dtors | 
|---|
| 836 | forall( ftype FT ) void ^?{}( FT *         * ); | 
|---|
| 837 | forall( ftype FT ) void ^?{}( FT * volatile * ); | 
|---|
| 838 |  | 
|---|
| 839 | forall( dtype DT ) void ^?{}(                DT *          *); | 
|---|
| 840 | forall( dtype DT ) void ^?{}(                DT * volatile *); | 
|---|
| 841 | forall( dtype DT ) void ^?{}( const          DT *          *); | 
|---|
| 842 | forall( dtype DT ) void ^?{}( const          DT * volatile *); | 
|---|
| 843 | forall( dtype DT ) void ^?{}(      volatile  DT *          *); | 
|---|
| 844 | forall( dtype DT ) void ^?{}(      volatile  DT * volatile *); | 
|---|
| 845 | forall( dtype DT ) void ^?{}( const volatile  DT *         *); | 
|---|
| 846 | forall( dtype DT ) void ^?{}( const volatile  DT * volatile *); | 
|---|
| 847 |  | 
|---|
| 848 | void    ^?{}(               void *          *); | 
|---|
| 849 | void    ^?{}(               void * volatile *); | 
|---|
| 850 | void    ^?{}( const         void *          *); | 
|---|
| 851 | void    ^?{}( const         void * volatile *); | 
|---|
| 852 | void    ^?{}(      volatile void *          *); | 
|---|
| 853 | void    ^?{}(      volatile void * volatile *); | 
|---|
| 854 | void    ^?{}( const volatile void *         *); | 
|---|
| 855 | void    ^?{}( const volatile void * volatile *); | 
|---|