Home
last modified time | relevance | path

Searched refs:width_end (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/core/fpdfapi/font/
Dcpdf_simplefont.cpp204 size_t width_end = m_pFontDict->GetIntegerFor("LastChar", 0); in LoadCommon() local
206 if (width_end == 0 || width_end >= width_start + pWidthArray->size()) in LoadCommon()
207 width_end = width_start + pWidthArray->size() - 1; in LoadCommon()
208 if (width_end > 255) in LoadCommon()
209 width_end = 255; in LoadCommon()
210 for (size_t i = width_start; i <= width_end; i++) in LoadCommon()
/external/tensorflow/tensorflow/core/kernels/
Dfractional_max_pool_op.cc168 int64 width_end = in Compute() local
170 width_end = std::min(width_end, width_max); in Compute()
172 for (int64 w = width_start; w <= width_end; ++w) { in Compute()
299 int64 width_end = overlapping_ ? width_seq_tensor_flat(ws + 1) in Compute() local
301 width_end = std::min(width_end, width_max); in Compute()
303 for (int64 w = width_start; w <= width_end; ++w) { in Compute()
/external/e2fsprogs/intl/
Dprintf-parse.c127 dp->width_end = NULL; in PRINTF_PARSE()
200 dp->width_end = cp; in PRINTF_PARSE()
243 dp->width_end = cp; in PRINTF_PARSE()
244 width_length = dp->width_end - dp->width_start; in PRINTF_PARSE()
Dprintf-parse.h43 const char* width_end; member
Dwprintf-parse.h43 const wchar_t* width_end; member
Dvasnprintf.c281 if (dp->width_start != dp->width_end) in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
517 if (dp->width_start != dp->width_end) in VASNPRINTF()
519 size_t n = dp->width_end - dp->width_start; in VASNPRINTF()
/external/tensorflow/tensorflow/python/keras/layers/preprocessing/
Dimage_preprocessing_test.py151 width_end = width_start + expected_width
152 return images[:, height_start:height_end, width_start:width_end, :]