Searched refs:bigend (Results 1 - 6 of 6) sorted by relevance

/freebsd-10-stable/contrib/binutils/include/coff/
H A Decoff.h248 #define AUX_GET_ANY(bigend, ax, field) \
249 ((bigend) ? bfd_getb32 ((ax)->field) : bfd_getl32 ((ax)->field))
251 #define AUX_GET_DNLOW(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_dnLow)
252 #define AUX_GET_DNHIGH(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_dnHigh)
253 #define AUX_GET_ISYM(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_isym)
254 #define AUX_GET_ISS(bigend, ax) AUX_GET_ANY ((bigend), (a
[all...]
/freebsd-10-stable/contrib/nvi/common/
H A Dencoding.c124 int bigend; local
135 bigend = 0;
137 bigend = 1;
142 if (bigend)
163 return 1 + bigend;
209 int decode_utf16(const char* ibuf, int bigend) { argument
214 if (bigend)
223 if (bigend)
/freebsd-10-stable/contrib/gcclibs/libcpp/
H A Dcharset.c264 int (*)(iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
280 one_utf8_to_utf32 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp, argument
296 outbuf[bigend ? 3 : 0] = (s & 0x000000FF);
297 outbuf[bigend ? 2 : 1] = (s & 0x0000FF00) >> 8;
298 outbuf[bigend ? 1 : 2] = (s & 0x00FF0000) >> 16;
299 outbuf[bigend ? 0 : 3] = (s & 0xFF000000) >> 24;
307 one_utf32_to_utf8 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp, argument
319 s = inbuf[bigend ? 0 : 3] << 24;
320 s += inbuf[bigend ? 1 : 2] << 16;
321 s += inbuf[bigend
337 one_utf8_to_utf16(iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp, uchar **outbufp, size_t *outbytesleftp) argument
400 one_utf16_to_utf8(iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp, uchar **outbufp, size_t *outbytesleftp) argument
1078 bool bigend = CPP_OPTION (pfile, bytes_big_endian); local
1453 bool bigend = CPP_OPTION (pfile, bytes_big_endian); local
[all...]
/freebsd-10-stable/contrib/file/src/
H A Dencoding.c404 int bigend; local
411 bigend = 0;
413 bigend = 1;
422 if (bigend)
434 return 1 + bigend;
/freebsd-10-stable/contrib/gdb/gdb/
H A Dmdebugread.c612 parse_symbol (SYMR *sh, union aux_ext *ax, char *ext_sh, int bigend,
711 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
748 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
803 t = parse_type (cur_fd, ax, sh->index + 1, 0, bigend, name);
953 (*debug_swap->swap_tir_in) (bigend,
1304 FIELD_TYPE (*f) = parse_type (cur_fd, ax, sh->index, &bitsize, bigend, name);
1326 t = parse_type (cur_fd, ax, sh->index, (int *) NULL, bigend, name);
1420 int bigend, char *sym_name)
1481 (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1533 int width = AUX_GET_WIDTH (bigend, a
605 parse_symbol(SYMR *sh, union aux_ext *ax, char *ext_sh, int bigend, struct section_offsets *section_offsets, struct objfile *objfile) argument
1412 parse_type(int fd, union aux_ext *ax, unsigned int aux_index, int *bs, int bigend, char *sym_name) argument
1750 upgrade_type(int fd, struct type **tpp, int tq, union aux_ext *ax, int bigend, char *sym_name) argument
2046 parse_external(EXTR *es, int bigend, struct section_offsets *section_offsets, struct objfile *objfile) argument
4224 cross_ref(int fd, union aux_ext *ax, struct type **tpp, enum type_code type_code, char **pname, int bigend, char *sym_name) argument
[all...]
/freebsd-10-stable/contrib/binutils/bfd/
H A Decofflink.c68 _bfd_ecoff_swap_tir_in (bigend, ext_copy, intern)
69 int bigend;
78 if (bigend) {
125 _bfd_ecoff_swap_tir_out (bigend, intern_copy, ext)
126 int bigend;
135 if (bigend) {
181 _bfd_ecoff_swap_rndx_in (bigend, ext_copy, intern)
182 int bigend;
191 if (bigend) {
220 _bfd_ecoff_swap_rndx_out (bigend, intern_cop
[all...]

Completed in 131 milliseconds