int32_t            47 src/decNumber/decContext.h # if !defined(int32_t)
int32_t            78 src/decNumber/decContext.h     int32_t  digits;               /* working precision               */
int32_t            79 src/decNumber/decContext.h     int32_t  emax;                 /* maximum positive exponent       */
int32_t            80 src/decNumber/decContext.h     int32_t  emin;                 /* minimum negative exponent       */
int32_t           241 src/decNumber/decContext.h   extern decContext  * decContextDefault(decContext *, int32_t);
int32_t           252 src/decNumber/decContext.h   extern int32_t       decContextTestEndian(void);
int32_t            62 src/decNumber/decDouble.h   extern decDouble * decDoubleFromBCD(decDouble *, int32_t, const uint8_t *, int32_t);
int32_t            63 src/decNumber/decDouble.h   extern decDouble * decDoubleFromInt32(decDouble *, int32_t);
int32_t            64 src/decNumber/decDouble.h   extern decDouble * decDoubleFromPacked(decDouble *, int32_t, const uint8_t *);
int32_t            65 src/decNumber/decDouble.h   extern decDouble * decDoubleFromPackedChecked(decDouble *, int32_t, const uint8_t *);
int32_t            69 src/decNumber/decDouble.h   extern int32_t     decDoubleGetCoefficient(const decDouble *, uint8_t *);
int32_t            70 src/decNumber/decDouble.h   extern int32_t     decDoubleGetExponent(const decDouble *);
int32_t            71 src/decNumber/decDouble.h   extern decDouble * decDoubleSetCoefficient(decDouble *, const uint8_t *, int32_t);
int32_t            72 src/decNumber/decDouble.h   extern decDouble * decDoubleSetExponent(decDouble *, decContext *, int32_t);
int32_t            74 src/decNumber/decDouble.h   extern int32_t     decDoubleToBCD(const decDouble *, int32_t *, uint8_t *);
int32_t            76 src/decNumber/decDouble.h   extern int32_t     decDoubleToInt32(const decDouble *, decContext *, enum rounding);
int32_t            77 src/decNumber/decDouble.h   extern int32_t     decDoubleToInt32Exact(const decDouble *, decContext *, enum rounding);
int32_t            78 src/decNumber/decDouble.h   extern int32_t     decDoubleToPacked(const decDouble *, int32_t *, uint8_t *);
int32_t            72 src/decNumber/decNumber.h     int32_t digits;      /* Count of digits in the coefficient; >0    */
int32_t            73 src/decNumber/decNumber.h     int32_t exponent;    /* Unadjusted exponent, unbiased, in         */
int32_t           102 src/decNumber/decNumber.h   decNumber * decNumberFromInt32(decNumber *, int32_t);
int32_t           108 src/decNumber/decNumber.h   int32_t     decNumberToInt32(const decNumber *, decContext *);
int32_t           168 src/decNumber/decNumber.h   int32_t decNumberIsNormal(const decNumber *, decContext *);
int32_t           169 src/decNumber/decNumber.h   int32_t decNumberIsSubnormal(const decNumber *, decContext *);
int32_t           123 src/decNumber/decNumberLocal.h # define Int    int32_t
int32_t            50 src/decNumber/decPacked.h   uint8_t * decPackedFromNumber(uint8_t *, int32_t, int32_t *,
int32_t            52 src/decNumber/decPacked.h   decNumber * decPackedToNumber(const uint8_t *, int32_t,
int32_t            53 src/decNumber/decPacked.h                                 const int32_t *, decNumber *);
int32_t            86 src/decNumber/decQuad.h   extern decQuad * decQuadFromBCD(decQuad *, int32_t, const uint8_t *, int32_t);
int32_t            87 src/decNumber/decQuad.h   extern decQuad * decQuadFromInt32(decQuad *, int32_t);
int32_t            88 src/decNumber/decQuad.h   extern decQuad * decQuadFromPacked(decQuad *, int32_t, const uint8_t *);
int32_t            89 src/decNumber/decQuad.h   extern decQuad * decQuadFromPackedChecked(decQuad *, int32_t, const uint8_t *);
int32_t            92 src/decNumber/decQuad.h   extern int32_t   decQuadGetCoefficient(const decQuad *, uint8_t *);
int32_t            93 src/decNumber/decQuad.h   extern int32_t   decQuadGetExponent(const decQuad *);
int32_t            94 src/decNumber/decQuad.h   extern decQuad * decQuadSetCoefficient(decQuad *, const uint8_t *, int32_t);
int32_t            95 src/decNumber/decQuad.h   extern decQuad * decQuadSetExponent(decQuad *, decContext *, int32_t);
int32_t            97 src/decNumber/decQuad.h   extern int32_t   decQuadToBCD(const decQuad *, int32_t *, uint8_t *);
int32_t            99 src/decNumber/decQuad.h   extern int32_t   decQuadToInt32(const decQuad *, decContext *, enum rounding);
int32_t           100 src/decNumber/decQuad.h   extern int32_t   decQuadToInt32Exact(const decQuad *, decContext *, enum rounding);
int32_t           101 src/decNumber/decQuad.h   extern int32_t   decQuadToPacked(const decQuad *, int32_t *, uint8_t *);
int32_t            61 src/decNumber/decSingle.h   extern decSingle * decSingleFromBCD(decSingle *, int32_t, const uint8_t *, int32_t);
int32_t            62 src/decNumber/decSingle.h   extern decSingle * decSingleFromPacked(decSingle *, int32_t, const uint8_t *);
int32_t            63 src/decNumber/decSingle.h   extern decSingle * decSingleFromPackedChecked(decSingle *, int32_t, const uint8_t *);
int32_t            66 src/decNumber/decSingle.h   extern int32_t     decSingleGetCoefficient(const decSingle *, uint8_t *);
int32_t            67 src/decNumber/decSingle.h   extern int32_t     decSingleGetExponent(const decSingle *);
int32_t            68 src/decNumber/decSingle.h   extern decSingle * decSingleSetCoefficient(decSingle *, const uint8_t *, int32_t);
int32_t            69 src/decNumber/decSingle.h   extern decSingle * decSingleSetExponent(decSingle *, decContext *, int32_t);
int32_t            71 src/decNumber/decSingle.h   extern int32_t     decSingleToBCD(const decSingle *, int32_t *, uint8_t *);
int32_t            73 src/decNumber/decSingle.h   extern int32_t     decSingleToPacked(const decSingle *, int32_t *, uint8_t *);
int32_t          1962 src/dps8/dps8_eis.c     int32_t address = SIGNEXT15_32 (GET_OFFSET (cpu.cu.IWB));
int32_t          1994 src/dps8/dps8_eis.c     int32_t addend = address * 8 + r;  // in characters
int32_t          1999 src/dps8/dps8_eis.c     int32_t sum = (int32_t) augend + addend;
int32_t          2044 src/dps8/dps8_eis.c     int32_t address = SIGNEXT15_32 (GET_OFFSET (cpu.cu.IWB));
int32_t          2059 src/dps8/dps8_eis.c     int32_t subtractend = address * 32 + r * 4;
int32_t          2060 src/dps8/dps8_eis.c     int32_t difference = (int32_t) minuend - subtractend;
int32_t          2091 src/dps8/dps8_eis.c     int32_t address = SIGNEXT15_32 (GET_OFFSET (cpu.cu.IWB));
int32_t          2096 src/dps8/dps8_eis.c     int32_t r;
int32_t          2134 src/dps8/dps8_eis.c     int32_t addend = address * 36 + r * (int32_t) sz;
int32_t          2135 src/dps8/dps8_eis.c     int32_t sum = (int32_t) augend + addend;
int32_t          2219 src/dps8/dps8_eis.c 
int32_t          2229 src/dps8/dps8_eis.c 
int32_t          2273 src/dps8/dps8_eis.c 
int32_t          2286 src/dps8/dps8_eis.c 
int32_t          2315 src/dps8/dps8_eis.c 
int32_t          2320 src/dps8/dps8_eis.c 
int32_t          2362 src/dps8/dps8_eis.c     int32_t address = SIGNEXT15_32 (GET_OFFSET (cpu.cu.IWB));
int32_t          2368 src/dps8/dps8_eis.c     int32_t r = (int32_t) (getCrAR (reg) & MASK18);
int32_t          2385 src/dps8/dps8_eis.c     int32_t addend = address + r;
int32_t          2386 src/dps8/dps8_eis.c     int32_t sum = (int32_t) augend + addend;
int32_t          2437 src/dps8/dps8_eis.c     int32_t address = SIGNEXT15_32 (GET_OFFSET (cpu.cu.IWB));
int32_t          2443 src/dps8/dps8_eis.c     int32_t r = (int32_t) (getCrAR (reg) & MASK18);
int32_t          2459 src/dps8/dps8_eis.c     int32_t subtractend = address + r;
int32_t          2460 src/dps8/dps8_eis.c     int32_t difference = (int32_t) minued - subtractend;
int32_t          12172 src/dps8/dps8_eis.c 
int32_t           313 src/dps8/dps8_math128.c     if ((int32_t)u[m - 1] < 0)
int32_t           323 src/dps8/dps8_math128.c     if ((int32_t)v[n - 1] < 0)
int32_t           444 src/dps8/dps8_math128.c             t = (int32_t) un[i+j] - k - (int32_t) (p & 0xFFFF);
int32_t            73 src/dps8/dps8_state.h   int32_t symtabVer;                   // = STATE_VER
int32_t            84 src/dps8/dps8_state.h   int32_t     stateVer;                // = STATE_VER
int32_t           160 src/dps8/h316_imp.h   int32_t       link;             // h316_udp link number
int32_t            31 src/dps8/tracker.c int brkbrk (int32_t arg, const char *  buf);
int32_t            97 src/dps8/udplib.c     int32_t   lportno;
int32_t            98 src/dps8/udplib.c     int32_t   rportno;
int32_t           153 src/dps8/udplib.c     int32_t lportno, rport;
int32_t           246 src/dps8/udplib.c 
int32_t           430 src/dps8/udplib.c     int32_t pktlen, explen, implen, i;
int32_t           454 src/dps8/udplib.c         explen = (int32_t) UDP_HEADER_LEN + implen * (int32_t) sizeof (uint16_t);
int32_t            43 src/dps8/udplib.h int udp_create  (const char * premote, int32_t * plink);
int32_t            44 src/dps8/udplib.h int udp_release (int32_t link);
int32_t            45 src/dps8/udplib.h int udp_send    (int32_t link, uint16_t * pdata, uint16_t count, uint16_t flags);
int32_t            46 src/dps8/udplib.h int udp_receive (int32_t link, uint16_t * pdata, uint16_t maxbufg);