Home
last modified time | relevance | path

Searched refs:first_byte (Results 1 – 12 of 12) sorted by relevance

/external/webrtc/webrtc/base/
Dbasictypes_unittest.cc19 uint8_t first_byte = *reinterpret_cast<uint8_t*>(&v16); in TEST() local
21 EXPECT_EQ(0x34u, first_byte); in TEST()
23 EXPECT_EQ(0x12u, first_byte); in TEST()
/external/pdfium/core/fxcodec/fax/
Dfaxmodule.cpp119 int first_byte = startpos / 8; in FaxFillBits() local
121 if (first_byte == last_byte) { in FaxFillBits()
123 dest_buf[first_byte] -= 1 << (7 - i); in FaxFillBits()
128 dest_buf[first_byte] -= 1 << (7 - i); in FaxFillBits()
132 if (last_byte > first_byte + 1) in FaxFillBits()
133 memset(dest_buf + first_byte + 1, 0, last_byte - first_byte - 1); in FaxFillBits()
/external/protobuf/src/google/protobuf/io/
Dcoded_stream.cc337 ::std::pair<bool, const uint8*> ReadVarint32FromArray(uint32 first_byte,
341 uint32 first_byte, const uint8* buffer, uint32* value) { in ReadVarint32FromArray() argument
344 GOOGLE_DCHECK_EQ(*buffer, first_byte); in ReadVarint32FromArray()
345 GOOGLE_DCHECK_EQ(first_byte & 0x80, 0x80) << first_byte; in ReadVarint32FromArray()
348 uint32 result = first_byte - 0x80; in ReadVarint32FromArray()
/external/tensorflow/tensorflow/core/lib/strings/
Dordered_code.cc491 const unsigned char first_byte = (*src)[0] ^ (xor_mask & 0xff); in ReadSignedNumIncreasing() local
496 if (first_byte != 0xff) { in ReadSignedNumIncreasing()
497 len = 7 - Log2Floor64(first_byte ^ 0xff); in ReadSignedNumIncreasing()
/external/oss-fuzz/projects/giflib/
DProtoToGif.cpp251 uint16_t first_byte = (a & 0xFF); in extractWordFromUInt32() local
253 return first_byte | second_byte; in extractWordFromUInt32()
/external/python/asn1crypto/asn1crypto/
Dkeys.py172 first_byte = data[0:1]
175 if first_byte == b'\x04':
182 if first_byte not in set([b'\x02', b'\x03']):
/external/mesa3d/src/broadcom/cle/
Dgen_pack_header.py217 first_byte = field.start // 8
220 for b in range(first_byte, last_byte + 1):
/external/scapy/scapy/layers/
Dntp.py178 first_byte = orb(payload[0])
180 mode = first_byte & 7
/external/libaom/libaom/third_party/libwebm/mkvparser/
Dmkvparser.cc295 signed char first_byte = 0; in UnserializeInt() local
296 const long status = pReader->Read(pos, 1, (unsigned char*)&first_byte); in UnserializeInt()
301 unsigned long long result = first_byte; in UnserializeInt()
/external/v8/src/wasm/
Dfunction-body-decoder-impl.h3188 uint8_t first_byte = *this->pc_;
3189 WasmOpcode opcode = static_cast<WasmOpcode>(first_byte);
3191 OpcodeHandler handler = GetOpcodeHandler(first_byte);
/external/libvpx/libwebm/mkvparser/
Dmkvparser.cc295 signed char first_byte = 0; in UnserializeInt() local
296 const long status = pReader->Read(pos, 1, (unsigned char*)&first_byte); in UnserializeInt()
301 unsigned long long result = first_byte; in UnserializeInt()
/external/libvpx/libvpx/third_party/libwebm/mkvparser/
Dmkvparser.cc295 signed char first_byte = 0; in UnserializeInt() local
296 const long status = pReader->Read(pos, 1, (unsigned char*)&first_byte); in UnserializeInt()
301 unsigned long long result = first_byte; in UnserializeInt()