/third_party/mesa3d/src/gallium/drivers/crocus/ |
D | crocus_program_cache.c | 49 enum crocus_program_cache_id cache_id; member 54 make_keybox(void *mem_ctx, enum crocus_program_cache_id cache_id, in make_keybox() argument 60 keybox->cache_id = cache_id; in make_keybox() 71 return _mesa_hash_data(&key->cache_id, key->size + sizeof(key->cache_id)); in keybox_hash() 86 enum crocus_program_cache_id cache_id, in crocus_find_cached_shader() argument 89 struct keybox *keybox = make_keybox(NULL, cache_id, key, key_size); in crocus_find_cached_shader() 100 enum crocus_program_cache_id cache_id, in crocus_find_previous_compile() argument 106 if (keybox->cache_id == cache_id && in crocus_find_previous_compile() 188 enum crocus_program_cache_id cache_id, uint32_t key_size, in crocus_upload_shader() argument 232 struct keybox *keybox = make_keybox(shader, cache_id, key, key_size); in crocus_upload_shader() [all …]
|
D | crocus_context.h | 921 enum crocus_program_cache_id cache_id,
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
D | iris_program_cache.c | 50 enum iris_program_cache_id cache_id; member 56 enum iris_program_cache_id cache_id, in make_keybox() argument 63 keybox->cache_id = cache_id; in make_keybox() 74 return _mesa_hash_data(&key->cache_id, key->size + sizeof(key->cache_id)); in keybox_hash() 89 enum iris_program_cache_id cache_id, in iris_find_cached_shader() argument 93 struct keybox *keybox = make_keybox(NULL, cache_id, key, key_size); in iris_find_cached_shader() 113 enum iris_program_cache_id cache_id, in iris_create_shader_variant() argument 118 if (cache_id == IRIS_CACHE_BLORP) { in iris_create_shader_variant() 121 } else if (cache_id == IRIS_CACHE_TCS) { in iris_create_shader_variant() 135 screen->vtbl.derived_program_state_size(cache_id)); in iris_create_shader_variant() [all …]
|
D | iris_disk_cache.c | 244 enum iris_program_cache_id cache_id = cache_id_for_stage[stage]; in iris_disk_cache_retrieve() local 248 cache_id, key_size, prog_key, assembly); in iris_disk_cache_retrieve()
|
D | iris_screen.h | 117 enum iris_program_cache_id cache_id,
|
D | iris_context.h | 991 enum iris_program_cache_id cache_id,
|
D | iris_program.c | 1209 enum iris_program_cache_id cache_id, in find_or_add_variant() argument 1251 variant = iris_create_shader_variant(screen, NULL, cache_id, in find_or_add_variant()
|
/third_party/skia/third_party/externals/libwebp/src/dec/ |
D | frame_dec.c | 76 const int cache_id = ctx->id_; in ReconstructRow() local 177 const int y_offset = cache_id * 16 * dec->cache_y_stride_; in ReconstructRow() 178 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; in ReconstructRow() 205 const int cache_id = ctx->id_; in DoFilter() local 208 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16; in DoFilter() 230 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8; in DoFilter() 231 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8; in DoFilter() 377 const int cache_id = ctx->id_; in DitherRow() local 380 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8; in DitherRow() 381 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8; in DitherRow() [all …]
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dec/ |
D | frame_dec.c | 76 const int cache_id = ctx->id_; in ReconstructRow() local 177 const int y_offset = cache_id * 16 * dec->cache_y_stride_; in ReconstructRow() 178 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; in ReconstructRow() 205 const int cache_id = ctx->id_; in DoFilter() local 208 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16; in DoFilter() 230 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8; in DoFilter() 231 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8; in DoFilter() 377 const int cache_id = ctx->id_; in DitherRow() local 380 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8; in DitherRow() 381 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8; in DitherRow() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/ |
D | pmksa_cache.c | 134 const u8 *cache_id) in pmksa_cache_add() argument 163 if (cache_id) { in pmksa_cache_add() 165 os_memcpy(entry->fils_cache_id, cache_id, FILS_CACHE_ID_LEN); in pmksa_cache_add() 432 const void *network_ctx, const u8 *cache_id) in pmksa_cache_get_fils_cache_id() argument 439 os_memcmp(cache_id, entry->fils_cache_id, in pmksa_cache_get_fils_cache_id()
|
D | pmksa_cache.h | 72 const u8 *cache_id); 138 const u8 *cache_id) in pmksa_cache_add() argument
|
D | wpa_i.h | 249 const u8 *cache_id, const u8 *pmk, in wpa_sm_add_pmkid() argument 254 cache_id, pmk, pmk_len); in wpa_sm_add_pmkid() 259 const u8 *cache_id) in wpa_sm_remove_pmkid() argument 263 cache_id); in wpa_sm_remove_pmkid()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/ |
D | pmksa_cache.h | 76 const u8 *cache_id); 145 const u8 *cache_id) in pmksa_cache_add() argument
|
D | pmksa_cache.c | 176 const u8 *cache_id) in pmksa_cache_add() argument 205 if (cache_id) { in pmksa_cache_add() 207 os_memcpy(entry->fils_cache_id, cache_id, FILS_CACHE_ID_LEN); in pmksa_cache_add() 501 const void *network_ctx, const u8 *cache_id) in pmksa_cache_get_fils_cache_id() argument 508 os_memcmp(cache_id, entry->fils_cache_id, in pmksa_cache_get_fils_cache_id()
|
D | wpa_i.h | 299 const u8 *cache_id, const u8 *pmk, in wpa_sm_add_pmkid() argument 305 cache_id, pmk, pmk_len, pmk_lifetime, in wpa_sm_add_pmkid() 311 const u8 *cache_id) in wpa_sm_remove_pmkid() argument 315 cache_id); in wpa_sm_remove_pmkid()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/ |
D | nouveau_screen.c | 159 char cache_id[20 * 2 + 1]; in nouveau_disk_cache_create() local 168 disk_cache_format_hex_id(cache_id, sha1, 20 * 2); in nouveau_disk_cache_create() 177 cache_id, driver_flags); in nouveau_disk_cache_create()
|
/third_party/mesa3d/src/gallium/drivers/r300/ |
D | r300_screen.c | 100 char cache_id[20 * 2 + 1]; in r300_disk_cache_create() local 108 disk_cache_format_hex_id(cache_id, sha1, 20 * 2); in r300_disk_cache_create() 112 cache_id, in r300_disk_cache_create()
|
/third_party/mesa3d/src/gallium/frontends/clover/nir/ |
D | invocation.cpp | 401 char cache_id[20 * 2 + 1]; in create_clc_disk_cache() local 409 disk_cache_format_hex_id(cache_id, sha1, 20 * 2); in create_clc_disk_cache() 410 return disk_cache_create("clover-clc", cache_id, 0); in create_clc_disk_cache()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_screen.c | 935 char cache_id[20 * 2 + 1]; in lp_disk_cache_create() local 945 disk_cache_format_hex_id(cache_id, sha1, 20 * 2); in lp_disk_cache_create() 947 screen->disk_shader_cache = disk_cache_create("llvmpipe", cache_id, 0); in lp_disk_cache_create()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
D | r600_pipe_common.c | 766 char cache_id[20 * 2 + 1]; in r600_disk_cache_create() local 774 disk_cache_format_hex_id(cache_id, sha1, 20 * 2); in r600_disk_cache_create() 785 cache_id, in r600_disk_cache_create()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_pipe.c | 1062 char cache_id[20 * 2 + 1]; in si_disk_cache_create() local 1071 disk_cache_format_hex_id(cache_id, sha1, 20 * 2); in si_disk_cache_create() 1073 sscreen->disk_shader_cache = disk_cache_create(sscreen->info.name, cache_id, in si_disk_cache_create()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/ |
D | gstglupload.c | 740 gint cache_id = dmabuf->direct ? 4 : i; in _dma_buf_upload_accept() local 743 dmabuf->eglimage[i] = _get_cached_eglimage (mems[i], cache_id); in _dma_buf_upload_accept() 763 _set_cached_eglimage (mems[i], dmabuf->eglimage[i], cache_id); in _dma_buf_upload_accept()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | sme.c | 353 const u8 *cache_id = NULL; in sme_send_authentication() local 361 cache_id = wpa_bss_get_fils_cache_id(bss); in sme_send_authentication() 365 try_opportunistic, cache_id, in sme_send_authentication()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | sme.c | 437 const u8 *cache_id = NULL; in sme_send_authentication() local 445 cache_id = wpa_bss_get_fils_cache_id(bss); in sme_send_authentication() 449 try_opportunistic, cache_id, in sme_send_authentication()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
D | wpa_auth.c | 4870 const u8 *cache_id; member 4882 os_memcmp(a->conf.fils_cache_id, data->cache_id, in wpa_auth_fils_iter() 4899 idata.cache_id = wpa_auth->conf.fils_cache_id; in wpa_auth_pmksa_get_fils_cache_id()
|