HomeSort by: relevance | last modified time | path
    Searched defs:INT (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/external/gpl2/diffutils/dist/lib/
strtoimax.c 51 unsigned long strtoul PARAMS ((char const *, char **, int));
57 unsigned long long strtoull PARAMS ((char const *, char **, int));
66 long strtol PARAMS ((char const *, char **, int));
72 long long strtoll PARAMS ((char const *, char **, int));
79 # define INT uintmax_t
84 # define INT intmax_t
87 INT
88 strtoimax (char const *ptr, char **endptr, int base)
92 (sizeof (INT) == sizeof (long)
93 || sizeof (INT) == sizeof (long long)))
    [all...]
strtol.c 35 extern int errno;
63 # define INT LONG int
65 # define INT unsigned LONG int
130 operating on `long long int's. */
155 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int)
158 # define LONG_LONG_MIN TYPE_MINIMUM (long long int)
163 static const unsigned long long int maxquad = ULONG_LONG_MAX;
174 # define LONG_MAX ((long int) (ULONG_MAX >> 1)
    [all...]
  /src/external/gpl3/binutils/dist/include/cgen/
basic-modes.h 44 typedef int INT;
45 typedef unsigned int UINT;
  /src/external/gpl3/binutils.old/dist/include/cgen/
basic-modes.h 44 typedef int INT;
45 typedef unsigned int UINT;
  /src/external/gpl3/gdb.old/dist/include/cgen/
basic-modes.h 44 typedef int INT;
45 typedef unsigned int UINT;
  /src/external/gpl3/gdb/dist/include/cgen/
basic-modes.h 44 typedef int INT;
45 typedef unsigned int UINT;
  /src/usr.sbin/sysinst/
txtwalk.h 38 enum kind {INT, STR};
43 int i_val;
56 int (*func) (struct data *list, size_t num, const struct lookfor*);
79 int walk(char *, size_t, const struct lookfor *, size_t);
  /src/usr.sbin/ipwctl/
ipwctl.c 55 static int do_req(const char *, unsigned long, void *);
59 int
60 main(int argc, char **argv)
62 int ch;
107 static int
110 int s;
112 int error, serrno;
130 int radio;
144 int index;
146 int unit
    [all...]
  /src/external/bsd/openldap/dist/contrib/ldapc++/src/
TlsOptions.cpp 18 INT=0,
24 int optval;
33 { LDAP_OPT_X_TLS_REQUIRE_CERT, INT },
34 { LDAP_OPT_X_TLS_PROTOCOL_MIN, INT },
37 { LDAP_OPT_X_TLS_CRLCHECK, INT },
39 { LDAP_OPT_X_TLS_NEWCTX, INT }
42 static const int TLS_CRLFILE /* GNUtls only */
43 static const int TLS_SSL_CTX /* OpenSSL SSL* */
44 static const int TLS_CONNECT_CB
45 static const int TLS_CONNECT_AR
    [all...]
  /src/tests/lib/libm/
t_fe_round.c 24 #define INT 9223L
27 rmname(int rm)
51 int round_mode;
53 long int expected;
59 { FE_DOWNWARD, -INT-0.0625, -INT-1},
60 { FE_DOWNWARD, +INT-0.0625, INT-1},
61 { FE_DOWNWARD, -INT+0.0625, -INT},
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
chained-calls.cc 26 int a;
45 f (int i)
54 int
64 int a;
102 int b[1024];
109 int i;
117 int
118 getb (const B &b, int i)
155 INT,
165 int a
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
chained-calls.cc 26 int get ();
28 int a;
46 int
53 f (int i)
62 int
72 int a;
110 int b[1024];
117 int i;
125 int
126 getb (const B &b, int i
    [all...]
  /src/bin/ps/
ps.h 45 CHAR, UCHAR, SHORT, USHORT, INT, UINT, LONG, ULONG,
63 int level;
86 int off; /* offset in structure */
91 int width; /* printing width */
  /src/usr.bin/audio/ctl/
ctl.c 57 static void getinfo(int fd);
58 static void audioctl_write(int, int, char *[]);
67 static int properties, fullduplex, rerror;
69 int verbose;
74 int format;
76 #define INT 2
140 { "record.errors", &rerror, INT, READONLY },
157 int i;
169 int i
    [all...]
  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
strtol.c 48 # define INT LONG int
50 # define INT unsigned LONG int
115 operating on `long long int's. */
155 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int)
158 # define LONG_LONG_MIN TYPE_MINIMUM (long long int)
163 static const unsigned long long int maxquad = ULONG_LONG_MAX;
234 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
fnmatch.c 66 extern int fnmatch (const char *pattern, const char *string, int flags);
139 static int posixly_correct;
151 # define INT int
181 # define INT wint_t
275 int
276 fnmatch (const char *pattern, const char *string, int flags)
292 int res;
strtol.c 48 # define INT LONG int
50 # define INT unsigned LONG int
115 operating on `long long int's. */
155 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int)
158 # define LONG_LONG_MIN TYPE_MINIMUM (long long int)
163 static const unsigned long long int maxquad = ULONG_LONG_MAX;
234 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE
    [all...]
  /src/external/gpl2/grep/dist/lib/
strtol.c 35 extern int errno;
67 # define INT LONG int
69 # define INT unsigned LONG int
134 operating on `long long int's. */
159 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int)
162 # define LONG_LONG_MIN TYPE_MINIMUM (long long int)
167 static const unsigned long long int maxquad = ULONG_LONG_MAX;
178 # define LONG_MAX ((long int) (ULONG_MAX >> 1)
    [all...]
  /src/external/gpl2/xcvs/dist/lib/
fnmatch.c 69 extern int fnmatch (const char *pattern, const char *string, int flags);
166 static int posixly_correct;
182 # define INT int
212 # define INT wint_t
306 int
307 fnmatch (const char *pattern, const char *string, int flags)
319 int res;
strtol.c 37 extern int errno;
56 # define INT LONG int
58 # define INT unsigned LONG int
123 operating on `long long int's. */
163 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int)
166 # define LONG_LONG_MIN TYPE_MINIMUM (long long int)
171 static const unsigned long long int maxquad = ULONG_LONG_MAX;
247 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
fnmatch.c 63 extern int fnmatch (const char *pattern, const char *string, int flags);
121 static int posixly_correct;
127 #define INT int
149 #define INT wint_t
235 int
236 fnmatch (const char *pattern, const char *string, int flags)
341 int res = internal_fnwmatch (wpattern, wstring, wstring + n,
  /src/external/gpl3/gdb.old/dist/gnulib/import/
fnmatch.c 63 extern int fnmatch (const char *pattern, const char *string, int flags);
121 static int posixly_correct;
127 #define INT int
149 #define INT wint_t
235 int
236 fnmatch (const char *pattern, const char *string, int flags)
341 int res = internal_fnwmatch (wpattern, wstring, wstring + n,
  /src/external/gpl3/gdb.old/dist/sim/common/
cgen-types.h 55 #define MAX_TARGET_MODES ((int) MODE_TARGET_MAX)
56 #define MAX_MODES ((int) MODE_MAX)
82 typedef int INT;
83 typedef unsigned int UINT;
  /src/external/gpl3/gdb/dist/sim/common/
cgen-types.h 55 #define MAX_TARGET_MODES ((int) MODE_TARGET_MAX)
56 #define MAX_MODES ((int) MODE_MAX)
82 typedef int INT;
83 typedef unsigned int UINT;
  /src/usr.bin/xlint/common/
lint.h 72 INT, /* (signed) int */
73 UINT, /* unsigned int */
95 #define NTSPEC ((int)FUNC + 1)
104 unsigned int tt_size_in_bits;
111 unsigned int tt_rank_value; /* relative size of the type; depends

Completed in 64 milliseconds

1 2 3