Home | History | Annotate | Download | only in tests

Lines Matching refs:c1

716       int c1 = random() & 0xff;
718 memset(state.ptr1, c1, state.MAX_LEN);
719 memset(state.ptr2, c1, state.MAX_LEN);
724 int expected = (static_cast<int>(c1) - static_cast<int>(c2));
743 unsigned short c1 = rand() & mask;
746 std::fill(state.ptr1, state.ptr1 + state.MAX_LEN, c1);
747 std::fill(state.ptr2, state.ptr2 + state.MAX_LEN, c1);
752 int expected = (static_cast<unsigned short>(c1) - static_cast<unsigned short>(c2));
769 int c1 = rand() & mask;
771 wmemset(state.ptr1, c1, state.MAX_LEN);
772 wmemset(state.ptr2, c1, state.MAX_LEN);
777 int expected = (static_cast<int>(c1) - static_cast<int>(c2));