Searched refs:width_start (Results 1 – 3 of 3) sorted by relevance
203 size_t width_start = m_pFontDict->GetIntegerFor("FirstChar", 0); in LoadCommon() local205 if (width_start <= 255) { in LoadCommon()206 if (width_end == 0 || width_end >= width_start + pWidthArray->size()) in LoadCommon()207 width_end = width_start + pWidthArray->size() - 1; in LoadCommon()210 for (size_t i = width_start; i <= width_end; i++) in LoadCommon()211 m_CharWidth[i] = pWidthArray->GetIntegerAt(i - width_start); in LoadCommon()
167 const int64_t width_start = width_cum_seq[ws]; in Compute() local172 for (int64_t w = width_start; w <= width_end; ++w) { in Compute()312 const int64_t width_start = width_seq_tensor_flat(ws); in Compute() local317 for (int64_t w = width_start; w <= width_end; ++w) { in Compute()
166 width_start = int((orig_width - expected_width) / 2)168 width_end = width_start + expected_width169 return images[:, height_start:height_end, width_start:width_end, :]