Searched refs:byteCount (Results 1 – 6 of 6) sorted by relevance
111 std::size_t byteCount{0}; in GetSubscriptValue() local115 io.HandleRelativePosition(byteCount); in GetSubscriptValue()116 ch = io.GetCurrentChar(byteCount); in GetSubscriptValue()123 io.HandleRelativePosition(byteCount); in GetSubscriptValue()124 ch = io.GetCurrentChar(byteCount); in GetSubscriptValue()151 std::size_t byteCount{0}; in HandleSubscripts() local256 std::size_t byteCount{0}; in HandleSubstring() local268 ch = io.GetNextNonBlank(byteCount); in HandleSubstring()342 std::size_t byteCount{0}; in SkipNamelistGroup() local377 std::size_t byteCount{0}; in IONAME() local[all …]
574 std::size_t &byteCount) { in GetCurrentChar() argument578 byteCount = 0; in GetCurrentChar()585 byteCount = length; in GetCurrentChar()592 byteCount = 1; in GetCurrentChar()625 std::size_t byteCount{0}; in NextInField() local655 HandleRelativePosition(byteCount); in NextInField()656 GotChar(byteCount); in NextInField()664 *remaining -= byteCount; in NextInField()666 GotChar(byteCount); in NextInField()790 std::size_t byteCount{0}; in GetNextDataEdit() local[all …]
128 std::optional<char32_t> GetCurrentChar(std::size_t &byteCount);140 std::size_t byteCount{0}; in PrepareInput()141 GetNextNonBlank(byteCount); in PrepareInput()153 std::size_t byteCount{0}; in SkipSpaces()154 if (auto ch{GetCurrentChar(byteCount)}) { in SkipSpaces()162 GotChar(byteCount); in SkipSpaces()163 *remaining -= byteCount; in SkipSpaces()165 HandleRelativePosition(byteCount); in SkipSpaces()184 auto ch{GetCurrentChar(byteCount)}; in GetNextNonBlank()188 HandleRelativePosition(byteCount); in GetNextNonBlank()[all …]
338 std::size_t byteCount{0}; in ScanRealInput() local339 next = io.GetCurrentChar(byteCount); in ScanRealInput()341 io.HandleRelativePosition(byteCount); in ScanRealInput()610 std::size_t byteCount{0}; in EditDelimitedCharacterInput() local611 auto ch{io.GetCurrentChar(byteCount)}; in EditDelimitedCharacterInput()620 io.HandleRelativePosition(byteCount); in EditDelimitedCharacterInput()622 auto next{io.GetCurrentChar(byteCount)}; in EditDelimitedCharacterInput()625 io.HandleRelativePosition(byteCount); in EditDelimitedCharacterInput()642 std::size_t byteCount{0}; in EditListDirectedCharacterInput() local643 auto ch{io.GetCurrentChar(byteCount)}; in EditListDirectedCharacterInput()[all …]
58 uint32_t byteCount; member92 s->byteCount = 0; in sha1_init()153 ++s->byteCount; in sha1_writebyte()172 sha1_addUncounted(s, s->byteCount >> 29); // Shifting to multiply by 8 in sha1_pad()173 sha1_addUncounted(s, s->byteCount >> 21); // as SHA-1 supports bitstreams as well as in sha1_pad()174 sha1_addUncounted(s, s->byteCount >> 13); // byte. in sha1_pad()175 sha1_addUncounted(s, s->byteCount >> 5); in sha1_pad()176 sha1_addUncounted(s, s->byteCount << 3); in sha1_pad()
150 size_t byteCount; member