Write a secp256k1 affine group element value to the 'dst' frame, advancing the cursor 512 cells. * * Precondition: '*dst' is a valid write frame for 512 more cells; * NULL != r; */
| 75 | * NULL != r; |
| 76 | */ |
| 77 | static inline void write_ge(frameItem* dst, secp256k1_ge* r) { |
| 78 | write_fe(dst, &r->x); |
| 79 | write_fe(dst, &r->y); |
| 80 | } |
| 81 | |
| 82 | /* Skip 512 cells, the size of a secp256k1 affine group element value, in the 'dst' frame. |
| 83 | * |
no test coverage detected