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;
761 len = (int32_t)(input->str.fLimit - input->str.fPos);
778 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
789 input->str.fPos += parsePos;
986 len = (int32_t)(input->str.fLimit - input->str.fPos);
1004 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
1015 input->str.fPos += parsePos;
1042 len = (int32_t)(input->str.fLimit - input->str.fPos);
1049 if( *(input->str.fPos) == 0x0030 &&
1050 (*(input->str.fPos + 1) == 0x0078 || *(input->str.fPos + 1) == 0x0058) ) {
1053 input->str.fPos += 2;
1058 result = ufmt_uto64(input->str.fPos, &len, 16);
1061 input->str.fPos += len;
1098 len = (int32_t)(input->str.fLimit - input->str.fPos);
1105 result = ufmt_uto64(input->str.fPos
1108 input->str.fPos += len;
1146 len = (int32_t)(input->str.fLimit - input->str.fPos);
1159 result = ufmt_utop(input->str.fPos, &len);
1166 input->str.fPos += len;