Home
last modified time | relevance | path

Searched refs:lastByte (Results 1 – 10 of 10) sorted by relevance

/external/OpenCSD/decoder/include/opencsd/etmv4/
Dtrc_pkt_proc_etmv4i.h163 void iNotSync(const uint8_t lastByte); // not synced yet
164 void iPktNoPayload(const uint8_t lastByte); // process a single byte packet
165 void iPktReserved(const uint8_t lastByte); // deal with reserved header value
166 void iPktExtension(const uint8_t lastByte);
167 void iPktASync(const uint8_t lastByte);
168 void iPktTraceInfo(const uint8_t lastByte);
169 void iPktTimestamp(const uint8_t lastByte);
170 void iPktException(const uint8_t lastByte);
171 void iPktCycleCntF123(const uint8_t lastByte);
172 void iPktSpeclRes(const uint8_t lastByte);
[all …]
/external/OpenCSD/decoder/source/etmv4/
Dtrc_pkt_proc_etmv4i.cpp265 void TrcPktProcEtmV4I::iNotSync(const uint8_t lastByte) in iNotSync() argument
268 if (lastByte == 0x00) // TBD : add check for forced sync in here? in iNotSync()
280 m_pIPktFn = m_i_table[lastByte].pptkFn; in iNotSync()
291 void TrcPktProcEtmV4I::iPktNoPayload(const uint8_t lastByte) in iPktNoPayload() argument
298 m_curr_packet.setAddressExactMatch(lastByte & 0x3); in iPktNoPayload()
302 m_curr_packet.setEvent(lastByte & 0xF); in iPktNoPayload()
307 m_curr_packet.setDataSyncMarker(lastByte & 0x7); in iPktNoPayload()
323 void TrcPktProcEtmV4I::iPktReserved(const uint8_t lastByte) in iPktReserved() argument
325 m_curr_packet.updateErrType(ETM4_PKT_I_RESERVED, lastByte); // swap type for err type in iPktReserved()
329 void TrcPktProcEtmV4I::iPktInvalidCfg(const uint8_t lastByte) in iPktInvalidCfg() argument
[all …]
/external/zstd/lib/common/
Dbitstream.h287 { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; in BIT_initDStream() local
288 …bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0; /* ensures bitsConsumed is alway… in BIT_initDStream()
289 if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ } in BIT_initDStream()
315 { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; in BIT_initDStream() local
316 bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0; in BIT_initDStream()
317 if (lastByte == 0) return ERROR(corruption_detected); /* endMark not present */ in BIT_initDStream()
/external/python/cpython3/Modules/_sha3/kcp/
DKeccakHash.c46 unsigned char lastByte = data[databitlen/8]; in Keccak_HashUpdate() local
49 …unsigned short delimitedLastBytes = (unsigned short)((unsigned short)lastByte | ((unsigned short)i… in Keccak_HashUpdate()
/external/cldr/tools/java/org/unicode/cldr/draft/
DMisc.java386 int lastByte = 0;
396 lastByte = b;
397 } else if (b == lastByte) {
399 } else if (b < lastByte || b == 0xFF) {
402 lastByte = b; // increasing CCC, ok
/external/walt/ios/WALT/
DMIDIClient.m120 const Byte lastByte = packet->data[packet->length - 1];
150 if (lastByte == MIDIMessageSysExEnd) {
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DDnsNameResolverTest.java694 private byte lastByte = 0; field in DnsNameResolverTest
699 list.add(InetAddress.getByAddress(new byte[] {127, 0, 0, ++lastByte})); in createAddressList()
/external/zstd/lib/legacy/
Dzstd_v07.c569 { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; in BITv07_initDStream() local
570 bitD->bitsConsumed = lastByte ? 8 - BITv07_highbit32(lastByte) : 0; in BITv07_initDStream()
571 if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ } in BITv07_initDStream()
586 { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; in BITv07_initDStream() local
587 bitD->bitsConsumed = lastByte ? 8 - BITv07_highbit32(lastByte) : 0; in BITv07_initDStream()
588 if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ } in BITv07_initDStream()
Dzstd_v06.c901 { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; in BITv06_initDStream() local
902 if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ in BITv06_initDStream()
903 bitD->bitsConsumed = 8 - BITv06_highbit32(lastByte); } in BITv06_initDStream()
918 { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; in BITv06_initDStream() local
919 if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ in BITv06_initDStream()
920 bitD->bitsConsumed = 8 - BITv06_highbit32(lastByte); } in BITv06_initDStream()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelinePushConstantTests.cpp864 deUint32 lastByte = 0u; in getPushConstantRanges() local
871lastByte = deMaxu32(lastByte, m_pushConstantRange[rangeNdx].range.offset + m_pushConstantRange[ran… in getPushConstantRanges()
881 lastByte - firstByte // deUint32 size in getPushConstantRanges()