Searched refs:first_byte (Results 1 – 10 of 10) sorted by relevance
/external/webrtc/webrtc/base/ |
D | basictypes_unittest.cc | 19 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/src/fxcodec/codec/ |
D | fx_codec_fax.cpp | 112 int first_byte = startpos / 8; in FaxFillBits() local 114 if (first_byte == last_byte) { in FaxFillBits() 116 dest_buf[first_byte] -= 1 << (7 - i); in FaxFillBits() 122 dest_buf[first_byte] -= 1 << (7 - i); in FaxFillBits() 127 if (last_byte > first_byte + 1) { in FaxFillBits() 128 FXSYS_memset(dest_buf + first_byte + 1, 0, last_byte - first_byte - 1); in FaxFillBits()
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
D | httpheaders.py | 992 def compose(self, first_byte=None, last_byte=None, total_length=None): argument 993 retval = "bytes %d-%d/%d" % (first_byte, last_byte, total_length) 994 assert last_byte == -1 or first_byte <= last_byte
|
D | fileapp.py | 159 CONTENT_RANGE.update(headers, first_byte=lower, last_byte=upper,
|
/external/v8/src/parsing/ |
D | scanner-character-streams.cc | 252 static bool IsUtf8MultiCharacterStart(byte first_byte) { in IsUtf8MultiCharacterStart() argument 253 return (first_byte & kUtf8MultiByteMask) == kUtf8MultiByteCharStart; in IsUtf8MultiCharacterStart()
|
/external/v8/src/compiler/ |
D | interpreter-assembler.cc | 199 Node* first_byte = raw_assembler_->Load( in BytecodeOperandShort() local 207 first_byte); in BytecodeOperandShort() 209 return raw_assembler_->WordOr(WordShl(first_byte, kBitsPerByte), in BytecodeOperandShort()
|
/external/v8/test/unittests/compiler/ |
D | interpreter-assembler-unittest.cc | 120 Matcher<Node*> first_byte = IsLoad( in IsBytecodeOperandShort() local 132 first_byte); in IsBytecodeOperandShort() 134 return IsWordOr(IsWordShl(first_byte, IsInt32Constant(kBitsPerByte)), in IsBytecodeOperandShort()
|
/external/pcre/dist/ |
D | pcregexp.pas | 406 var first_byte : integer ) : integer; external;
|
/external/libvpx/libvpx/third_party/libwebm/ |
D | mkvparser.cpp | 296 signed char first_byte = 0; in UnserializeInt() local 297 const long status = pReader->Read(pos, 1, (unsigned char*)&first_byte); in UnserializeInt() 302 unsigned long long result = first_byte; in UnserializeInt()
|
/external/libvpx/libwebm/mkvparser/ |
D | mkvparser.cc | 295 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()
|