Lines Matching defs:b_size
40 const char *b, size_t b_size,
51 while (a_size && b_size && a[0] == b[0]) {
53 b++; b_size--;
55 while (a_size && b_size && a[a_size-1] == b[b_size-1]) {
57 b_size--;
59 if (a_size == 0 || b_size == 0) {
60 return (a_size + b_size) * MOVE_COST;
62 if (a_size > MAX_STRING_SIZE || b_size > MAX_STRING_SIZE) {
67 if (b_size < a_size) {
69 size_t t_size = a_size; a_size = b_size; b_size = t_size;
73 if ((b_size - a_size) * MOVE_COST > max_cost) {
88 for (size_t b_index = 0; b_index < b_size; b_index++) {