Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/externals/expat/src/internal.h

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

Diff markup

Differences between /externals/expat/src/internal.h (Version 11.3.0) and /externals/expat/src/internal.h (Version 5.1.p1)


  1 /* internal.h                                       1 
  2                                                   
  3    Internal definitions used by Expat.  This i    
  4    client code.                                   
  5                                                   
  6    The following calling convention macros are    
  7    called functions:                              
  8                                                   
  9    FASTCALL    - Used for those internal funct    
 10                  body and a low number of argu    
 11                                                   
 12    PTRCALL     - Used for functions called tho    
 13                                                   
 14    PTRFASTCALL - Like PTRCALL, but for low num    
 15                                                   
 16    inline      - Used for selected internal fu    
 17                  may improve performance on so    
 18                                                   
 19    Note: Use of these macros is based on judge    
 20          and therefore subject to change.         
 21                             __  __                
 22                          ___\ \/ /_ __   __ _|    
 23                         / _ \\  /| '_ \ / _` |    
 24                        |  __//  \| |_) | (_| |    
 25                         \___/_/\_\ .__/ \__,_|    
 26                                  |_| XML parse    
 27                                                   
 28    Copyright (c) 2002-2003 Fred L. Drake, Jr.     
 29    Copyright (c) 2002-2006 Karl Waclawek <karl    
 30    Copyright (c) 2003      Greg Stein <gstein@    
 31    Copyright (c) 2016-2022 Sebastian Pipping <    
 32    Copyright (c) 2018      Yury Gribov <tetra2    
 33    Copyright (c) 2019      David Loffredo <lof    
 34    Licensed under the MIT license:                
 35                                                   
 36    Permission is  hereby granted,  free of cha    
 37    a  copy  of  this  software   and  associat    
 38    "Software"),  to  deal in  the  Software  w    
 39    without  limitation the  rights  to use,  c    
 40    distribute, sublicense, and/or sell copies     
 41    persons  to whom  the Software  is  furnish    
 42    following conditions:                          
 43                                                   
 44    The above copyright  notice and this permis    
 45    in all copies or substantial portions of th    
 46                                                   
 47    THE  SOFTWARE  IS  PROVIDED  "AS  IS",  WIT    
 48    EXPRESS  OR IMPLIED,  INCLUDING  BUT  NOT L    
 49    MERCHANTABILITY, FITNESS FOR A PARTICULAR P    
 50    NO EVENT SHALL THE AUTHORS OR  COPYRIGHT HO    
 51    DAMAGES OR  OTHER LIABILITY, WHETHER  IN AN    
 52    OTHERWISE, ARISING FROM, OUT OF OR IN CONNE    
 53    USE OR OTHER DEALINGS IN THE SOFTWARE.         
 54 */                                                
 55                                                   
 56 #if defined(__GNUC__) && defined(__i386__) &&     
 57 /* We'll use this version by default only wher    
 58                                                   
 59    regparm() generates warnings on Solaris box    
 60                                                   
 61    Instability reported with egcs on a RedHat     
 62    Let's comment out:                             
 63    #define FASTCALL __attribute__((stdcall, re    
 64    and let's try this:                            
 65 */                                                
 66 #  define FASTCALL __attribute__((regparm(3)))    
 67 #  define PTRFASTCALL __attribute__((regparm(3    
 68 #endif                                            
 69                                                   
 70 /* Using __fastcall seems to have an unexpecte    
 71    MS VC++, especially for function pointers,     
 72    now on that platform. It may be reconsidere    
 73    if it can be made more effective.              
 74    Likely reason: __fastcall on Windows is lik    
 75    the compiler cannot perform stack optimizat    
 76 */                                                
 77                                                   
 78 /* Make sure all of these are defined if they     
 79                                                   
 80 #ifndef FASTCALL                                  
 81 #  define FASTCALL                                
 82 #endif                                            
 83                                                   
 84 #ifndef PTRCALL                                   
 85 #  define PTRCALL                                 
 86 #endif                                            
 87                                                   
 88 #ifndef PTRFASTCALL                               
 89 #  define PTRFASTCALL                             
 90 #endif                                            
 91                                                   
 92 #ifndef XML_MIN_SIZE                              
 93 #  if ! defined(__cplusplus) && ! defined(inli    
 94 #    ifdef __GNUC__                               
 95 #      define inline __inline                     
 96 #    endif /* __GNUC__ */                         
 97 #  endif                                          
 98 #endif /* XML_MIN_SIZE */                         
 99                                                   
100 #ifdef __cplusplus                                
101 #  define inline inline                           
102 #else                                             
103 #  ifndef inline                                  
104 #    define inline                                
105 #  endif                                          
106 #endif                                            
107                                                   
108 #include <limits.h> // ULONG_MAX                  
109                                                   
110 #if defined(_WIN32)                               
111     && (! defined(__USE_MINGW_ANSI_STDIO)         
112         || (1 - __USE_MINGW_ANSI_STDIO - 1 ==     
113 #  define EXPAT_FMT_ULL(midpart) "%" midpart "    
114 #  if defined(_WIN64) // Note: modifiers "td"     
115 #    define EXPAT_FMT_PTRDIFF_T(midpart) "%" m    
116 #    define EXPAT_FMT_SIZE_T(midpart) "%" midp    
117 #  else                                           
118 #    define EXPAT_FMT_PTRDIFF_T(midpart) "%" m    
119 #    define EXPAT_FMT_SIZE_T(midpart) "%" midp    
120 #  endif                                          
121 #else                                             
122 #  define EXPAT_FMT_ULL(midpart) "%" midpart "    
123 #  if ! defined(ULONG_MAX)                        
124 #    error Compiler did not define ULONG_MAX f    
125 #  elif ULONG_MAX == 18446744073709551615u //     
126 #    define EXPAT_FMT_PTRDIFF_T(midpart) "%" m    
127 #    define EXPAT_FMT_SIZE_T(midpart) "%" midp    
128 #  else                                           
129 #    define EXPAT_FMT_PTRDIFF_T(midpart) "%" m    
130 #    define EXPAT_FMT_SIZE_T(midpart) "%" midp    
131 #  endif                                          
132 #endif                                            
133                                                   
134 #ifndef UNUSED_P                                  
135 #  define UNUSED_P(p) (void)p                     
136 #endif                                            
137                                                   
138 /* NOTE BEGIN If you ever patch these defaults    
139               for non-attack XML payload in yo    
140               please file a bug report with li    
141 */                                                
142 #define EXPAT_BILLION_LAUGHS_ATTACK_PROTECTION    
143   100.0f                                          
144 #define EXPAT_BILLION_LAUGHS_ATTACK_PROTECTION    
145   8388608 // 8 MiB, 2^23                          
146 /* NOTE END */                                    
147                                                   
148 #include "expat.h" // so we can use type XML_P    
149                                                   
150 #ifdef __cplusplus                                
151 extern "C" {                                      
152 #endif                                            
153                                                   
154 void _INTERNAL_trim_to_complete_utf8_character    
155                                                   
156                                                   
157 #if defined(XML_DTD)                              
158 unsigned long long testingAccountingGetCountBy    
159 unsigned long long testingAccountingGetCountBy    
160 const char *unsignedCharToPrintable(unsigned c    
161 #endif                                            
162                                                   
163 #ifdef __cplusplus                                
164 }                                                 
165 #endif                                            
166