Home
last modified time | relevance | path

Searched refs:recordLength (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/flang/runtime/
Dunit.cpp119 if (!isFixedRecordLength || !recordLength) { in OpenUnit()
123 } else if (*recordLength <= 0) { in OpenUnit()
126 unitNumber(), static_cast<std::intmax_t>(*recordLength)); in OpenUnit()
127 } else if (totalBytes && (*totalBytes % *recordLength != 0)) { in OpenUnit()
131 unitNumber(), static_cast<std::intmax_t>(*recordLength), in OpenUnit()
137 if (totalBytes && recordLength && *recordLength) { in OpenUnit()
138 endfileRecordNumber = 1 + (*totalBytes / *recordLength); in OpenUnit()
248 if (furthestAfter > recordLength.value_or(furthestAfter)) { in Emit()
253 static_cast<std::intmax_t>(*recordLength)); in Emit()
276 if (furthestAfter > recordLength.value_or(furthestAfter)) { in Receive()
[all …]
Dinternal-unit.cpp21 recordLength = length; in InternalDescriptorUnit()
38 recordLength = d.ElementBytes(); in InternalDescriptorUnit()
46 recordLength.value_or(furthestPositionInRecord)) { in EndIoStatement()
48 *recordLength - furthestPositionInRecord, ' '); in EndIoStatement()
74 if (furthestAfter > static_cast<std::int64_t>(recordLength.value_or(0))) { in Emit()
76 furthestAfter = recordLength.value_or(0); in Emit()
103 if (positionInRecord >= recordLength.value_or(positionInRecord)) { in GetCurrentChar()
120 recordLength.value_or(furthestPositionInRecord)) { in AdvanceRecord()
124 *recordLength - furthestPositionInRecord, ' '); in AdvanceRecord()
Dconnection.cpp16 auto recl{recordLength.value_or( in RemainingSpaceInRecord()
Dconnection.h32 std::optional<std::int64_t> recordLength; // RECL= or current record member
Dio-stmt.cpp482 connection.recordLength && in NextInField()
483 connection.positionInRecord >= *connection.recordLength) { in NextInField()
944 } else if (unit().isFixedRecordLength && unit().recordLength) { in Inquire()
945 result = *unit().recordLength; in Inquire()
Dio-api.cpp238 unit.recordLength.reset(); // in case of prior BACKSPACE in BeginUnformattedIO()
510 if (!connection.isFixedRecordLength || !connection.recordLength) { in IONAME()
521 unit->SetPosition((rec - 1) * *connection.recordLength); in IONAME()
791 open->unit().recordLength.value_or(n) != static_cast<std::int64_t>(n)) { in IONAME()
795 open->unit().recordLength = n; in IONAME()
/external/scapy/scapy/contrib/
Dmodbus.uts208 …uest(fileNumber=4, recordNumber=1, recordLength=2)/ModbusReadFileSubRequest(fileNumber=3, recordNu…
231 assert(p.payload.recordLength == 3)
238 assert(p.payload.recordLength == 3)
Dmodbus.py349 length_from=lambda pkt: pkt.recordLength*2)]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/drm/
DFrameworkMediaDrm.java443 int recordLength = byteArray.readLittleEndianShort(); in addLaUrlAttributeIfMissing() local
444 String xml = byteArray.readString(recordLength, Charset.forName(C.UTF16LE_NAME)); in addLaUrlAttributeIfMissing()