Home | History | Annotate | Download | only in io

Lines Matching refs:fPos

436     len = (int32_t)(input->str.fLimit - input->str.fPos);
453 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
469 input->str.fPos += parsePos;
504 len = (int32_t)(input->str.fLimit - input->str.fPos);
552 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
568 input->str.fPos += parsePos;
607 len = (int32_t)(input->str.fLimit - input->str.fPos);
626 scientificResult = unum_parseDouble(scientificFormat, input->str.fPos, len,
629 genericResult = unum_parseDouble(genericFormat, input->str.fPos, len,
645 input->str.fPos += parsePos;
689 len = (int32_t)(input->str.fLimit - input->str.fPos);
706 result = unum_parseInt64(format, input->str.fPos, len, &parsePos, &status);
719 input->str.fPos += parsePos;
760 len = (int32_t)(input->str.fLimit - input->str.fPos);
777 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
788 input->str.fPos += parsePos;
985 len = (int32_t)(input->str.fLimit - input->str.fPos);
1003 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
1014 input->str.fPos += parsePos;
1041 len = (int32_t)(input->str.fLimit - input->str.fPos);
1048 if( *(input->str.fPos) == 0x0030 &&
1049 (*(input->str.fPos + 1) == 0x0078 || *(input->str.fPos + 1) == 0x0058) ) {
1052 input->str.fPos += 2;
1057 result = ufmt_uto64(input->str.fPos, &len, 16);
1060 input->str.fPos += len;
1097 len = (int32_t)(input->str.fLimit - input->str.fPos);
1104 result = ufmt_uto64(input->str.fPos, &len, 8);
1107 input->str.fPos += len;
1145 len = (int32_t)(input->str.fLimit - input->str.fPos);
1158 result = ufmt_utop(input->str.fPos, &len);
1165 input->str.fPos += len;