Home
last modified time | relevance | path

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

/glogg/glogg/src/
H A Dencodingspeculator.cpp
H A Dencodingspeculator.h
/glogg/src/
H A Dencodingspeculator.cpp50 code_point_ = ( byte & 0x1F ) << 6; in inject_byte()
57 code_point_ = ( byte & 0x0F ) << 12; in inject_byte()
64 code_point_ = ( byte & 0x07 ) << 18; in inject_byte()
76 code_point_ |= ( byte & 0x3F ) << (continuation_left_ * 6); in inject_byte()
79 if ( code_point_ >= min_value_ ) in inject_byte()
H A Dencodingspeculator.h64 uint32_t code_point_; variable