Lines Matching defs:be
13 * The input files must be static OMAGIC/NMAGIC m68k a.out executables
16 * Each of the load address must be a hexadecimal number.
17 * Load address shall be multiple of 4 for as / ld of NetBSD/m68k.
64 unsigned get_uint16(be_uint16_t *be);
65 u_int32_t get_uint32(be_uint32_t *be);
66 void put_uint16(be_uint16_t *be, unsigned v);
67 void put_uint32(be_uint32_t *be, u_int32_t v);
90 get_uint16(be_uint16_t *be)
93 return be->val[0] << 8 | be->val[1];
97 get_uint32(be_uint32_t *be)
100 return be->val[0]<<24 | be->val[1]<<16 | be->val[2]<<8 | be->val[3];
104 put_uint16(be_uint16_t *be, unsigned v)
107 be->val[0] = (u_int8_t) (v >> 8);
108 be->val[1] = (u_int8_t) v;
112 put_uint32(be_uint32_t *be, u_int32_t v)
115 be->val[0] = (u_int8_t) (v >> 24);
116 be->val[1] = (u_int8_t) (v >> 16);
117 be->val[2] = (u_int8_t) (v >> 8);
118 be->val[3] = (u_int8_t) v;
201 fprintf(stderr, "%s: size shdr %d should be %d\n", fn, i,
207 fprintf(stderr, "%s: size phdr %d should be %d\n", fn, i,
214 "%s: has %lu loadable segments (should be 1 or 2)\n",
563 fprintf(stderr, "two load addresses must be different\n");
583 fprintf(stderr, "address of %s or %s may be incorrect\n",
816 The input files must be static OMAGIC/NMAGIC m68k a.out executables\n\
819 Each of the load address must be a hexadecimal number.\n\