|
#define | DFMT_SUN 0x1111 |
|
#define | DFMT_SUN_INTEL 0x4441 |
|
#define | DFMT_ALLIANT 0x1111 |
|
#define | DFMT_IRIX 0x1111 |
|
#define | DFMT_APOLLO 0x1111 |
|
#define | DFMT_IBM6000 0x1111 |
|
#define | DFMT_HP9000 0x1111 |
|
#define | DFMT_CONVEXNATIVE 0x5511 |
|
#define | DFMT_CONVEX 0x1111 |
|
#define | DFMT_UNICOS 0x3331 |
|
#define | DFMT_UNICOSIEEE 0x1831 |
|
#define | DFMT_CTSS 0x3331 |
|
#define | DFMT_VAX 0x2221 |
|
#define | DFMT_MIPSEL 0x4441 |
|
#define | DFMT_PC 0x4441 |
|
#define | DFMT_APPLE 0x1111 |
|
#define | DFMT_APPLE_INTEL 0x4441 |
|
#define | DFMT_MAC 0x1111 |
|
#define | DFMT_SUN386 0x4441 |
|
#define | DFMT_NEXT 0x1111 |
|
#define | DFMT_MOTOROLA 0x1111 |
|
#define | DFMT_ALPHA 0x4441 |
|
#define | DFMT_VP 0x6611 |
|
#define | DFMT_I860 0x4441 |
|
#define | DFMT_CRAYMPP 0x1171 |
|
#define | DFMT_IA64 0x4441 |
|
#define | DFMT_LINUX64 0x4441 |
|
#define | DFMT_POWERPC64 0x1111 |
|
#define | UNIXUNBUFIO 1 |
|
#define | UNIXBUFIO 2 |
|
#define | MACIO 3 |
|
#define | INT16ENCODE(p, i) |
|
#define | UINT16ENCODE(p, i) { *(p) = (uint8)(((uintn)(i) >> 8) & 0xff); (p)++; *(p) = (uint8)((i) & 0xff); (p)++; } |
|
#define | INT32ENCODE(p, i) |
|
#define | UINT32ENCODE(p, i) |
|
#define | NBYTEENCODE(d, s, n) { HDmemcpy(d,s,n); p+=n } |
|
#define | INT16DECODE(p, i) |
|
#define | UINT16DECODE(p, i) |
|
#define | INT32DECODE(p, i) |
|
#define | UINT32DECODE(p, i) |
|
#define | NBYTEDECODE(s, d, n) { HDmemcpy(d,s,n); p+=n } |
|
#define | FCALLKEYW /*NONE*/ |
|
#define | FRETVAL(x) x |
|
#define | FNAME(x) x |
|
#define | MIN(a, b) (((a)<(b)) ? (a) : (b)) |
|
#define | MAX(a, b) (((a)>(b)) ? (a) : (b)) |
|
#define | CONSTR(v, s) static const char v[]=s |
|
#define | HDgetspace HDmalloc |
|
#define | HDclearspace HDcalloc |
|
#define | HDregetspace HDrealloc |
|
#define | HDfreespace HDfree |
|
#define | HDmalloc(s) (malloc((size_t)s)) |
|
#define | HDcalloc(a, b) (calloc((size_t)a,(size_t)b)) |
|
#define | HDfree(p) (free((void*)p)) |
|
#define | HDrealloc(p, s) (realloc((void*)p,(size_t)s)) |
|
#define | HDfreenclear(p) { if((p)!=NULL) HDfree(p); p=NULL; } |
|
#define | HDstrcat(s1, s2) (strcat((s1),(s2))) |
|
#define | HDstrcmp(s, t) (strcmp((s),(t))) |
|
#define | HDstrcpy(s, d) (strcpy((s),(d))) |
|
#define | HDstrlen(s) (strlen((const char *)(s))) |
|
#define | HDstrncmp(s1, s2, n) (strncmp((s1),(s2),(n))) |
|
#define | HDstrncpy(s1, s2, n) (strncpy((s1),(s2),(n))) |
|
#define | HDstrchr(s, c) (strchr((s),(c))) |
|
#define | HDstrrchr(s, c) (strrchr((s),(c))) |
|
#define | HDstrtol(s, e, b) (strtol((s),(e),(b))) |
|
#define | HDstrdup(s) ((char *)strdup((const char *)(s))) |
|
#define | HDmemcpy(dst, src, n) (memcpy((void *)(dst),(const void *)(src),(size_t)(n))) |
|
#define | HDmemset(dst, c, n) (memset((void *)(dst),(intn)(c),(size_t)(n))) |
|
#define | HDmemcmp(dst, src, n) (memcmp((const void *)(dst),(const void *)(src),(size_t)(n))) |
|
#define | HDstat(path, result) (stat(path, result)) |
|
#define | HDgetenv(s1) (getenv(s1)) |
|
#define | HDputenv(s1) (putenv(s1)) |
|
#define | HDltoa(v) (ltoa(v)) |
|
#define | HDatexit(f) (atexit(f)) |
|
#define | DFSDnumber DFSDndatasets |
|