** Convert an "abstract size" (number of slots in an array) to ** "concrete size" (number of bytes in the array). */
| 542 | ** "concrete size" (number of bytes in the array). |
| 543 | */ |
| 544 | static size_t concretesize (unsigned int size) { |
| 545 | if (size == 0) |
| 546 | return 0; |
| 547 | else /* space for the two arrays plus an unsigned in between */ |
| 548 | return size * (sizeof(Value) + 1) + sizeof(unsigned); |
| 549 | } |
| 550 | |
| 551 | |
| 552 | /* |
no outgoing calls
no test coverage detected