HomeSort by relevance Sort by last modified time
    Searched refs:hash_key (Results 1 - 25 of 25) sorted by null

  /external/mesa3d/src/gallium/auxiliary/translate/
translate_cache.c 82 unsigned hash_key; local
86 hash_key = cso_construct_key(key, size);
87 return hash_key;
93 unsigned hash_key = create_key(key); local
96 hash_key,
102 cso_hash_insert(cache->hash, hash_key, translate);
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.h 132 unsigned hash_key; member in struct:cso_sampler
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,
cso_cache.c 48 static unsigned hash_key(const void *key, unsigned key_size) function
63 static unsigned hash_key(const unsigned char *p, int n) function
80 return hash_key((item), item_size);
187 unsigned hash_key, enum cso_cache_type type,
193 return cso_hash_insert(hash, hash_key, state);
198 unsigned hash_key, enum cso_cache_type type)
202 return cso_hash_find(hash, hash_key);
207 unsigned hash_key,
211 struct cso_hash_iter iter = cso_hash_find(hash, hash_key);
226 unsigned hash_key, enum cso_cache_type type
    [all...]
cso_hash.h 120 unsigned hash_key,
cso_context.c 246 if (sampler && cso_hash_take(hash, sampler->hash_key))
273 cso_hash_insert(hash, sampler->hash_key, sampler);
450 unsigned key_size, hash_key; local
457 hash_key = cso_construct_key((void*)templ, key_size);
458 iter = cso_find_state_template(ctx->cache, hash_key, CSO_BLEND,
472 iter = cso_insert_state(ctx->cache, hash_key, CSO_BLEND, cso);
515 unsigned hash_key = cso_construct_key((void*)templ, key_size); local
517 hash_key,
535 iter = cso_insert_state(ctx->cache, hash_key,
580 unsigned hash_key = cso_construct_key((void*)templ, key_size) local
1045 unsigned key_size, hash_key; local
1210 unsigned hash_key = cso_construct_key((void*)templ, key_size); local
    [all...]
  /external/tensorflow/tensorflow/contrib/layers/python/ops/
sparse_feature_cross_op.py 39 "value for hash_key will change to SPARSE_FEATURE_CROSS_DEFAULT_HASH_KEY.\n"
44 hash_key=None) variable
46 name=None, hash_key=None):
58 hash_key: Specify the hash_key that will be used by the `FingerprintCat64`
96 if hash_key:
105 hash_key=hash_key,
  /external/mesa3d/src/mesa/program/
prog_cache.c 59 hash_key(const void *key, GLuint key_size) function
184 const GLuint hash = hash_key(key, keysize);
208 const GLuint hash = hash_key(key, keysize);
237 const GLuint hash = hash_key(key, keysize);
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
embedding_ops.py 202 hash_key=None):
232 hash_key: Specify the hash_key that will be used by the `FingerprintCat64`
246 hash_key=hash_key, name=name)
250 params, values, dimension=None, sampled_candidates=None, hash_key=None,
287 hash_key: Specify the hash_key that will be used by the `FingerprintCat64`
354 hash_key=hash_key)
    [all...]
embedding_ops_test.py 423 hash_key=self._hash_key).eval())
445 hash_key=self._hash_key).eval())
478 params, sp_values, dimension=4, hash_key=self._hash_key)
490 params, sp_values, dimension=5, hash_key=self._hash_key)
510 hash_key=self._hash_key)
512 params, sp_values, dimension=4, hash_key=self._hash_key)
533 hash_key=self._hash_key)
554 params, sp_values_a, dimension=4, hash_key=self._hash_key)
556 params, sp_values_b, dimension=4, hash_key=self._hash_key)
558 params, sp_values_c, dimension=4, hash_key=self._hash_key
    [all...]
feature_column.py 187 "hash_key",
    [all...]
feature_column_test.py 143 "aaa", size=100, dimension=10, hash_key=1)
147 self.assertEqual(column.hash_key, 1)
152 "aaa", size=100, dimension=10, hash_key=1)
157 self.assertEqual(column_copy.hash_key, 1)
    [all...]
  /external/vboot_reference/tests/
vb21_api_tests.c 66 const struct vb2_private_key *hash_key; local
92 vb2_private_key_hash(&hash_key, mock_hash_alg);
106 hash_key, NULL);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_program_cache.c 101 hash_key(struct brw_cache_item *item) function
193 hash = hash_key(&lookup);
354 hash = hash_key(item);
  /external/tensorflow/tensorflow/contrib/layers/python/kernel_tests/
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/
sparse_cross_op_test.py 289 hash_key=sparse_ops._DEFAULT_HASH_KEY + 1)
317 hash_key=sparse_ops._DEFAULT_HASH_KEY + 1)
332 hash_key=sparse_ops._DEFAULT_HASH_KEY + 1)
  /external/tensorflow/tensorflow/python/ops/
sparse_ops.py 353 def _sparse_cross_hashed(inputs, num_buckets=0, hash_key=None, name=None):
382 hash_key: Integer hash_key that will be used by the `FingerprintCat64`
393 hash_key=hash_key,
403 hash_key=None,
442 hash_key=hash_key or _DEFAULT_HASH_KEY,
    [all...]
  /system/core/adb/
adb_auth_host.cpp 158 static std::string hash_key(RSA* key) { function
190 std::string fingerprint = hash_key(key);
  /external/tensorflow/tensorflow/core/kernels/
sparse_cross_op.cc 197 const int64 num_buckets, const uint64 hash_key)
198 : columns_(columns), num_buckets_(num_buckets), hash_key_(hash_key) {}
296 OP_REQUIRES_OK(context, context->GetAttr("hash_key", &signed_hash_key_));
  /external/mesa3d/src/gallium/auxiliary/util/
u_vbuf.c 331 unsigned key_size, hash_key; local
341 hash_key = cso_construct_key((void*)&velems_state, key_size);
342 iter = cso_find_state_template(mgr->cso_cache, hash_key, CSO_VELEMENTS,
352 iter = cso_insert_state(mgr->cso_cache, hash_key, CSO_VELEMENTS, cso);
    [all...]
  /external/libvncserver/libvncserver/
tight.c 1361 int hash_key, idx, new_idx, count; local
    [all...]
  /external/tensorflow/tensorflow/contrib/layers/kernels/
sparse_feature_cross_kernel.cc 232 const int64 num_buckets, const uint64 hash_key)
233 : columns_(columns), num_buckets_(num_buckets), hash_key_(hash_key) {}
339 OP_REQUIRES_OK(context, context->GetAttr("hash_key", &signed_hash_key_));
  /external/tensorflow/tensorflow/python/feature_column/
feature_column.py     [all...]
feature_column_test.py     [all...]
  /external/libmtp/src/
mtpz.c 1572 char *hash_key = (char *)malloc(16); local
    [all...]
  /external/tensorflow/tensorflow/go/op/
wrappers.go     [all...]

Completed in 518 milliseconds