Home | History | Annotate | Download | only in loader

Lines Matching refs:total_size

417                                PDWORD total_size,  // size of reg_data
424 *reg_data = loader_instance_heap_alloc(inst, *total_size, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE);
432 } else if (strlen(*reg_data) + json_size + 1 > *total_size) {
434 loader_instance_heap_realloc(inst, *reg_data, *total_size, *total_size * 2, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE);
437 "loaderAddJsonEntry: Failed to reallocate space for registry value of size %d for key %s", *total_size * 2,
443 *total_size *= 2;
467 total_size, DEVINST dev_id, LPCTSTR value_name, VkResult *result)
474 if (NULL == total_size || NULL == reg_data) {
539 found = loaderAddJsonEntry(inst, reg_data, total_size, value_name, data_type, manifest_path, requiredSize, result);