/third_party/mesa3d/src/intel/compiler/ |
D | brw_debug_recompile.c | 54 key_debug(c, log, name, old_key->field, key->field) 56 key_debug_float(c, log, name, old_key->field, key->field) 60 const struct brw_sampler_prog_key_data *old_key, in debug_sampler_recompile() argument 91 const struct brw_base_prog_key *old_key, in debug_base_recompile() argument 94 return debug_sampler_recompile(c, log, &old_key->tex, &key->tex); in debug_base_recompile() 99 const struct brw_vs_prog_key *old_key, in debug_vs_recompile() argument 102 bool found = debug_base_recompile(c, log, &old_key->base, &key->base); in debug_vs_recompile() 120 const struct brw_tcs_prog_key *old_key, in debug_tcs_recompile() argument 123 bool found = debug_base_recompile(c, log, &old_key->base, &key->base); in debug_tcs_recompile() 138 const struct brw_tes_prog_key *old_key, in debug_tes_recompile() argument [all …]
|
D | brw_compiler.h | 1873 const struct brw_base_prog_key *old_key,
|
/third_party/libbpf/src/ |
D | hashmap.h | 141 long *old_key, long *old_value); 143 #define hashmap__insert(map, key, value, strategy, old_key, old_value) \ argument 145 hashmap_cast_ptr(old_key), \ 151 #define hashmap__set(map, key, value, old_key, old_value) \ argument 152 hashmap__insert((map), (key), (value), HASHMAP_SET, (old_key), (old_value)) 154 #define hashmap__update(map, key, value, old_key, old_value) \ argument 155 hashmap__insert((map), (key), (value), HASHMAP_UPDATE, (old_key), (old_value)) 160 bool hashmap_delete(struct hashmap *map, long key, long *old_key, long *old_value); 162 #define hashmap__delete(map, key, old_key, old_value) \ argument 164 hashmap_cast_ptr(old_key), \
|
D | hashmap.c | 156 long *old_key, long *old_value) in hashmap_insert() argument 162 if (old_key) in hashmap_insert() 163 *old_key = 0; in hashmap_insert() 170 if (old_key) in hashmap_insert() 171 *old_key = entry->key; in hashmap_insert() 221 long *old_key, long *old_value) in hashmap_delete() argument 230 if (old_key) in hashmap_delete() 231 *old_key = entry->key; in hashmap_delete()
|
/third_party/node/deps/nghttp2/lib/ |
D | nghttp2_ksl.c | 599 void nghttp2_ksl_update_key(nghttp2_ksl *ksl, const nghttp2_ksl_key *old_key, in nghttp2_ksl_update_key() argument 606 i = ksl_bsearch(ksl, blk, old_key, ksl->compar); in nghttp2_ksl_update_key() 612 assert(key_equal(ksl->compar, (nghttp2_ksl_key *)node->key, old_key)); in nghttp2_ksl_update_key() 617 if (key_equal(ksl->compar, (nghttp2_ksl_key *)node->key, old_key) || in nghttp2_ksl_update_key()
|
D | nghttp2_ksl.h | 222 void nghttp2_ksl_update_key(nghttp2_ksl *ksl, const nghttp2_ksl_key *old_key,
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
D | iris_program.c | 1137 union brw_any_prog_key old_key; in iris_debug_recompile() local 1141 old_key.vs = iris_to_brw_vs_key(screen, old_iris_key); in iris_debug_recompile() 1144 old_key.tcs = iris_to_brw_tcs_key(screen, old_iris_key); in iris_debug_recompile() 1147 old_key.tes = iris_to_brw_tes_key(screen, old_iris_key); in iris_debug_recompile() 1150 old_key.gs = iris_to_brw_gs_key(screen, old_iris_key); in iris_debug_recompile() 1153 old_key.wm = iris_to_brw_fs_key(screen, old_iris_key); in iris_debug_recompile() 1156 old_key.cs = iris_to_brw_cs_key(screen, old_iris_key); in iris_debug_recompile() 1162 brw_debug_key_recompile(c, dbg, info->stage, &old_key.base, key); in iris_debug_recompile()
|
/third_party/alsa-lib/src/ |
D | conf.c | 3516 char *old_key; \ 3520 old_key = strdup(key); \ 3521 if (old_key == NULL) { \ 3537 if (!first && (strcmp(key, old_key) == 0 || maxloop <= 0)) { \ 3546 free(old_key); \ 3550 free(old_key); \
|
/third_party/python/Objects/ |
D | dictobject.c | 1652 PyObject *old_key; in delitem_common() local 1663 old_key = ep->me_key; in delitem_common() 1666 Py_DECREF(old_key); in delitem_common() 1890 PyObject *old_value, *old_key; in _PyDict_Pop_KnownHash() local 1934 old_key = ep->me_key; in _PyDict_Pop_KnownHash() 1937 Py_DECREF(old_key); in _PyDict_Pop_KnownHash()
|
D | setobject.c | 328 PyObject *old_key; in set_discard_entry() local 335 old_key = entry->key; in set_discard_entry() 339 Py_DECREF(old_key); in set_discard_entry()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
D | crocus_program.c | 1087 const void *old_key = in crocus_debug_recompile() local 1090 brw_debug_key_recompile(c, &ice->dbg, info->stage, old_key, key); in crocus_debug_recompile()
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 57090 __u64 old_key; member 57097 __u64 old_key; member
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
D | stylo.hpp | 62680 void rekeyIfMoved(const Key& old_key, const Key& new_key) { in rekeyIfMoved() argument 62681 if (old_key != new_key) in rekeyIfMoved() 62682 rekeyAs(old_key, new_key, new_key); in rekeyIfMoved()
|