Searched refs:sha1_ctx (Results 1 - 12 of 12) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/intel/common/
H A Dintel_uuid.c33 struct mesa_sha1 sha1_ctx; local in function:intel_uuid_compute_device_id
45 _mesa_sha1_init(&sha1_ctx);
46 _mesa_sha1_update(&sha1_ctx, &devinfo->chipset_id,
48 _mesa_sha1_update(&sha1_ctx, &isldev->has_bit6_swizzling,
50 _mesa_sha1_final(&sha1_ctx, sha1);
60 struct mesa_sha1 sha1_ctx; local in function:intel_uuid_compute_driver_id
71 _mesa_sha1_init(&sha1_ctx);
72 _mesa_sha1_update(&sha1_ctx, intelDriver, strlen(intelDriver) * sizeof(char));
73 _mesa_sha1_final(&sha1_ctx, sha1);
/xsrc/external/mit/MesaLib/dist/src/freedreno/common/
H A Dfreedreno_uuid.c48 struct mesa_sha1 sha1_ctx; local in function:fd_get_driver_uuid
49 _mesa_sha1_init(&sha1_ctx);
51 _mesa_sha1_update(&sha1_ctx, driver_id, strlen(driver_id));
54 _mesa_sha1_final(&sha1_ctx, sha1);
63 struct mesa_sha1 sha1_ctx; local in function:fd_get_device_uuid
64 _mesa_sha1_init(&sha1_ctx);
85 _mesa_sha1_update(&sha1_ctx, device_name, strlen(device_name));
87 _mesa_sha1_update(&sha1_ctx, id, sizeof(*id));
90 _mesa_sha1_final(&sha1_ctx, sha1);
/xsrc/external/mit/xorg-server.old/dist/os/
H A Dxsha1.c24 SHA1_CTX *sha1_ctx = ctx; local in function:x_sha1_update
25 SHA1Update(sha1_ctx, data, size);
31 SHA1_CTX *sha1_ctx = ctx; local in function:x_sha1_final
32 SHA1Final(result, sha1_ctx);
33 free(sha1_ctx);
52 CC_SHA1_CTX *sha1_ctx = ctx; local in function:x_sha1_update
53 CC_SHA1_Update(sha1_ctx, data, size);
59 CC_SHA1_CTX *sha1_ctx = ctx; local in function:x_sha1_final
60 CC_SHA1_Final(result, sha1_ctx);
61 free(sha1_ctx);
[all...]
/xsrc/external/mit/xorg-server/dist/os/
H A Dxsha1.c61 SHA1_CTX *sha1_ctx = ctx; local in function:x_sha1_update
63 SHA1Update(sha1_ctx, data, size);
70 SHA1_CTX *sha1_ctx = ctx; local in function:x_sha1_final
72 SHA1Final(result, sha1_ctx);
73 free(sha1_ctx);
95 CC_SHA1_CTX *sha1_ctx = ctx; local in function:x_sha1_update
97 CC_SHA1_Update(sha1_ctx, data, size);
104 CC_SHA1_CTX *sha1_ctx = ctx; local in function:x_sha1_final
106 CC_SHA1_Final(result, sha1_ctx);
107 free(sha1_ctx);
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dos_memory_fd.c56 struct mesa_sha1 sha1_ctx; local in function:get_driver_id_sha1_hash
57 _mesa_sha1_init(&sha1_ctx);
59 _mesa_sha1_update(&sha1_ctx, driver_id, strlen(driver_id));
61 _mesa_sha1_final(&sha1_ctx, sha1);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_live_shader_cache.c100 struct mesa_sha1 sha1_ctx; local in function:util_live_shader_cache_get
102 _mesa_sha1_init(&sha1_ctx);
103 _mesa_sha1_update(&sha1_ctx, ir_binary, ir_size);
108 _mesa_sha1_update(&sha1_ctx, &state->stream_output,
111 _mesa_sha1_final(&sha1_ctx, sha1);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/virgl/
H A Dvirgl_screen.c920 struct mesa_sha1 sha1_ctx; local in function:virgl_disk_cache_create
921 _mesa_sha1_init(&sha1_ctx);
922 _mesa_sha1_update(&sha1_ctx, id_sha1, build_id_len);
925 _mesa_sha1_update(&sha1_ctx, &shader_debug_flags, sizeof(shader_debug_flags));
928 _mesa_sha1_final(&sha1_ctx, sha1);
/xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/
H A Dvn_physical_device.c350 struct mesa_sha1 sha1_ctx; local in function:vn_physical_device_init_uuids
355 _mesa_sha1_init(&sha1_ctx);
356 _mesa_sha1_update(&sha1_ctx, &props->pipelineCacheUUID,
358 _mesa_sha1_final(&sha1_ctx, sha1);
362 _mesa_sha1_init(&sha1_ctx);
363 _mesa_sha1_update(&sha1_ctx, &props->vendorID, sizeof(props->vendorID));
364 _mesa_sha1_update(&sha1_ctx, &props->deviceID, sizeof(props->deviceID));
365 _mesa_sha1_final(&sha1_ctx, sha1);
369 _mesa_sha1_init(&sha1_ctx);
370 _mesa_sha1_update(&sha1_ctx, vk12_prop
[all...]
/xsrc/external/mit/MesaLib/dist/src/intel/perf/
H A Dintel_perf.c821 struct mesa_sha1 sha1_ctx; local in function:intel_perf_store_configuration
822 _mesa_sha1_init(&sha1_ctx);
825 _mesa_sha1_update(&sha1_ctx, config->flex_regs,
830 _mesa_sha1_update(&sha1_ctx, config->mux_regs,
835 _mesa_sha1_update(&sha1_ctx, config->b_counter_regs,
841 _mesa_sha1_final(&sha1_ctx, hash);
/xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
H A Dv3dv_device.c639 struct mesa_sha1 sha1_ctx; local in function:init_uuids
646 _mesa_sha1_init(&sha1_ctx);
647 _mesa_sha1_update(&sha1_ctx, build_id_data(note), build_id_len);
648 _mesa_sha1_update(&sha1_ctx, &device_id, sizeof(device_id));
649 _mesa_sha1_final(&sha1_ctx, sha1);
663 _mesa_sha1_init(&sha1_ctx);
664 _mesa_sha1_update(&sha1_ctx, &vendor_id, sizeof(vendor_id));
665 _mesa_sha1_update(&sha1_ctx, &device_id, sizeof(device_id));
666 _mesa_sha1_final(&sha1_ctx, sha1);
/xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
H A Danv_device.c278 struct mesa_sha1 sha1_ctx; local in function:anv_physical_device_init_uuids
285 _mesa_sha1_init(&sha1_ctx);
286 _mesa_sha1_update(&sha1_ctx, build_id_data(note), build_id_len);
287 _mesa_sha1_update(&sha1_ctx, &device->chipset_id,
289 _mesa_sha1_update(&sha1_ctx, &device->always_use_bindless,
291 _mesa_sha1_update(&sha1_ctx, &device->has_a64_buffer_access,
293 _mesa_sha1_update(&sha1_ctx, &device->has_bindless_images,
295 _mesa_sha1_update(&sha1_ctx, &device->has_bindless_samplers,
297 _mesa_sha1_final(&sha1_ctx, sha1);
313 _mesa_sha1_init(&sha1_ctx);
[all...]
/xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
H A Danv_device.c568 struct mesa_sha1 sha1_ctx; local in function:anv_physical_device_init_uuids
575 _mesa_sha1_init(&sha1_ctx);
576 _mesa_sha1_update(&sha1_ctx, build_id_data(note), build_id_len);
577 _mesa_sha1_update(&sha1_ctx, &device->info.chipset_id,
579 _mesa_sha1_update(&sha1_ctx, &device->always_use_bindless,
581 _mesa_sha1_update(&sha1_ctx, &device->has_a64_buffer_access,
583 _mesa_sha1_update(&sha1_ctx, &device->has_bindless_images,
585 _mesa_sha1_update(&sha1_ctx, &device->has_bindless_samplers,
587 _mesa_sha1_final(&sha1_ctx, sha1);

Completed in 22 milliseconds