Lines Matching defs:smallbuf
1555 char smallbuf[3];
1556 smallbuf[0] = *c;
1557 smallbuf[1] = *(c + 1);
1558 smallbuf[2] = '\0';
1561 int ch = static_cast<int>(strtoul(smallbuf, NULL, 16));
1779 char smallbuf[3] = {c[0], c[1], '\0'};
1781 int ch = static_cast<int>(strtoul(smallbuf, NULL, 16));
2527 char smallbuf[3];
2528 smallbuf[0] = *c;
2529 smallbuf[1] = *(c + 1);
2530 smallbuf[2] = '\0';
2532 int ch = static_cast<int>(strtoul(smallbuf, NULL, 16));
3558 char smallbuf[3];
3559 smallbuf[0] = *p;
3560 smallbuf[1] = *(p + 1);
3561 smallbuf[2] = '\0';
3564 int ch = static_cast<int>(strtoul(smallbuf, NULL, 16));