Searched defs:key (Results 276 - 300 of 3586) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_draw.c72 emit->key.binning_pass ? IGNORE_VISIBILITY : USE_VISIBILITY,
81 fixup_shader_state(struct fd_context *ctx, struct ir3_shader_key *key) argument
86 if (!ir3_shader_key_equal(last_key, key)) {
87 if (last_key->has_per_samp || key->has_per_samp) {
88 if ((last_key->vsaturate_s != key->vsaturate_s) ||
89 (last_key->vsaturate_t != key->vsaturate_t) ||
90 (last_key->vsaturate_r != key->vsaturate_r) ||
91 (last_key->vastc_srgb != key->vastc_srgb))
94 if ((last_key->fsaturate_s != key->fsaturate_s) ||
95 (last_key->fsaturate_t != key
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3_nir.c67 /* for given shader key, are any steps handled in nir? */
69 ir3_key_lowers_nir(const struct ir3_shader_key *key) argument
71 return key->fsaturate_s | key->fsaturate_t | key->fsaturate_r |
72 key->vsaturate_s | key->vsaturate_t | key->vsaturate_r |
73 key->ucp_enables | key
107 ir3_optimize_nir(struct ir3_shader *shader, nir_shader *s, const struct ir3_shader_key *key) argument
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_sampler_view.h71 struct svga_host_surface_cache_key key; member in struct:svga_sampler_view
H A Dsvga_surface.h47 struct svga_host_surface_cache_key key; member in struct:svga_surface
101 struct svga_host_surface_cache_key *key); /* OUT */
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dnine_pdata.h20 ht_guid_hash( void *key )
23 const unsigned char *str = key;
33 ht_guid_delete( void *key, argument
/external/mesa3d/src/gallium/tests/unit/
H A Du_cache_test.c46 cache_test_hash(const void *key) argument
48 return util_hash_crc32(key, sizeof(cache_test_key));
53 cache_test_destroy(void *key, void *value) argument
55 free(key);
73 cache_test_key *key; local
88 key = malloc(sizeof(cache_test_key));
89 *key = 0xdeadbeef;
90 value_out = (cache_test_value *) util_cache_get(cache, key);
92 free(key);
99 key
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip.c51 struct brw_clip_prog_key *key )
68 c.key = *key;
78 c.prog_data.clip_mode = c.key.clip_mode; /* XXX */
89 switch (key->primitive) {
91 if (key->do_unfilled)
121 &c.key, sizeof(c.key),
134 struct brw_clip_prog_key key; local
147 memset(&key,
[all...]
H A Dbrw_vs.h55 brw_vs_outputs_written(struct brw_context *brw, struct brw_vs_prog_key *key,
63 struct brw_vs_prog_key *key);
76 const struct brw_vs_prog_key *key,
98 const struct brw_vs_prog_key *const key; member in class:brw::vec4_vs_visitor
H A Dbrw_wm_iz.cpp127 brw_wm_prog_key *key = (brw_wm_prog_key*) this->key; local
130 int lookup = key->iz_lookup;
139 if (key->stats_wm &&
156 if (wm_iz_table[lookup].ds_present || key->line_aa != AA_NEVER) {
159 !wm_iz_table[lookup].ds_present && key->line_aa == AA_SOMETIMES;
/external/mesa3d/src/util/
H A Ddisk_cache.h54 * name (or "key"). This is provided via disk_cache_put() and
57 * o The ability to store a key alone and check later whether the
58 * key was previously stored. This is provided via disk_cache_put_key()
81 * Store an item in the cache under the name \key.
90 disk_cache_put(struct disk_cache *cache, cache_key key,
94 * Retrieve an item previously stored in the cache with the name <key>.
107 disk_cache_get(struct disk_cache *cache, cache_key key, size_t *size);
110 * Store the name \key within the cache, (without any associated data).
112 * Later this key can be checked with disk_cache_has_key(), (unless the key
148 disk_cache_put(struct disk_cache *cache, cache_key key, const void *data, size_t size) argument
155 disk_cache_get(struct disk_cache *cache, cache_key key, size_t *size) argument
161 disk_cache_put_key(struct disk_cache *cache, cache_key key) argument
167 disk_cache_has_key(struct disk_cache *cache, cache_key key) argument
[all...]
H A Dset.h40 const void *key; member in struct:set_entry
46 uint32_t (*key_hash_function)(const void *key);
58 uint32_t (*key_hash_function)(const void *key),
66 _mesa_set_add(struct set *set, const void *key);
68 _mesa_set_add_pre_hashed(struct set *set, uint32_t hash, const void *key);
71 _mesa_set_search(const struct set *set, const void *key);
74 const void *key);
/external/mesa3d/src/util/tests/hash_table/
H A Dclear.c31 static uint32_t key_id(const void *key) argument
33 return (uintptr_t)key - 1;
36 static uint32_t key_hash(const void *key) argument
38 return (uintptr_t)key;
85 assert(key_id(entry->key) < size);
H A Dcollision.c57 assert(entry1->key == str1);
60 assert(entry2->key == str2);
64 assert(entry1->key == str1);
69 assert(entry2->key == str2);
75 assert(search_entry == entry2 || search_entry->key != str2);
83 char *key = malloc(10); local
84 sprintf(key, "spam%d", i);
85 _mesa_hash_table_insert_pre_hashed(ht, _mesa_hash_string(key), key, NULL);
88 assert(entry1->key
[all...]
H A Ddelete_management.c34 key_value(const void *key) argument
36 return *(const uint32_t *)key;
75 assert(key_value(entry->key) == i);
82 assert(key_value(entry->key) >= size - 100 &&
83 key_value(entry->key) < size);
H A Dinsert_many.c34 key_value(const void *key) argument
36 return *(const uint32_t *)key;
68 assert(key_value(entry->key) == i);
H A Drandom_entry.c34 key_value(const void *key) argument
36 return *(const uint32_t *)key;
48 return (key_value(entry->key) & 1) == 0;
81 assert((key_value(entry->key) & 1) == 0);
82 if (i == 0 || key_value(entry->key) != random_value)
84 random_value = key_value(entry->key);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DChannelHelper.java80 public static void close(SelectionKey key) { argument
82 key.channel().close();
/external/nos/host/android/hals/weaver/
H A DWeaver.cpp63 Return<WeaverStatus> Weaver::write(uint32_t slotId, const hidl_vec<uint8_t>& key, argument
69 request.set_key(key.data(), key.size());
82 Return<void> Weaver::read(uint32_t slotId, const hidl_vec<uint8_t>& key, read_cb _hidl_cb) { argument
87 request.set_key(key.data(), key.size());
107 LOG(WARNING) << "Wrong key used when reading slot " << slotId;
/external/nos/test/system-test-harness/src/test-data/NIST-CAVP/
H A Daes-gcm-cavp.h11 uint32_t key[8]; member in struct:__anon17427
[all...]
/external/oauth/core/src/main/java/net/oauth/signature/
H A DHMAC_SHA1.java64 SecretKey key = null;
66 if (this.key == null) {
70 this.key = new SecretKeySpec(keyBytes, MAC_NAME);
72 key = this.key;
75 mac.init(key);
85 private SecretKey key = null; field in class:HMAC_SHA1
90 key = null;
98 key = null;
/external/protobuf/gtest/test/
H A Dgtest_xml_output_unittest_.cc117 RecordProperty("key", "1");
120 void ExternalUtilityThatCallsRecordProperty(const char* key, int value) { argument
121 testing::Test::RecordProperty(key, value);
124 void ExternalUtilityThatCallsRecordProperty(const char* key, argument
126 testing::Test::RecordProperty(key, value);
/external/python/cpython2/Modules/_sqlite/
H A Dcache.h35 PyObject* key; member in struct:_pysqlite_Node
/external/python/cpython3/Modules/_sqlite/
H A Dcache.h35 PyObject* key; member in struct:_pysqlite_Node
/external/python/cpython3/Modules/clinic/
H A D_weakref.c.h34 "_remove_dead_weakref($module, dct, key, /)\n"
37 "Atomically remove key from dict if it points to a dead weakref.");
44 PyObject *key);
51 PyObject *key; local
54 &PyDict_Type, &dct, &key)) {
57 return_value = _weakref__remove_dead_weakref_impl(module, dct, key);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSparseIntArray.java19 public int get( int key ){
20 return get( key, 0 );
24 public int get(int key, int valueIfKeyNotFound){ argument
25 return sparseArray.get( key, valueIfKeyNotFound );
29 public void put( int key, int value ){ argument
30 sparseArray.put( key, value );

Completed in 1130 milliseconds

<<11121314151617181920>>