/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
D | cso_cache.c | 48 static unsigned hash_key(const void *key, unsigned key_size) in hash_key() function 63 static unsigned hash_key(const unsigned char *p, int n) in hash_key() function 80 return hash_key((item), item_size); in cso_construct_key() 187 unsigned hash_key, enum cso_cache_type type, in cso_insert_state() argument 193 return cso_hash_insert(hash, hash_key, state); in cso_insert_state() 198 unsigned hash_key, enum cso_cache_type type) in cso_find_state() argument 202 return cso_hash_find(hash, hash_key); in cso_find_state() 207 unsigned hash_key, in cso_hash_find_data_from_template() argument 211 struct cso_hash_iter iter = cso_hash_find(hash, hash_key); in cso_hash_find_data_from_template() 226 unsigned hash_key, enum cso_cache_type type, in cso_find_state_template() argument [all …]
|
D | cso_cache.h | 132 unsigned hash_key; member 157 unsigned hash_key, enum cso_cache_type type, 160 unsigned hash_key, enum cso_cache_type type); 162 unsigned hash_key, enum cso_cache_type type, 166 void * cso_take_state(struct cso_cache *sc, unsigned hash_key,
|
D | cso_context.c | 254 if (sampler && cso_hash_take(hash, sampler->hash_key)) in sanitize_hash() 281 cso_hash_insert(hash, sampler->hash_key, sampler); in sanitize_hash() 458 unsigned key_size, hash_key; in cso_set_blend() local 465 hash_key = cso_construct_key((void*)templ, key_size); in cso_set_blend() 466 iter = cso_find_state_template(ctx->cache, hash_key, CSO_BLEND, in cso_set_blend() 480 iter = cso_insert_state(ctx->cache, hash_key, CSO_BLEND, cso); in cso_set_blend() 523 unsigned hash_key = cso_construct_key((void*)templ, key_size); in cso_set_depth_stencil_alpha() local 525 hash_key, in cso_set_depth_stencil_alpha() 543 iter = cso_insert_state(ctx->cache, hash_key, in cso_set_depth_stencil_alpha() 588 unsigned hash_key = cso_construct_key((void*)templ, key_size); in cso_set_rasterizer() local [all …]
|
D | cso_hash.h | 127 unsigned hash_key,
|
/external/virglrenderer/src/gallium/auxiliary/cso_cache/ |
D | cso_cache.c | 48 static unsigned hash_key(const void *key, unsigned key_size) in hash_key() function 63 static unsigned hash_key(const unsigned char *p, int n) in hash_key() function 80 return hash_key((item), item_size); in cso_construct_key() 187 unsigned hash_key, enum cso_cache_type type, in cso_insert_state() argument 193 return cso_hash_insert(hash, hash_key, state); in cso_insert_state() 198 unsigned hash_key, enum cso_cache_type type) in cso_find_state() argument 202 return cso_hash_find(hash, hash_key); in cso_find_state() 207 unsigned hash_key, in cso_hash_find_data_from_template() argument 211 struct cso_hash_iter iter = cso_hash_find(hash, hash_key); in cso_hash_find_data_from_template() 226 unsigned hash_key, enum cso_cache_type type, in cso_find_state_template() argument [all …]
|
D | cso_cache.h | 156 unsigned hash_key, enum cso_cache_type type, 159 unsigned hash_key, enum cso_cache_type type); 161 unsigned hash_key, enum cso_cache_type type, 165 void * cso_take_state(struct cso_cache *sc, unsigned hash_key,
|
D | cso_hash.h | 120 unsigned hash_key,
|
/external/mesa3d/src/gallium/auxiliary/translate/ |
D | translate_cache.c | 82 unsigned hash_key; in create_key() local 86 hash_key = cso_construct_key(key, size); in create_key() 87 return hash_key; in create_key() 93 unsigned hash_key = create_key(key); in translate_cache_find() local 96 hash_key, in translate_cache_find() 102 cso_hash_insert(cache->hash, hash_key, translate); in translate_cache_find()
|
/external/tensorflow/tensorflow/contrib/layers/python/ops/ |
D | sparse_feature_cross_op.py | 44 hash_key=None) 46 name=None, hash_key=None): argument 96 if hash_key: 105 hash_key=hash_key,
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | embedding_ops.py | 216 hash_key=None): argument 260 hash_key=hash_key, name=name) 264 params, values, dimension=None, sampled_candidates=None, hash_key=None, argument 368 hash_key=hash_key) 386 hash_key=None): argument 445 params, values, dimension, hash_key=hash_key) 507 hash_key=None, argument 567 hash_key=hash_key, name="values_lookup") 571 sampled_candidates=sampled_candidates, hash_key=hash_key,
|
D | embedding_ops_test.py | 436 hash_key=self._hash_key).eval()) 458 hash_key=self._hash_key).eval()) 491 params, sp_values, dimension=4, hash_key=self._hash_key) 503 params, sp_values, dimension=5, hash_key=self._hash_key) 523 hash_key=self._hash_key) 525 params, sp_values, dimension=4, hash_key=self._hash_key) 546 hash_key=self._hash_key) 567 params, sp_values_a, dimension=4, hash_key=self._hash_key) 569 params, sp_values_b, dimension=4, hash_key=self._hash_key) 571 params, sp_values_c, dimension=4, hash_key=self._hash_key) [all …]
|
D | feature_column.py | 1155 hash_key=None, 1222 if args.hash_key: 1235 hash_key=args.hash_key, 1496 hash_key, argument 1507 dimension, hash_key, 1536 hash_key=self.hash_key, 1561 hash_key, argument 1627 return _ScatteredEmbeddingColumn(column_name, size, dimension, hash_key, 2282 hash_key, argument 2304 hash_bucket_size, hash_key, [all …]
|
D | feature_column_test.py | 166 "aaa", size=100, dimension=10, hash_key=1) 170 self.assertEqual(column.hash_key, 1) 175 "aaa", size=100, dimension=10, hash_key=1) 180 self.assertEqual(column_copy.hash_key, 1) 881 "scattered_embedding_column", size=100, dimension=10, hash_key=1)
|
/external/mesa3d/src/mesa/program/ |
D | prog_cache.c | 59 hash_key(const void *key, GLuint key_size) in hash_key() function 184 const GLuint hash = hash_key(key, keysize); in _mesa_search_program_cache() 208 const GLuint hash = hash_key(key, keysize); in _mesa_program_cache_insert() 237 const GLuint hash = hash_key(key, keysize); in _mesa_shader_cache_insert()
|
/external/vboot_reference/tests/ |
D | vb21_api_tests.c | 66 const struct vb2_private_key *hash_key; in reset_common_data() local 92 vb2_private_key_hash(&hash_key, mock_hash_alg); in reset_common_data() 106 hash_key, NULL); in reset_common_data()
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_SparseCross.pbtxt | 61 name: "hash_key" 63 Specify the hash_key that will be used by the `FingerprintCat64`
|
/external/tensorflow/tensorflow/contrib/layers/python/kernel_tests/ |
D | sparse_feature_cross_op_test.py | 304 hash_key=layers.SPARSE_FEATURE_CROSS_DEFAULT_HASH_KEY) 338 hash_key=layers.SPARSE_FEATURE_CROSS_DEFAULT_HASH_KEY) 369 hash_key=layers.SPARSE_FEATURE_CROSS_DEFAULT_HASH_KEY)
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | sparse_cross_op_test.py | 305 hash_key=sparse_ops._DEFAULT_HASH_KEY + 1) 335 hash_key=sparse_ops._DEFAULT_HASH_KEY + 1) 349 [t2, t1], num_buckets=1024, hash_key=sparse_ops._DEFAULT_HASH_KEY + 1)
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_program_cache.c | 103 hash_key(struct brw_cache_item *item) in hash_key() function 195 hash = hash_key(&lookup); in brw_search_cache() 340 hash = hash_key(item); in brw_upload_cache()
|
/external/tensorflow/tensorflow/python/ops/ |
D | sparse_ops.py | 523 def sparse_cross_hashed(inputs, num_buckets=0, hash_key=None, name=None): argument 563 hash_key=hash_key, 575 hash_key=None, argument 614 hash_key=hash_key or _DEFAULT_HASH_KEY,
|
/external/mesa3d/src/util/ |
D | hash_table.c | 647 struct hash_key *_key = (struct hash_key *)entry->key; in _mesa_hash_table_u64_remove()
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.feature_column.pbtxt | 25 …argspec: "args=[\'keys\', \'hash_bucket_size\', \'hash_key\'], varargs=None, keywords=None, defaul…
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_vbuf.c | 329 unsigned key_size, hash_key; in u_vbuf_set_vertex_elements_internal() local 339 hash_key = cso_construct_key((void*)&velems_state, key_size); in u_vbuf_set_vertex_elements_internal() 340 iter = cso_find_state_template(mgr->cso_cache, hash_key, CSO_VELEMENTS, in u_vbuf_set_vertex_elements_internal() 350 iter = cso_insert_state(mgr->cso_cache, hash_key, CSO_VELEMENTS, cso); in u_vbuf_set_vertex_elements_internal()
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.feature_column.pbtxt | 25 …argspec: "args=[\'keys\', \'hash_bucket_size\', \'hash_key\'], varargs=None, keywords=None, defaul…
|
/external/tensorflow/tensorflow/core/kernels/ |
D | sparse_cross_op.cc | 197 const int64 num_buckets, const uint64 hash_key) in HashCrosser() argument 198 : columns_(columns), num_buckets_(num_buckets), hash_key_(hash_key) {} in HashCrosser()
|