Lines Matching refs:nlen
77 uint16 nlen; member
208 a_utf8.nlen = read_uint16(pfile); in read_utf8()
209 if (a_utf8.nlen > 0) { in read_utf8()
210 a_utf8.pdata = xmalloc(a_utf8.nlen*sizeof(char)); in read_utf8()
211 nread = fread(a_utf8.pdata, a_utf8.nlen*sizeof(char), 1, pfile->pfs); in read_utf8()
238 pstr = pp = xmalloc((a_utf8.nlen+1) * sizeof(char)); in utf8tolatin1()
241 p < (char*)a_utf8.pdata+a_utf8.nlen; in utf8tolatin1()
714 int i, nlen, nlen_pstr; in create_filters() local
720 nlen = p - pp; in create_filters()
721 pstr = xmalloc((nlen+1)*sizeof(char*)); in create_filters()
722 memcpy(pstr, pp, nlen); in create_filters()
723 pstr[nlen] = '\0'; in create_filters()