sanitizer_printf.cc | 44 bool negative, bool uppercase) { 77 digit = (digit < 10) ? '0' + digit : (uppercase ? 'A' : 'a') + digit - 10; 85 bool uppercase) { 87 pad_with_zero, false /* negative */, uppercase); 95 false /* uppercase */); 125 true /* pad_with_zero */, false /* uppercase */); 187 bool uppercase = (*cur == 'X'); local in function:__sanitizer::VSNPrintf 189 width, pad_with_zero, uppercase);
|