Lines Matching defs:slot
6564 pcre_uchar *slot;
6747 slot = cd->name_table;
6750 if (STRNCMP_UC_UC(name, slot+IMM2_SIZE, namelen) == 0) break;
6751 slot += cd->name_entry_size;
6763 recno = GET2(slot, 0); /* Number from first found */
6766 slot += cd->name_entry_size;
6767 if (STRNCMP_UC_UC(name, slot+IMM2_SIZE, namelen) != 0 ||
6768 (slot+IMM2_SIZE)[namelen] != 0) break;
7135 slot = cd->name_table;
7138 if (STRNCMP_UC_UC(name, slot+IMM2_SIZE, namelen) == 0 &&
7139 slot[IMM2_SIZE+namelen] == 0)
7141 slot += cd->name_entry_size;
7146 recno = GET2(slot, 0);
7167 pcre_uchar *cslot = slot + cd->name_entry_size;
7171 if (STRCMP_UC_UC(slot + IMM2_SIZE, cslot + IMM2_SIZE) != 0) break;
7188 for (; slot < cslot; slot += cd->name_entry_size)
7191 recno = GET2(slot, 0);
8695 pcre_uchar *slot = cd->name_table;
8699 int crc = memcmp(name, slot+IMM2_SIZE, IN_UCHARS(length));
8700 if (crc == 0 && slot[IMM2_SIZE+length] != 0)
8710 memmove(slot + cd->name_entry_size, slot,
8717 slot += cd->name_entry_size;
8720 PUT2(slot, 0, groupno);
8721 memcpy(slot + IMM2_SIZE, name, IN_UCHARS(length));
8722 slot[IMM2_SIZE + length] = 0;