Home
last modified time | relevance | path

Searched refs:codebuf (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddoc.c2380 OutBuffer codebuf; in highlightText() local
2382 codebuf.write(buf->data + iCodeStart + 1, i - (iCodeStart + 1)); in highlightText()
2385 highlightCode(sc, a, &codebuf, 0); in highlightText()
2391 i = buf->insert(i, (char *)codebuf.data, codebuf.offset); in highlightText()
2470 OutBuffer codebuf; in highlightText() local
2472 codebuf.write(buf->data + iCodeStart, i - iCodeStart); in highlightText()
2473 codebuf.writeByte(0); in highlightText()
2477 utf8_t *endp = (utf8_t *)codebuf.data + codebuf.offset; in highlightText()
2478 for (utf8_t *p = (utf8_t *)codebuf.data; p < endp; ) in highlightText()
2486 codebuf.remove(p - (utf8_t *)codebuf.data, q - p); in highlightText()
[all …]
/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Dpef.c730 unsigned char *codebuf, in bfd_pef_parse_function_stubs() argument
802 if ((bfd_getb32 (codebuf + codepos) & 0xffff0000) == 0x81820000) in bfd_pef_parse_function_stubs()
810 ret = bfd_pef_parse_function_stub (abfd, codebuf + codepos, 24, &sym_index); in bfd_pef_parse_function_stubs()
889 unsigned char *codebuf = NULL; in bfd_pef_parse_symbols() local
902 codebuf = _bfd_malloc_and_read (abfd, codelen, codelen); in bfd_pef_parse_symbols()
903 if (codebuf == NULL) in bfd_pef_parse_symbols()
922 bfd_pef_parse_traceback_tables (abfd, codesec, codebuf, codelen, in bfd_pef_parse_symbols()
931 (abfd, codesec, codebuf, codelen, loaderbuf, loaderlen, &ncount, in bfd_pef_parse_symbols()
940 free (codebuf); in bfd_pef_parse_symbols()
/netbsd-src/external/gpl3/binutils.old/dist/bfd/
H A Dpef.c730 unsigned char *codebuf, in bfd_pef_parse_function_stubs() argument
800 if ((bfd_getb32 (codebuf + codepos) & 0xffff0000) == 0x81820000) in bfd_pef_parse_function_stubs()
808 ret = bfd_pef_parse_function_stub (abfd, codebuf + codepos, 24, &sym_index); in bfd_pef_parse_function_stubs()
887 unsigned char *codebuf = NULL; in bfd_pef_parse_symbols() local
900 codebuf = _bfd_malloc_and_read (abfd, codelen, codelen); in bfd_pef_parse_symbols()
901 if (codebuf == NULL) in bfd_pef_parse_symbols()
920 bfd_pef_parse_traceback_tables (abfd, codesec, codebuf, codelen, in bfd_pef_parse_symbols()
929 (abfd, codesec, codebuf, codelen, loaderbuf, loaderlen, &ncount, in bfd_pef_parse_symbols()
938 free (codebuf); in bfd_pef_parse_symbols()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddoc.d4476 OutBuffer codebuf; in highlightText() local
4477 codebuf.write(buf[iCodeStart + count .. i]); in highlightText()
4479 highlightCode(sc, a, codebuf, 0); in highlightText()
4480 escapeStrayParenthesis(loc, &codebuf, 0, false); in highlightText()
4484 i = buf.insert(i, codebuf[]); in highlightText()
4660 OutBuffer codebuf; in highlightText() local
4661 codebuf.write(buf[iCodeStart .. i]); in highlightText()
4662 codebuf.writeByte(0); in highlightText()
4665 char* endp = cast(char*)codebuf[].ptr + codebuf.length; in highlightText()
4666 for (char* p = cast(char*)codebuf[].ptr; p < endp;) in highlightText()
[all …]