Lines Matching refs:result
39 uint64_t result;
47 uint64_t result;
64 /* The result of transform feedback queries is two integer values:
67 * Also a result for each stream is stored at 4 slots respectively.
79 uint64_t result;
91 uint64_t result;
310 VkResult result = tu_bo_init_new(device, &pool->bo,
312 if (result != VK_SUCCESS) {
314 return result;
317 result = tu_bo_map(device, pool->bo);
318 if (result != VK_SUCCESS) {
321 return result;
480 VkResult result = VK_SUCCESS;
497 * both not set then no result values are written to pData for
503 result = VK_NOT_READY;
512 uint64_t *result;
516 result = query_result_addr(pool, query, uint64_t, stat_idx);
518 result = query_result_addr(pool, query, struct perfcntr_query_slot, k);
520 result = query_result_addr(pool, query, uint64_t, k);
523 write_query_value_cpu(result_base, k, *result, flags);
529 * intermediate result value between zero and the final result
532 * Just return 0 here for simplicity since it's a valid result.
548 return result;
658 /* Unconditionally copying the bo->result into the buffer here is
659 * valid because we only set bo->result on vkCmdEndQuery. Thus, even
666 /* Conditionally copy bo->result into the buffer based on whether the
828 * sample counts in slot->result to compute the query result.
1107 * slot->result.
1144 /* result (dst) = result (srcA) + end (srcB) - begin (srcC) */
1333 /* result += end - begin */
1419 uint64_t result_iova = primitives_generated_query_iova(pool, query, result);
1473 * may write the total result to the first query and write zero to the
1475 * accurately reflect the total result of the query summed over all views.
1477 * total result.
1481 * result to 0 in vkCmdResetQueryPool(), we just need to mark it as available.