Lines Matching refs:ts
56 char * ts; in xmlTranscodeResult() local
67 ts = (char *) NULL; in xmlTranscodeResult()
78 err = !(ts = xmlMalloc(4 * l + 4)); in xmlTranscodeResult()
80 dstp = ts; in xmlTranscodeResult()
105 ts = xmlRealloc(ts, (dstp - ts) + 4); in xmlTranscodeResult()
107 ret = (const char *) ts; in xmlTranscodeResult()
108 ts = (char *) NULL; in xmlTranscodeResult()
112 (xmlChar *) ts, dstp - ts + 1); in xmlTranscodeResult()
116 if (ts) in xmlTranscodeResult()
117 xmlFree(ts); in xmlTranscodeResult()
144 xmlChar * ts; in inTranscode() local
155 ts = (xmlChar *) xmlMalloc(6 * l + 1); in inTranscode()
157 if (!ts) in inTranscode()
160 dstp = (char *) ts; in inTranscode()
170 xmlFree((char *) ts); in inTranscode()
180 xmlFree((char *) ts); in inTranscode()
189 ts = xmlRealloc(ts, (dstp - ts) + 1); in inTranscode()
191 return ts; in inTranscode()
194 ret = xmlDictLookup(*dict, ts, dstp - ts + 1); in inTranscode()
195 xmlFree((char *) ts); in inTranscode()