Home
last modified time | relevance | path

Searched refs:newstr (Results 1 – 3 of 3) sorted by relevance

/glibc-2.36/iconv/
Dstrtab.c146 struct Strent *newstr; in newstring() local
164 newstr = (struct Strent *) (st->backp + align); in newstring()
165 newstr->string = str; in newstring()
166 newstr->len = len; in newstring()
167 newstr->next = NULL; in newstring()
168 newstr->left = NULL; in newstring()
169 newstr->right = NULL; in newstring()
170 newstr->offset = 0; in newstring()
172 newstr->reverse[i] = str[len - 2 - i]; in newstring()
173 newstr->reverse[len - 1] = '\0'; in newstring()
[all …]
/glibc-2.36/stdio-common/
Dvfscanf-internal.c759 char *newstr; in __vfwscanf_internal() local
761 newstr = (char *) realloc (*strptr, strsize * 2); in __vfwscanf_internal()
762 if (newstr == NULL) in __vfwscanf_internal()
765 newstr = (char *) realloc (*strptr, in __vfwscanf_internal()
767 if (newstr == NULL) in __vfwscanf_internal()
775 *strptr = newstr; in __vfwscanf_internal()
776 str = newstr + strleng; in __vfwscanf_internal()
782 *strptr = newstr; in __vfwscanf_internal()
783 str = newstr + strleng; in __vfwscanf_internal()
1050 char *newstr; in __vfwscanf_internal() local
[all …]
/glibc-2.36/locale/programs/
Dld-collate.c822 char *newstr; in insert_weights() local
824 newstr = (char *) xmalloc (10); in insert_weights()
825 snprintf (newstr, 10, "U%08X", ucs4); in insert_weights()
826 startp = newstr; in insert_weights()