Return the in-place tensor payload inside the mapped GGUF. */
| 2324 | if (!kv) return false; |
| 2325 | ds4_cursor c = cursor_at(m, kv->value_pos); |
| 2326 | if (kv->type == GGUF_VALUE_UINT64) { |
| 2327 | return cursor_u64(&c, out); |
| 2328 | } |
| 2329 | if (kv->type == GGUF_VALUE_UINT32) { |
| 2330 | uint32_t v = 0; |
| 2331 | if (!cursor_u32(&c, &v)) return false; |
no outgoing calls
no test coverage detected