#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <elf.h>
#include <limits.h>
#include <netinet/in.h>
#include <stdlib.h>
#include "ecoff.h"
Go to the source code of this file.
#define ECOFF_ROUND |
( |
|
s, |
|
|
|
a |
|
) |
| (((s)+(a)-1)&~((a)-1)) |
#define ECOFF_SEGMENT_ALIGNMENT |
( |
|
a | ) |
0x10 |
#define PT_MIPS_REGINFO 0x70000000 /* Register usage information */ |
Value:
(((
unsigned short)(
x) & (
unsigned short)0x00ffU) << 8) | \
(((
unsigned short)(
x) & (
unsigned short)0xff00U) >> 8) ))
Definition at line 154 of file elf2ecoff.c.
Value:
(((
unsigned int)(
x) & (
unsigned int)0x000000ffUL) << 24) | \
(((
unsigned int)(
x) & (
unsigned int)0x0000ff00UL) << 8) | \
(((
unsigned int)(
x) & (
unsigned int)0x00ff0000
UL) >> 8) | \
(((
unsigned int)(
x) & (
unsigned int)0xff000000UL) >> 24) ))
Definition at line 159 of file elf2ecoff.c.