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

1 2

  /src/usr.sbin/gspa/gspa/
gsp_code.h 35 #define LONG 4
  /src/sys/lib/libsa/
subr_prf.c 48 #define INTMAX_T long
70 #define LONG 0x01
115 : (lflag & LONG) \
123 ul = (lflag & LONG) \
224 lflag |= LONG;
228 if (sizeof(intmax_t) == sizeof(long long))
232 if (sizeof(intmax_t) == sizeof(long))
233 lflag |= LONG;
236 if (sizeof(PTRDIFF_T) == sizeof(long))
    [all...]
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
jemalloc_internal_types.h 126 #define LONG ((size_t)(1U << LG_SIZEOF_LONG))
127 #define LONG_MASK (LONG - 1)
129 /* Return the smallest long multiple that is >= a. */
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
jemalloc_internal_types.h 132 #define LONG ((size_t)(1U << LG_SIZEOF_LONG))
133 #define LONG_MASK (LONG - 1)
135 /* Return the smallest long multiple that is >= a. */
  /src/external/gpl2/mkhybrid/dist/libfile/
file.h 55 char type; /* byte short long */
60 char type; /* int, short, long or string. */
64 #define LONG 4
79 unsigned char hl[4]; /* 2 bytes of a fixed-endian "long" */
  /src/bin/ps/
ps.h 45 CHAR, UCHAR, SHORT, USHORT, INT, UINT, LONG, ULONG,
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
jemalloc_internal_types.h 71 #define LONG ((size_t)(1U << LG_SIZEOF_LONG))
72 #define LONG_MASK (LONG - 1)
74 /* Return the smallest long multiple that is >= a. */
  /src/external/bsd/jemalloc/include/jemalloc/internal/
jemalloc_internal_types.h 71 #define LONG ((size_t)(1U << LG_SIZEOF_LONG))
72 #define LONG_MASK (LONG - 1)
74 /* Return the smallest long multiple that is >= a. */
  /src/external/gpl2/diffutils/dist/lib/
strtol.c 63 # define INT LONG int
65 # define INT unsigned LONG int
130 operating on `long long int's. */
132 # define LONG long long
152 # define ULONG_LONG_MAX TYPE_MAXIMUM (unsigned long long)
155 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int
    [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. */
117 # define LONG long long
152 # define ULONG_LONG_MAX TYPE_MAXIMUM (unsigned long long)
155 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
strtol.c 48 # define INT LONG int
50 # define INT unsigned LONG int
115 operating on `long long int's. */
117 # define LONG long long
152 # define ULONG_LONG_MAX TYPE_MAXIMUM (unsigned long long)
155 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int
    [all...]
  /src/external/gpl2/grep/dist/lib/
strtol.c 67 # define INT LONG int
69 # define INT unsigned LONG int
134 operating on `long long int's. */
136 # define LONG long long
156 # define ULONG_LONG_MAX TYPE_MAXIMUM (unsigned long long)
159 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int
    [all...]
  /src/external/gpl2/xcvs/dist/lib/
strtol.c 56 # define INT LONG int
58 # define INT unsigned LONG int
123 operating on `long long int's. */
125 # define LONG long long
160 # define ULONG_LONG_MAX TYPE_MAXIMUM (unsigned long long)
163 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int
    [all...]
  /src/lib/libc/stdio/
vfscanf.c 78 #define LONG 0x0001 /* l: long or double */
79 #define LONGDBL 0x0002 /* L: long double */
84 #define LONGLONG 0x0400 /* ll: long long (+ deprecated q: quad) */
230 if (flags & LONG) {
231 flags &= ~LONG;
234 flags |= LONG;
302 flags |= LONG;
315 flags |= LONG;
    [all...]
vfwscanf.c 73 #define LONG 0x01 /* l: long or double */
74 #define LONGDBL 0x02 /* L: long double */
225 if (flags & LONG) {
226 flags &= ~LONG;
229 flags |= LONG;
297 flags |= LONG;
321 flags |= LONG;
343 else if (flags & LONG)
344 *va_arg(ap, long *) = nread
    [all...]
  /src/usr.bin/xlint/common/
lint.h 74 LONG, /* (signed) long */
75 ULONG, /* unsigned long */
76 LLONG, /* (signed) long long */
77 ULLONG, /* unsigned long long */
81 DOUBLE, /* double or, with tflag, long float */
82 LDOUBLE, /* long double */
86 LCOMPLEX, /* long double _Complex *
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
Histable.h 68 NA, LONG, SHORT, MANGLED, SONAME = 0x10
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Histable.h 68 NA, LONG, SHORT, MANGLED, SONAME = 0x10
  /src/external/bsd/libpcap/dist/
pcap-airpcap.c 88 typedef enum LONG
126 current_status = InterlockedCompareExchange((LONG *)&airpcap_load_status,
141 current_status = InterlockedCompareExchange((LONG*)&airpcap_load_status,
231 InterlockedExchange((LONG *)&airpcap_load_status, current_status);
pcap-tc.c 74 typedef enum LONG
265 currentStatus = InterlockedCompareExchange((LONG*)&g_TcFunctions.LoadStatus, TC_API_LOADING, TC_API_UNLOADED);
269 currentStatus = InterlockedCompareExchange((LONG*)&g_TcFunctions.LoadStatus, TC_API_LOADING, TC_API_LOADING);
358 InterlockedExchange((LONG*)&g_TcFunctions.LoadStatus, currentStatus);
  /src/sys/arch/amd64/amd64/
db_disasm.c 62 #define LONG 2
105 #define Il 24 /* long immediate */
108 #define Dl 27 /* long displacement from EIP */
191 { "rdrand",true, LONG, op1(Rv), 0 },
192 { "rdseed",true, LONG, op1(Rv), 0 }
198 /*02*/ { "lar", true, LONG, op2(E,R), 0 },
199 /*03*/ { "lsl", true, LONG, op2(E,R), 0 },
236 /*20*/ { "mov", true, LONG, op2(CR,E), 0 }, /* use E for reg */
237 /*21*/ { "mov", true, LONG, op2(DR,E), 0 }, /* since mod == 11 */
238 /*22*/ { "mov", true, LONG, op2(E,CR), 0 }
    [all...]
  /src/sys/arch/i386/i386/
db_disasm.c 52 #define LONG 2
87 #define Il 24 /* long immediate */
90 #define Dl 27 /* long displacement from EIP */
98 #define El 35 /* address, long size */
99 #define Ril 36 /* long register in instruction */
185 /*02*/ { "lar", true, LONG, op2(E,R), 0 },
186 /*03*/ { "lsl", true, LONG, op2(E,R), 0 },
203 /*20*/ { "mov", true, LONG, op2(CR,El), 0 },
204 /*21*/ { "mov", true, LONG, op2(DR,El), 0 },
205 /*22*/ { "mov", true, LONG, op2(El,CR), 0 }
    [all...]
  /src/external/bsd/pcc/dist/pcc/mip/
manifest.h 72 #define LONG 8
  /src/external/gpl3/binutils/dist/include/opcode/
d30v.h 120 #define LONG 57
121 #define LONG_U 58 /* unary LONG */
122 #define LONG_Ur 59 /* LONG pc-relative */
124 #define LONG_M 61 /* Memory long for ldb, stb */
125 #define LONG_M2 62 /* Memory long for ld2w, st2w */
126 #define LONG_2 63 /* LONG with 2 operands; jmptnz */
127 #define LONG_2r 64 /* LONG with 2 operands; bratnz */
143 long flags_used;
144 long flags_set;
204 long flags
    [all...]
  /src/external/gpl3/binutils.old/dist/include/opcode/
d30v.h 120 #define LONG 57
121 #define LONG_U 58 /* unary LONG */
122 #define LONG_Ur 59 /* LONG pc-relative */
124 #define LONG_M 61 /* Memory long for ldb, stb */
125 #define LONG_M2 62 /* Memory long for ld2w, st2w */
126 #define LONG_2 63 /* LONG with 2 operands; jmptnz */
127 #define LONG_2r 64 /* LONG with 2 operands; bratnz */
143 long flags_used;
144 long flags_set;
204 long flags
    [all...]

Completed in 28 milliseconds

1 2