Lines Matching defs:printed
767 /* copy the printed number to the output and replace locale
837 /* copy the printed number to the output and replace locale
1144 /* Render the cstring provided to an escaped version that can be printed. */
1434 unsigned char *printed = NULL;
1458 printed = (unsigned char*) hooks->reallocate(buffer->buffer, buffer->offset + 1);
1459 if (printed == NULL) {
1466 printed = (unsigned char*) hooks->allocate(buffer->offset + 1);
1467 if (printed == NULL)
1471 memcpy(printed, buffer->buffer, cjson_min(buffer->length, buffer->offset + 1));
1472 printed[buffer->offset] = '\0'; /* just to be sure */
1478 return printed;
1486 if (printed != NULL)
1488 hooks->deallocate(printed);