HomeSort by: relevance | last modified time | path
    Searched refs:uuid (Results 1 - 25 of 66) sorted by relevancy

1 2 3

  /xsrc/external/bsd/libuuid_ul/dist/
unparse.c 2 * unparse.c -- convert a UUID to string
46 struct uuid uuid; local
48 uuid_unpack(uu, &uuid);
50 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
51 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
52 uuid.node[0], uuid.node[1], uuid.node[2]
    [all...]
parse.c 2 * parse.c --- UUID parsing
44 struct uuid uuid; local
65 uuid.time_low = strtoul(in, NULL, 16);
66 uuid.time_mid = strtoul(in+9, NULL, 16);
67 uuid.time_hi_and_version = strtoul(in+14, NULL, 16);
68 uuid.clock_seq = strtoul(in+19, NULL, 16);
74 uuid.node[i] = strtoul(buf, NULL, 16);
77 uuid_pack(&uuid, uu);
uuidP.h 2 * uuid.h -- private header file for uuids
38 #include "uuid.h"
48 struct uuid { struct
60 void uuid_pack(const struct uuid *uu, uuid_t ptr);
61 void uuid_unpack(const uuid_t in, struct uuid *uu);
compare.c 44 struct uuid uuid1, uuid2;
pack.c 38 void uuid_pack(const struct uuid *uu, uuid_t ptr)
unpack.c 2 * Internal routine for unpacking UUID
38 void uuid_unpack(const uuid_t in, struct uuid *uu)
  /xsrc/external/mit/MesaLib/dist/src/freedreno/common/
freedreno_uuid.h 29 void fd_get_driver_uuid(void *uuid);
30 void fd_get_device_uuid(void *uuid, const struct fd_dev_id *id);
freedreno_uuid.c 38 fd_get_driver_uuid(void *uuid)
42 /* The driver UUID is used for determining sharability of images and memory
46 * UUID.
57 memcpy(uuid, sha1, UUID_SIZE);
61 fd_get_device_uuid(void *uuid, const struct fd_dev_id *id)
66 /* The device UUID uniquely identifies the given device within the machine.
68 * UUID, so we use SHA1("freedreno" + gpu_id).
71 * someone would like to use this UUID to cache pre-tiled images or something
93 memcpy(uuid, sha1, UUID_SIZE);
  /xsrc/external/mit/MesaLib/dist/src/intel/common/
intel_uuid.h 35 void intel_uuid_compute_device_id(uint8_t *uuid,
39 void intel_uuid_compute_driver_id(uint8_t *uuid,
intel_uuid.c 29 intel_uuid_compute_device_id(uint8_t *uuid,
39 /* The device UUID uniquely identifies the given device within the machine.
41 * UUID. However, on the off-chance that someone tries to use this to
51 memcpy(uuid, sha1, size);
55 intel_uuid_compute_driver_id(uint8_t *uuid,
65 /* The driver UUID is used for determining sharability of images and memory
69 * UUID.
74 memcpy(uuid, sha1, size);
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
version.h 56 _mesa_get_driver_uuid(struct gl_context *ctx, GLint *uuid);
59 _mesa_get_device_uuid(struct gl_context *ctx, GLint *uuid);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
version.h 56 _mesa_get_driver_uuid(struct gl_context *ctx, GLint *uuid);
59 _mesa_get_device_uuid(struct gl_context *ctx, GLint *uuid);
  /xsrc/external/mit/libSM/dist/src/
sm_genid.c 73 # include <uuid.h>
75 # include <uuid/uuid.h>
113 uuid_t uuid;
117 uuid_create(&uuid, &status);
119 uuid_to_string(&uuid, &temp, &status);
131 uuid_t uuid;
133 uuid_generate(uuid);
137 uuid_unparse_lower(uuid, &temp[1]);
233 #else /* no supported id generation method, neither UUID nor TCPCONN *
112 uuid_t uuid; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/util/
os_memory_fd.c 51 uint8_t uuid[UUID_SIZE]; member in struct:memory_header
78 // Check the uuid we put after the sizes in order to verify that the fd
84 if (memcmp(header.uuid, sha1, UUID_SIZE)) {
150 // Add the hash of the driver_id as a uuid to the header in order to identify the memory
156 memcpy(header->uuid, sha1, UUID_SIZE);
  /xsrc/external/mit/fontconfig/dist/doc/
fccache.fncs 96 @PURPOSE@ Create .uuid file at a directory
106 @PURPOSE@ Delete .uuid file
108 This is to delete .uuid file containing an UUID at a font directory of
  /xsrc/external/mit/MesaLib.old/dist/src/amd/common/
ac_gpu_info.h 157 void ac_compute_driver_uuid(char *uuid, size_t size);
159 void ac_compute_device_uuid(struct radeon_info *info, char *uuid, size_t size);
  /xsrc/external/mit/MesaLib/dist/src/amd/common/
ac_gpu_info.h 236 void ac_compute_driver_uuid(char *uuid, size_t size);
238 void ac_compute_device_uuid(struct radeon_info *info, char *uuid, size_t size);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/include/pipe/
p_screen.h 442 * Fill @uuid with a unique driver identifier
444 * \param uuid pointer to a memory region of PIPE_UUID_SIZE bytes
446 void (*get_driver_uuid)(struct pipe_screen *screen, char *uuid);
449 * Fill @uuid with a unique device identifier
451 * \param uuid pointer to a memory region of PIPE_UUID_SIZE bytes
453 void (*get_device_uuid)(struct pipe_screen *screen, char *uuid);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_trace/
tr_screen.c 307 trace_screen_get_driver_uuid(struct pipe_screen *_screen, char *uuid)
314 screen->get_driver_uuid(screen, uuid);
316 trace_dump_ret(string, uuid);
321 trace_screen_get_device_uuid(struct pipe_screen *_screen, char *uuid)
328 screen->get_device_uuid(screen, uuid);
330 trace_dump_ret(string, uuid);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_ddebug/
dd_screen.c 203 dd_screen_get_driver_uuid(struct pipe_screen *_screen, char *uuid)
207 screen->get_driver_uuid(screen, uuid);
211 dd_screen_get_device_uuid(struct pipe_screen *_screen, char *uuid)
215 screen->get_device_uuid(screen, uuid);
  /xsrc/external/mit/MesaLib/dist/src/gallium/include/pipe/
p_screen.h 489 * Fill @uuid with a unique driver identifier
491 * \param uuid pointer to a memory region of PIPE_UUID_SIZE bytes
493 void (*get_driver_uuid)(struct pipe_screen *screen, char *uuid);
496 * Fill @uuid with a unique device identifier
498 * \param uuid pointer to a memory region of PIPE_UUID_SIZE bytes
500 void (*get_device_uuid)(struct pipe_screen *screen, char *uuid);
  /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/
panvk_device.c 84 panvk_device_get_cache_uuid(uint16_t family, void *uuid)
93 memset(uuid, 0, VK_UUID_SIZE);
94 memcpy(uuid, &mesa_timestamp, 4);
95 memcpy((char *) uuid + 4, &f, 2);
96 snprintf((char *) uuid + 6, VK_UUID_SIZE - 10, "pan");
101 panvk_get_driver_uuid(void *uuid)
103 memset(uuid, 0, VK_UUID_SIZE);
104 snprintf(uuid, VK_UUID_SIZE, "panfrost");
108 panvk_get_device_uuid(void *uuid)
110 memset(uuid, 0, VK_UUID_SIZE)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/
tu_pipeline_cache.c 240 uint8_t uuid[VK_UUID_SIZE]; member in struct:cache_header
262 if (memcmp(header.uuid, device->physical_device->cache_uuid,
367 memcpy(header->uuid, device->physical_device->cache_uuid, VK_UUID_SIZE);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_ddebug/
dd_screen.c 205 dd_screen_get_driver_uuid(struct pipe_screen *_screen, char *uuid)
209 screen->get_driver_uuid(screen, uuid);
213 dd_screen_get_device_uuid(struct pipe_screen *_screen, char *uuid)
217 screen->get_device_uuid(screen, uuid);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_noop/
noop_pipe.c 651 static void noop_get_driver_uuid(struct pipe_screen *screen, char *uuid)
656 oscreen->get_driver_uuid(oscreen, uuid);
659 static void noop_get_device_uuid(struct pipe_screen *screen, char *uuid)
664 oscreen->get_device_uuid(oscreen, uuid);

Completed in 38 milliseconds

1 2 3