Searched refs:width_start (Results 1 – 7 of 7) 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()
126 dp->width_start = NULL; in PRINTF_PARSE()198 dp->width_start = cp; in PRINTF_PARSE()240 dp->width_start = cp; in PRINTF_PARSE()244 width_length = dp->width_end - dp->width_start; in PRINTF_PARSE()
281 if (dp->width_start != dp->width_end) in VASNPRINTF()294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF()517 if (dp->width_start != dp->width_end) in VASNPRINTF()519 size_t n = dp->width_end - dp->width_start; in VASNPRINTF()520 memcpy (p, dp->width_start, n * sizeof (CHAR_T)); in VASNPRINTF()
42 const char* width_start; member
42 const wchar_t* width_start; member
167 const int64 width_start = width_cum_seq[ws]; in Compute() local172 for (int64 w = width_start; w <= width_end; ++w) { in Compute()298 const int64 width_start = width_seq_tensor_flat(ws); in Compute() local303 for (int64 w = width_start; w <= width_end; ++w) { in Compute()
149 width_start = int((orig_width - expected_width) / 2)151 width_end = width_start + expected_width152 return images[:, height_start:height_end, width_start:width_end, :]