* Compute total size of the nitems array elements starting at *ptr * * Parameters same as for array_seek */
| 4801 | * Parameters same as for array_seek |
| 4802 | */ |
| 4803 | static int |
| 4804 | array_nelems_size(char *ptr, int offset, bits8 *nullbitmap, int nitems, |
| 4805 | int typlen, bool typbyval, char typalign) |
| 4806 | { |
| 4807 | return array_seek(ptr, offset, nullbitmap, nitems, |
| 4808 | typlen, typbyval, typalign) - ptr; |
| 4809 | } |
| 4810 | |
| 4811 | /* |
| 4812 | * Copy nitems array elements from srcptr to destptr |
no test coverage detected