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

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc
  496     p = printf_parse_next(p, &dir);
  499     if (dir.convSpecifier == 0) {
  505     if (dir.argIdx != -1 || dir.precisionIdx != -1) {
  505     if (dir.argIdx != -1 || dir.precisionIdx != -1) {
  509     if (dir.starredWidth) {
  513     if (dir.starredPrecision) {
  518     if (dir.convSpecifier == 'm')
  520     int size = printf_get_value_size(&dir);
  527             SanitizerToolName, dir.end - dir.begin, dir.begin);
  527             SanitizerToolName, dir.end - dir.begin, dir.begin);
  527             SanitizerToolName, dir.end - dir.begin, dir.begin);
  530     if (dir.convSpecifier == 'n') {
  536         if (dir.starredPrecision) {
  539         } else if (dir.fieldPrecision > 0) {
  541           size = internal_strnlen((const char *)argp, dir.fieldPrecision);
  542           if (size < dir.fieldPrecision) size++;
  557       SKIP_SCALAR_ARG(&aq, dir.convSpecifier, size);