Lines Matching defs:table
19 Also compute a table of shifts to achieve O(n/k) in more cases,
311 SHIFT_TYPE table[TABLE_SIZE];
346 // Fill up a compressed Boyer-Moore "Bad Character" table
349 p->table[i] = Py_SAFE_DOWNCAST(not_found_shift,
355 p->table[needle[i] & TABLE_MASK] = shift;
371 SHIFT_TYPE *table = p->table;
383 Py_ssize_t shift = table[(*window_last) & TABLE_MASK];
414 Py_ssize_t shift = table[(*window_last) & TABLE_MASK];
442 Py_ssize_t shift = table[(*window_last) & TABLE_MASK];
676 /* create compressed boyer-moore delta 1 table */