Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfapi/font/
Dcpdf_simplefont.cpp119 size_t width_end = m_pFontDict->GetIntegerFor("LastChar", 0); in LoadCharWidths() local
123 if (width_end == 0 || width_end >= width_start + width_array->size()) in LoadCharWidths()
124 width_end = width_start + width_array->size() - 1; in LoadCharWidths()
125 if (width_end > 255) in LoadCharWidths()
126 width_end = 255; in LoadCharWidths()
127 for (size_t i = width_start; i <= width_end; i++) in LoadCharWidths()
/external/tensorflow/tensorflow/core/kernels/
Dfractional_max_pool_op.cc177 int64_t width_end = in Compute() local
179 width_end = std::min(width_end, width_max); in Compute()
181 for (int64_t w = width_start; w <= width_end; ++w) { in Compute()
322 int64_t width_end = overlapping_ ? width_seq_tensor_flat(ws + 1) in Compute() local
324 width_end = std::min(width_end, width_max); in Compute()
326 for (int64_t w = width_start; w <= width_end; ++w) { in Compute()