Lines Matching defs:tmp
2104 char tmp[64];
2127 apr_snprintf(tmp, sizeof(tmp), "| %04x: ", i * DUMP_WIDTH);
2128 apr_cpystrn(buf, tmp, sizeof(buf));
2134 apr_snprintf(tmp, sizeof(tmp), "%02x%c", ch , j==7 ? '-' : ' ');
2135 apr_cpystrn(buf+strlen(buf), tmp, sizeof(buf)-strlen(buf));
2145 apr_snprintf(tmp, sizeof(tmp), "%c", (ch >= 0x20 && ch <= 0x7F) ? ebcdic_text[j] : '.');
2147 apr_snprintf(tmp, sizeof(tmp), "%c", ((ch >= ' ') && (ch <= '~')) ? ch : '.');
2149 apr_cpystrn(buf+strlen(buf), tmp, sizeof(buf)-strlen(buf));