Home
last modified time | relevance | path

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

/llvm-project/flang/runtime/
H A Dnamelist.cpp130 std::size_t byteCount{0}; in GetSubscriptValue() local
131 Fortran::common::optional<char32_t> ch{io.GetCurrentChar(byteCount)}; in GetSubscriptValue()
134 io.HandleRelativePosition(byteCount); in GetSubscriptValue()
135 ch = io.GetCurrentChar(byteCount); in GetSubscriptValue()
142 io.HandleRelativePosition(byteCount); in GetSubscriptValue()
143 ch = io.GetCurrentChar(byteCount); in GetSubscriptValue()
154 io.HandleRelativePosition(-byteCount); // give back '-' with no digits in GetSubscriptValue()
169 std::size_t byteCount{0}; in HandleSubscripts() local
170 Fortran::common::optional<char32_t> ch{io.GetNextNonBlank(byteCount)}; in HandleSubscripts()
200 ch = io.GetNextNonBlank(byteCount); in HandleSubscripts()
[all …]
H A Dio-stmt.cpp583 std::size_t &byteCount) { in GetCurrentChar()
587 byteCount = 0; in GetCurrentChar()
595 byteCount = length; in NextInField() local
602 byteCount = connection.internalIoCharKind; in NextInField()
603 if (byteCount == 2) { in NextInField()
609 byteCount = 1; in NextInField()
616 std::size_t byteCount{0}; in NextInField()
618 if (auto next{GetCurrentChar(byteCount)}) { in NextInField()
652 HandleRelativePosition(byteCount);
653 GotChar(byteCount); in CheckForEndOfRecord()
562 GetCurrentChar(std::size_t & byteCount) GetCurrentChar() argument
776 std::size_t byteCount{0}; GetNextDataEdit() local
[all...]
H A Dio-stmt.h134 std::size_t &byteCount);
145 std::size_t byteCount{0}; in CueUpInput()
146 GetNextNonBlank(byteCount); in CueUpInput()
163 std::size_t byteCount{0}; in SkipSpaces()
164 if (auto ch{GetCurrentChar(byteCount)}) { in SkipSpaces()
169 if (static_cast<std::size_t>(*remaining) < byteCount) { in SkipSpaces()
172 GotChar(byteCount); in SkipSpaces()
173 *remaining -= byteCount; in SkipSpaces()
175 HandleRelativePosition(byteCount); in SkipSpaces()
194 std::size_t &byteCount) { in GetNextNonBlank()
193 GetNextNonBlank(std::size_t & byteCount) GetNextNonBlank() argument
[all...]
H A Dedit-input.cpp35 std::size_t byteCount; in CheckCompleteListDirectedField() local
36 if (auto ch{io.GetCurrentChar(byteCount)}) { in CheckCompleteListDirectedField()
510 std::size_t byteCount{0}; in RaiseFPExceptions()
511 next = io.GetCurrentChar(byteCount); in RaiseFPExceptions()
513 io.HandleRelativePosition(byteCount); in RaiseFPExceptions()
949 std::size_t byteCount{0}; in EditListDirectedCharacterInput()
950 auto ch{io.GetCurrentChar(byteCount)}; in EditListDirectedCharacterInput()
959 io.HandleRelativePosition(byteCount); in EditListDirectedCharacterInput()
961 auto next{io.GetCurrentChar(byteCount)}; in EditListDirectedCharacterInput()
964 io.HandleRelativePosition(byteCount); in EditListDirectedCharacterInput()
478 std::size_t byteCount{0}; ScanRealInput() local
906 std::size_t byteCount{0}; EditDelimitedCharacterInput() local
938 std::size_t byteCount{0}; EditListDirectedCharacterInput() local
[all...]
/llvm-project/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/lld/MachO/
H A DUnwindInfoSection.cpp127 size_t byteCount; member