Lines Matching refs:nlen
77 uint16 nlen; member
205 a_utf8.nlen = read_uint16(pfile); in read_utf8()
206 if (a_utf8.nlen > 0) { in read_utf8()
207 a_utf8.pdata = xmalloc(a_utf8.nlen*sizeof(char)); in read_utf8()
208 nread = fread(a_utf8.pdata, a_utf8.nlen*sizeof(char), 1, pfile->pfs); in read_utf8()
235 pstr = pp = xmalloc((a_utf8.nlen+1) * sizeof(char)); in utf8tolatin1()
238 p < (char*)a_utf8.pdata+a_utf8.nlen; in utf8tolatin1()
702 int i, nlen, nlen_pstr; in create_filters() local
708 nlen = p - pp; in create_filters()
709 pstr = xmalloc((nlen+1)*sizeof(char*)); in create_filters()
710 memcpy(pstr, pp, nlen); in create_filters()
711 pstr[nlen] = '\0'; in create_filters()