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;
499 len = (int32_t)(input->str.fLimit - input->str.fPos);
516 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
532 input->str.fPos += parsePos;
571 len = (int32_t)(input->str.fLimit - input->str.fPos);
590 scientificResult = unum_parseDouble(scientificFormat, input->str.fPos, len,
593 genericResult = unum_parseDouble(genericFormat, input->str.fPos, len,
609 input->str.fPos += parsePos;
653 len = (int32_t)(input->str.fLimit - input->str.fPos);
670 result = unum_parseInt64(format, input->str.fPos, len, &parsePos, &status);
683 input->str.fPos += parsePos;
725 len = (int32_t)(input->str.fLimit - input->str.fPos);
742 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
753 input->str.fPos += parsePos;
950 len = (int32_t)(input->str.fLimit - input->str.fPos);
968 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
979 input->str.fPos += parsePos;
1006 len = (int32_t)(input->str.fLimit - input->str.fPos);
1013 if( *(input->str.fPos) == 0x0030 &&
1014 (*(input->str.fPos + 1) == 0x0078 || *(input->str.fPos + 1) == 0x0058) ) {
1017 input->str.fPos += 2;
1022 result = ufmt_uto64(input->str.fPos, &len, 16);
1025 input->str.fPos += len;
1062 len = (int32_t)(input->str.fLimit - input->str.fPos);
1069 result = ufmt_uto64(input->str.fPos, &len, 8);
1072 input->str.fPos += len;
1110 len = (int32_t)(input->str.fLimit - input->str.fPos);
1123 result = ufmt_utop(input->str.fPos, &len);
1130 input->str.fPos += len;