Home
last modified time | relevance | path

Searched refs:hex2 (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/spirit/example/support/utree/
Dsexpr_generator.hpp90 uint_generator<unsigned char, 16> hex2; in generator() local
111 binary = '#' << *right_align(2, '0')[hex2] << '#'; in generator()
Dsexpr_parser.hpp205 uint_parser<unsigned char, 16, 2, 2> hex2; in parser() local
231 binary = lexeme['#' > *hex2 > '#']; in parser()
/third_party/libxml2/result/schemas/
Dhexbinary_0_1.err5 ./test/schemas/hexbinary_1.xml:11: element hex2: Schemas validity error : Element 'hex2': [facet 'm…
/third_party/ffmpeg/libavfilter/
Dmotion_estimation.c26 static const int8_t hex2[6][2] = {{-2, 0}, {-1,-2}, {-1, 2}, { 1,-2}, { 1, 2}, { 2, 0}}; variable
317 COST_P_MV(x + hex2[i][0], y + hex2[i][1]); in ff_me_search_hexbs()
424 COST_P_MV(x + hex2[i][0], y + hex2[i][1]); in ff_me_search_umh()
/third_party/jsoncpp/src/lib_json/
Djson_writer.cpp236 static const char hex2[] = "000102030405060708090a0b0c0d0e0f" variable
257 result[0] = hex2[2 * hi]; in toHex16Bit()
258 result[1] = hex2[2 * hi + 1]; in toHex16Bit()
259 result[2] = hex2[2 * lo]; in toHex16Bit()
260 result[3] = hex2[2 * lo + 1]; in toHex16Bit()