Searched defs:cchField (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/common/zip/
H A Dtar.cpp525 size_t cchField = sizeof(pRecord->h.size) - 1; local
530 puchField[cchField--] = cbSize & 0xff;
532 } while (cchField);
H A Dtarvfs.cpp178 * @param cchField The length of the field.
182 static int rtZipTarHdrFieldToNum(const char *pszField, size_t cchField, bool fOctalOnly, int64_t *pi64) argument
185 size_t const cchFieldOrg = cchField;
193 while (cchField > 0 && ((ch = *puchField) == ' '|| ch == '0'))
194 cchField--, puchField++;
200 while (cchField > 0)
209 cchField--;
216 while (cchField > 0)
220 return cchField < cchFieldOrg
223 cchField
[all...]

Completed in 45 milliseconds