aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/integers.i
blob: 9569df7674cd7541c2abed719d3a3d6be1e484d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* This test case is meant to be used with run tests that check that
   -- the whole range of the integer types is supported;
   -- errors are signalled when out-of-range values are passed.
*/

%module integers;

%inline %{
  signed char signed_char_identity(signed char x) { return x; }
  unsigned char unsigned_char_identity(unsigned char x) { return x; }
  signed short signed_short_identity(signed short x) { return x; }
  unsigned short unsigned_short_identity(unsigned short x) { return x; }
  signed int signed_int_identity(signed int x) { return x; }
  unsigned int unsigned_int_identity(unsigned int x) { return x; }
  signed long signed_long_identity(signed long x) { return x; }
  unsigned long unsigned_long_identity(unsigned long x) { return x; }
  signed long long signed_long_long_identity(signed long long x) { return x; }
  unsigned long long unsigned_long_long_identity(unsigned long long x) { return x; }

#ifdef __cplusplus
  signed char        & signed_char_ref_identity(       signed char        & x) { return x; }
  unsigned char      & unsigned_char_ref_identity(     unsigned char      & x) { return x; }
  signed short       & signed_short_ref_identity(      signed short       & x) { return x; }
  unsigned short     & unsigned_short_ref_identity(    unsigned short     & x) { return x; }
  signed int         & signed_int_ref_identity(        signed int         & x) { return x; }
  unsigned int       & unsigned_int_ref_identity(      unsigned int       & x) { return x; }
  signed long        & signed_long_ref_identity(       signed long        & x) { return x; }
  unsigned long      & unsigned_long_ref_identity(     unsigned long      & x) { return x; }
  signed long long   & signed_long_long_ref_identity(  signed long long   & x) { return x; }
  unsigned long long & unsigned_long_long_ref_identity(unsigned long long & x) { return x; }

  const signed char        & const_signed_char_ref_identity(       const signed char        & x) { return x; }
  const unsigned char      & const_unsigned_char_ref_identity(     const unsigned char      & x) { return x; }
  const signed short       & const_signed_short_ref_identity(      const signed short       & x) { return x; }
  const unsigned short     & const_unsigned_short_ref_identity(    const unsigned short     & x) { return x; }
  const signed int         & const_signed_int_ref_identity(        const signed int         & x) { return x; }
  const unsigned int       & const_unsigned_int_ref_identity(      const unsigned int       & x) { return x; }
  const signed long        & const_signed_long_ref_identity(       const signed long        & x) { return x; }
  const unsigned long      & const_unsigned_long_ref_identity(     const unsigned long      & x) { return x; }
  const signed long long   & const_signed_long_long_ref_identity(  const signed long long   & x) { return x; }
  const unsigned long long & const_unsigned_long_long_ref_identity(const unsigned long long & x) { return x; }
#endif

  signed char        * signed_char_ptr() { return NULL; }
  unsigned char      * unsigned_char_ptr() { return NULL; }
  signed short       * signed_short_ptr() { return NULL; }
  unsigned short     * unsigned_short_ptr() { return NULL; }
  signed int         * signed_int_ptr() { return NULL; }
  unsigned int       * unsigned_int_ptr() { return NULL; }
  signed long        * signed_long_ptr() { return NULL; }
  unsigned long      * unsigned_long_ptr() { return NULL; }
  signed long long   * signed_long_long_ptr() { return NULL; }
  unsigned long long * unsigned_long_long_ptr() { return NULL; }

  size_t signed_char_size() { return sizeof (signed char); }
  size_t unsigned_char_size() { return sizeof (unsigned char); }
  size_t signed_short_size() { return sizeof (signed short); }
  size_t unsigned_short_size() { return sizeof (unsigned short); }
  size_t signed_int_size() { return sizeof (signed int); }
  size_t unsigned_int_size() { return sizeof (unsigned int); }
  size_t signed_long_size() { return sizeof (signed long); }
  size_t unsigned_long_size() { return sizeof (unsigned long); }
  size_t signed_long_long_size() { return sizeof (signed long long); }
  size_t unsigned_long_long_size() { return sizeof (unsigned long long); }
%}