Home | History | Annotate | Download | only in unit

Lines Matching refs:b1

401     char b1[] = { 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x' };
405 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) );
407 CPPUNIT_CHECK( b1[9] == '0' );
427 char b1[] = { 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x' };
431 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) );
433 CPPUNIT_CHECK( b1[9] == '0' );
478 wchar_t b1[] = { L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x' };
484 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) / sizeof(wchar_t) );
486 CPPUNIT_CHECK( b1[9] == L'0' );