Home | History | Annotate | Download | only in src

Lines Matching full:block_size

59   // in string_without_spaces corresponds to (block_size - 1)
62 // If string_without_spaces begins "The only thing"... and block_size is 4,
66 // This makes testing simpler, because finding a block_size-byte match
73 int block_size,
76 char* padded_text = new char[(block_size * length_without_spaces) + 1];
77 memset(padded_text, ' ', block_size * length_without_spaces);
80 padded_text_ptr += block_size - 1;
84 padded_text_ptr += block_size;
86 *(padded_text_ptr - block_size + 1) = '\0';