| 122 | } |
| 123 | |
| 124 | static void VerifyBoundaries(bcast_struct bcast, error::Code code) { |
| 125 | int new_index, new_size; |
| 126 | Status status = GetBroadcastSize( |
| 127 | bcast.input.index, bcast.input.in_size, bcast.input.ksize, |
| 128 | bcast.input.stride, bcast.input.pad_size, &new_index, &new_size); |
| 129 | EXPECT_EQ(status.code(), code) << status; |
| 130 | } |
| 131 | |
| 132 | static void VerifyBcastValues(bcast_struct bcast) { |
| 133 | int new_index, new_size; |
nothing calls this directly
no test coverage detected