Lines Matching refs:slot
5559 PCRE2_UCHAR *slot = cb->name_table; in find_dupname_details() local
5565 if (PRIV(strncmp)(name, slot+IMM2_SIZE, length) == 0 && in find_dupname_details()
5566 slot[IMM2_SIZE+length] == 0) break; in find_dupname_details()
5567 slot += cb->name_entry_size; in find_dupname_details()
5589 groupnumber = GET2(slot,0); in find_dupname_details()
5593 slot += cb->name_entry_size; in find_dupname_details()
5594 if (PRIV(strncmp)(name, slot+IMM2_SIZE, length) != 0 || in find_dupname_details()
5595 (slot+IMM2_SIZE)[length] != 0) break; in find_dupname_details()
9185 PCRE2_UCHAR *slot = cb->name_table; in add_name_to_table() local
9189 int crc = memcmp(name, slot+IMM2_SIZE, CU2BYTES(length)); in add_name_to_table()
9190 if (crc == 0 && slot[IMM2_SIZE+length] != 0) in add_name_to_table()
9200 (void)memmove(slot + cb->name_entry_size, slot, in add_name_to_table()
9207 slot += cb->name_entry_size; in add_name_to_table()
9210 PUT2(slot, 0, groupno); in add_name_to_table()
9211 memcpy(slot + IMM2_SIZE, name, CU2BYTES(length)); in add_name_to_table()
9217 memset(slot + IMM2_SIZE + length, 0, in add_name_to_table()