Lines Matching refs:ptr2
258 char *ptr2;
277 ptr2 = out;
280 *ptr2++ = *ptr++;
285 *ptr2++ = '\b';
288 *ptr2++ = '\f';
291 *ptr2++ = '\n';
294 *ptr2++ = '\r';
297 *ptr2++ = '\t';
321 ptr2 += len;
325 *--ptr2 = ((unsigned char)uc | firstByteMark[len]);
327 *--ptr2 = ((uc | 0x80) & 0xBF);
331 ptr2 += len;
334 *ptr2++ = *ptr;
340 *ptr2 = 0;
350 char *ptr2;
365 ptr2 = out;
366 // *ptr2++ = '\"'; // Modified to not put quotes around the string
367 loader_strncpy(ptr2, out_buf_size, str, out_buf_size);
368 // ptr2[len] = '\"'; // Modified to not put quotes around the string
369 ptr2[len] = 0; // ptr2[len + 1] = 0; // Modified to not put quotes around the string
402 ptr2 = out;
404 // *ptr2++ = '\"'; // Modified to not put quotes around the string
407 *ptr2++ = *ptr++;
411 *ptr2++ = '\\';
414 *ptr2++ = '\"';
417 *ptr2++ = '\b';
420 *ptr2++ = '\f';
423 *ptr2++ = '\n';
426 *ptr2++ = '\r';
429 *ptr2++ = '\t';
432 snprintf(ptr2, out_buf_size - (ptr2 - out), "u%04x", token);
433 ptr2 += 5;
438 // *ptr2++ = '\"'; // Modified to not put quotes around the string
439 *ptr2++ = 0;