Home
last modified time | relevance | path

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

/external/bison/lib/
Dprintf-parse.h58 const char* width_start; member
88 const uint8_t* width_start; member
116 const uint16_t* width_start; member
144 const uint32_t* width_start; member
Dprintf-parse.c145 dp->width_start = NULL; in PRINTF_PARSE()
224 dp->width_start = cp; in PRINTF_PARSE()
266 dp->width_start = cp; in PRINTF_PARSE()
270 width_length = dp->width_end - dp->width_start; in PRINTF_PARSE()
Dvasnprintf.c1951 if (dp->width_start != dp->width_end) in VASNPRINTF()
1972 const FCHAR_T *digitp = dp->width_start; in VASNPRINTF()
2429 if (dp->width_start != dp->width_end) in VASNPRINTF()
2450 const FCHAR_T *digitp = dp->width_start; in VASNPRINTF()
2954 if (dp->width_start != dp->width_end) in VASNPRINTF()
2975 const FCHAR_T *digitp = dp->width_start; in VASNPRINTF()
3461 if (dp->width_start != dp->width_end) in VASNPRINTF()
3482 const FCHAR_T *digitp = dp->width_start; in VASNPRINTF()
4641 if (dp->width_start != dp->width_end) in VASNPRINTF()
4662 const FCHAR_T *digitp = dp->width_start; in VASNPRINTF()
[all …]
/external/e2fsprogs/intl/
Dprintf-parse.c126 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()
Dvasnprintf.c281 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()
Dprintf-parse.h42 const char* width_start; member
Dwprintf-parse.h42 const wchar_t* width_start; member
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dfpdf_font.cpp867 int width_start = 0, width_end = -1; in LoadCommon() local
877 width_start = m_pFontDict->GetInteger("FirstChar", 0); in LoadCommon()
879 if (width_start >= 0 && width_start <= 255) { in LoadCommon()
881 width_end >= width_start + (int)pWidthArray->GetCount()) { in LoadCommon()
882 width_end = width_start + pWidthArray->GetCount() - 1; in LoadCommon()
887 for (int i = width_start; i <= width_end; i++) { in LoadCommon()
888 m_CharWidth[i] = pWidthArray->GetInteger(i - width_start); in LoadCommon()