Searched refs:DebugIsPrint (Results 1 – 1 of 1) sorted by relevance
73 #define DebugIsPrint( C ) ( ( ( C ) >= 0x20 ) && ( ( C ) <= 0x7E ) ) macro1433 c = (int)( n & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^'); in DebugSNPrintFVAList()1434 c = (int)((n >> 8) & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^'); in DebugSNPrintFVAList()1435 c = (int)((n >> 16) & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^'); in DebugSNPrintFVAList()1436 c = (int)((n >> 24) & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^'); in DebugSNPrintFVAList()1497 { c = u[i]; *s++ = (char)(DebugIsPrint(c) ? c : '^'); i++; } in DebugSNPrintFVAList()1500 … { c = ((a[0] << 8) | a[1]) & 0xFF; *s++ = (char)(DebugIsPrint(c) ? c : '^'); i++; a += 2; } in DebugSNPrintFVAList()1503 … { c = ((a[1] << 8) | a[0]) & 0xFF; *s++ = (char)(DebugIsPrint(c) ? c : '^'); i++; a += 2; } in DebugSNPrintFVAList()2236 if( !DebugIsPrint( c ) ) in DebugHexDump()