Home
last modified time | relevance | path

Searched refs:width_start (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/fpdfapi/font/
Dcpdf_simplefont.cpp203 size_t width_start = m_pFontDict->GetIntegerFor("FirstChar", 0); in LoadCommon() local
205 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()
/external/tensorflow/tensorflow/core/kernels/
Dfractional_max_pool_op.cc167 const int64_t width_start = width_cum_seq[ws]; in Compute() local
172 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() local
317 for (int64_t w = width_start; w <= width_end; ++w) { in Compute()
/external/tensorflow/tensorflow/python/keras/layers/preprocessing/
Dimage_preprocessing_test.py166 width_start = int((orig_width - expected_width) / 2)
168 width_end = width_start + expected_width
169 return images[:, height_start:height_end, width_start:width_end, :]