Searched refs:m_bytes (Results 1 – 5 of 5) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ |
H A D | floating_from_chars.cc | 98 ~buffer_resource() { if (m_ptr) operator delete(m_ptr, m_bytes); } in ~buffer_resource() 104 if (m_bytes < sizeof(m_buf) && (m_bytes + bytes) <= sizeof(m_buf)) in do_allocate() 105 return m_buf + std::__exchange(m_bytes, m_bytes + bytes); in do_allocate() 110 m_bytes = bytes; in do_allocate() 126 size_t m_bytes = 0; member
|
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/include/ |
H A D | line-map.h | 1853 ~fixit_hint () { free (m_bytes); } in ~fixit_hint() 1862 const char *get_string () const { return m_bytes; } in get_string() 1876 char *m_bytes; variable
|
/netbsd-src/external/gpl3/gcc/dist/libcpp/include/ |
H A D | line-map.h | 1925 ~fixit_hint () { free (m_bytes); } in ~fixit_hint() 1934 const char *get_string () const { return m_bytes; } in get_string() 1948 char *m_bytes; variable
|
/netbsd-src/external/gpl3/gcc/dist/libcpp/ |
H A D | line-map.cc | 2494 m_bytes (xstrdup (new_content)), in fixit_hint() 2540 m_bytes = (char *)xrealloc (m_bytes, m_len + extra_len + 1); in maybe_append() 2541 memcpy (m_bytes + m_len, new_content, extra_len); in maybe_append() 2543 m_bytes[m_len] = '\0'; in maybe_append() 2554 return m_bytes[m_len - 1] == '\n'; in ends_with_newline_p()
|
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/ |
H A D | line-map.c | 2406 m_bytes (xstrdup (new_content)), in fixit_hint() 2452 m_bytes = (char *)xrealloc (m_bytes, m_len + extra_len + 1); in maybe_append() 2453 memcpy (m_bytes + m_len, new_content, extra_len); in maybe_append() 2455 m_bytes[m_len] = '\0'; in maybe_append() 2466 return m_bytes[m_len - 1] == '\n'; in ends_with_newline_p()
|