Home
last modified time | relevance | path

Searched refs:byteCount (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/flang/runtime/
H A Dnamelist.cpp111 std::size_t byteCount{0}; in GetSubscriptValue() local
115 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() local
256 std::size_t byteCount{0}; in HandleSubstring() local
268 ch = io.GetNextNonBlank(byteCount); in HandleSubstring()
342 std::size_t byteCount{0}; in SkipNamelistGroup() local
377 std::size_t byteCount{0}; in IONAME() local
[all …]
H A Dio-stmt.cpp574 std::size_t &byteCount) { in GetCurrentChar() argument
578 byteCount = 0; in GetCurrentChar()
585 byteCount = length; in GetCurrentChar()
592 byteCount = 1; in GetCurrentChar()
625 std::size_t byteCount{0}; in NextInField() local
655 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 …]
H A Dio-stmt.h128 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 …]
H A Dedit-input.cpp338 std::size_t byteCount{0}; in ScanRealInput() local
339 next = io.GetCurrentChar(byteCount); in ScanRealInput()
341 io.HandleRelativePosition(byteCount); in ScanRealInput()
610 std::size_t byteCount{0}; in EditDelimitedCharacterInput() local
611 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() local
643 auto ch{io.GetCurrentChar(byteCount)}; in EditListDirectedCharacterInput()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerSHA1.cpp58 uint32_t byteCount; member
92 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()
/llvm-project-15.0.7/lld/MachO/
H A DUnwindInfoSection.cpp150 size_t byteCount; member