reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_flags.cpp
   38   char *out_end = out + out_size;
   39   while (*s && out < out_end - 1) {
   41       *out++ = *s++;
   48         while (*base && out < out_end - 1)
   49           *out++ = *base++;
   61         while (buf_pos < buf + 32 && out < out_end - 1)
   62           *out++ = *buf_pos++;
   67         *out++ = *s++;
   71   CHECK(out < out_end - 1);
   72   *out = '\0';