Home
last modified time | relevance | path

Searched refs:second_byte (Results 1 – 2 of 2) 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/lbmp/
Dfx_bmp.cpp615 uint8_t second_byte = *second_byte_ptr; in DecodeRLE4() local
616 second_byte = in DecodeRLE4()
617 i & 0x01 ? (second_byte & 0x0F) : (second_byte & 0xF0) >> 4; in DecodeRLE4()
618 if (!ValidateColorIndex(second_byte)) in DecodeRLE4()
620 out_row_buffer[col_num++] = second_byte; in DecodeRLE4()