Lines Matching defs:e0
270 /* Exhaustively test the 1st byte E0 - EF, and the interval boundaries for
273 uint8_t e0[] = {
278 0xe0, 0xaa, 0xbb, // random e0 .. ..
280 run_test(buff, sizeof buff, e0, sizeof e0);
297 if (i == 0x00) continue; // special case e0
318 e0[0] = 0xe0; // valid
319 e0[1] = 0x9f; // invalid because outside [0xa0 .. 0xbf]
320 e0[2] = 0x80; // valid
321 run_test(buff, sizeof buff, e0, sizeof e0);
322 e0[1] = 0xc0; // invalid because outside [0xa0 .. 0xbf]
323 run_test(buff, sizeof buff, e0, sizeof e0);
336 if (i == 0x00) continue; // special case e0