Home | History | Annotate | Download | only in iotest

Lines Matching refs:newValuePtr

25     int32_t newValuePtr[1];
56 *newValuePtr = 1;
57 u_sscanf(uStringBuf, "Signed decimal integer d: %d", newValuePtr);
58 if (*n != *newValuePtr) {
59 log_err("%%d Got: %d, Expected: %d\n", *newValuePtr, *n);
63 *newValuePtr = 1;
64 u_sscanf(uStringBuf, "Signed decimal integer i: %i", newValuePtr);
65 if (*n != *newValuePtr) {
66 log_err("%%i Got: %i, Expected: %i\n", *newValuePtr, *n);
70 *newValuePtr = 1;
71 u_sscanf(uStringBuf, "Unsigned octal integer o: %o", newValuePtr);
72 if (*n != *newValuePtr) {
73 log_err("%%o Got: %o, Expected: %o\n", *newValuePtr, *n);
77 *newValuePtr = 1;
78 u_sscanf(uStringBuf, "Unsigned decimal integer %%u: %u", newValuePtr);
79 if (*n != *newValuePtr) {
80 log_err("%%u Got: %u, Expected: %u\n", *newValuePtr, *n);
84 *newValuePtr = 1;
85 u_sscanf(uStringBuf, "Lowercase unsigned hexadecimal integer x: %x", newValuePtr);
86 if (*n != *newValuePtr) {
87 log_err("%%x Got: %x, Expected: %x\n", *newValuePtr, *n);
91 *newValuePtr = 1;
92 u_sscanf(uStringBuf, "Uppercase unsigned hexadecimal integer X: %X", newValuePtr);
93 if (*n != *newValuePtr) {
94 log_err("%%X Got: %X, Expected: %X\n", *newValuePtr, *n);
193 *newValuePtr = 1;
194 u_sprintf(uStringBuf, "\t\nPointer to integer (Count) %%n: n=%d %n n=%d\n", *newValuePtr, newValuePtr, *newValuePtr);
195 if (*newValuePtr != 37) {