Lines Matching refs:pz
462 char * pz = strstr(txt, "-->");
463 if (pz != NULL)
464 pz += 3;
465 return pz;
613 char * pz;
615 pz = SPN_WHITESPACE_CHARS(txt+1);
616 txt = strchr(pz, '>');
619 size_t len = (unsigned)(txt - pz);
622 memcpy(ftxt, pz, len);
735 char * pz = *ppz;
737 if (*pz == '#') {
738 pz++;
742 if (IS_DEC_DIGIT_CHAR(*pz)) {
746 switch (*pz) {
752 pz++;
760 if (pz[1] == '0')
765 v = strtoul(pz, &pz, base);
766 if ((*pz != ';') || (v > 0x7F))
768 *ppz = pz + 1;
775 if (strncmp(pz, xml_names[ix].nm_str, xml_names[ix].nm_len)
777 *ppz = pz + xml_names[ix].nm_len;
798 char z[64], *pz = z;
801 pz = AGALOC(nm_len + 4, "scan name");
803 pz[0] = '<';
804 pz[1] = '/';
805 memcpy(pz+2, pznm, nm_len);
807 pz[nm_len++] = '>';
808 pz[nm_len] = NUL;
811 etext = strstr(intxt, pz);
812 if (pz != z) AGFREE(pz);
1025 char * pz = f_name + len;
1030 if (pz[-1] != DIRCH)
1031 *(pz++) = DIRCH;
1032 memcpy(pz, opts->pzRcName, nln);