Searched refs:fmtSize (Results 1 – 2 of 2) sorted by relevance
1475 public static long parseSize(@Nullable String fmtSize) { in parseSize() argument1476 if (fmtSize == null || fmtSize.isBlank()) { in parseSize()1481 fmtSize = fmtSize.trim(); in parseSize()1482 char first = fmtSize.charAt(0); in parseSize()1488 fmtSize = fmtSize.substring(1); in parseSize()1493 while (index < fmtSize.length() && Character.isDigit(fmtSize.charAt(index))) { in parseSize()1498 if (index == 0 || index == fmtSize.length()) { in parseSize()1502 long value = sign * Long.valueOf(fmtSize.substring(0, index)); in parseSize()1503 String unit = fmtSize.substring(index).trim(); in parseSize()
212 uint8_t fmtSize = 16; in init() local214 fmtSize = 40; in init()216 if (mDataSource->readAt(offset, formatSpec, fmtSize) < fmtSize) { in init()