Home
last modified time | relevance | path

Searched refs:second_byte (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/lib/strings/
Dordered_code.cc505 const unsigned char second_byte = (*src)[1] ^ (xor_mask & 0xff); in ReadSignedNumIncreasing() local
506 if (second_byte >= 0x80) { in ReadSignedNumIncreasing()
507 if (second_byte < 0xc0) { in ReadSignedNumIncreasing()
511 if (second_byte == 0xc0 && third_byte < 0x80) { in ReadSignedNumIncreasing()
/external/pdfium/core/fxcodec/bmp/
Dcfx_bmpdecompressor.cpp629 uint8_t second_byte = second_part; in DecodeRLE4() local
630 second_byte = in DecodeRLE4()
631 i & 0x01 ? (second_byte & 0x0F) : (second_byte & 0xF0) >> 4; in DecodeRLE4()
632 if (!ValidateColorIndex(second_byte)) in DecodeRLE4()
635 out_row_buffer_[col_num_++] = second_byte; in DecodeRLE4()
/external/oss-fuzz/projects/giflib/
DProtoToGif.cpp252 uint16_t second_byte = ((a >> 8) & 0xFF) << 8; in extractWordFromUInt32() local
253 return first_byte | second_byte; in extractWordFromUInt32()
/external/v8/src/diagnostics/x64/
Ddisasm-x64.cc2363 byte second_byte = *(data + 1); in ThreeByteOpcodeInstruction() local
2368 if (second_byte == 0x38) { in ThreeByteOpcodeInstruction()
2403 DCHECK_EQ(0x3A, second_byte); in ThreeByteOpcodeInstruction()