HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 26 - 50 of 6954) sorted by null

12 3 4 5 6 7 8 91011>>

  /development/apps/Development/src/com/android/development/
ColumnData.java 25 key = k;
28 public String key; field in class:ColumnData
  /device/google/marlin/dataservices/datatop/src/
datatop_str.h 45 * Number of key/val pairs in dictionary.
46 * @var dt_procdict::key
47 * Holds the key that is used to access the value.
49 * Value that the key accesses.
53 char *key[DTOP_DICT_SIZE]; member in struct:dt_procdict
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
rotatingtree.h 19 void *key; member in struct:rotating_node_s
25 rotating_node_t* RotatingTree_Get(rotating_node_t **root, void *key);
  /external/clang/test/CodeGen/
2007-02-04-AddrLValue.c 6 char *key; member in struct:__anon15760
  /external/clang/test/PCH/
objc_container.h 9 - (id)objectForKeyedSubscript:(id)key;
10 - (void)setObject:(id)object forKeyedSubscript:(id)key;
20 id key; local
22 oldObject = dictionary[key];
24 dictionary[key] = newObject;
  /external/compiler-rt/test/lsan/TestCases/
cleanup_in_tsd_destructor.c 18 pthread_key_t key; variable
29 int res = pthread_setspecific(key, (void*)1);
35 int res = pthread_key_create(&key, &key_destructor);
disabler_in_tsd_destructor.c 13 pthread_key_t key; variable
20 pthread_setspecific(key, 0);
25 int res = pthread_setspecific(key, (void*)1);
31 int res = pthread_key_create(&key, &key_destructor);
use_tls_pthread_specific_dynamic.cc 24 pthread_key_t key; local
25 res = pthread_key_create(&key, NULL);
26 assert(key >= PTHREAD_KEY_2NDLEVEL_SIZE);
29 res = pthread_setspecific(key, p);
  /external/iproute2/examples/bpf/
bpf_map_in_map.c 28 int key = 0, *val; local
30 map_inner = map_lookup_elem(&map_outer, &key);
32 val = map_lookup_elem(map_inner, &key);
44 int key = 0, *val; local
46 map_inner = map_lookup_elem(&map_outer, &key);
48 val = map_lookup_elem(map_inner, &key);
  /external/libcups/cups/
ppd-attr.c 33 ppd_attr_t key, /* Search key */ local
51 memset(&key, 0, sizeof(key));
52 strlcpy(key.name, name, sizeof(key.name));
58 if ((attr = (ppd_attr_t *)cupsArrayFind(ppd->sorted_attrs, &key)) != NULL)
ppd-custom.c 43 ppd_coption_t key; /* Custom option search key */ local
49 strlcpy(key.keyword, keyword, sizeof(key.keyword));
50 return ((ppd_coption_t *)cupsArrayFind(ppd->coptions, &key));
  /external/libvncserver/libvncserver/
zrlepalettehelper.h 36 zrle_U32 key[ZRLE_PALETTE_MAX_SIZE + 4096]; member in struct:__anon25953
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/
3-1.c 10 * An optional destructor function may be associated with each key value. At thread exit, if
11 * a key value has a non-NULL destructor pointer, and the thread has a non-NULL value associated
12 * with that key, the value of the key is set to NULL, and then the function pointed to is called
31 pthread_key_t key; variable
44 /* Set the value of the key to a value */
45 if (pthread_setspecific(key, (void *)(KEY_VALUE)) != 0) {
50 /* The thread ends here, the destructor for the key should now be called after this */
61 /* Create a key with a destructor function */
62 if (pthread_key_create(&key, dest_func) != 0)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_delete/
2-1.c 12 that may have been associated with 'key' shall no longer be called up thread exit.
15 * 1. Create a key with a destructor function associated with it
29 pthread_key_t key; variable
36 /* Delete the key and check if an error has occured */
37 if (pthread_key_delete(key) != 0) {
46 /* Set the value of the key to a value */
47 if (pthread_setspecific(key, (void *)(KEY_VALUE)) != 0) {
52 /* The thread ends here, the destructor for the key should now be called after this */
63 /* Create a key with a destructor function */
64 if (pthread_key_create(&key, dest_func) != 0)
    [all...]
  /external/python/cpython2/Modules/
rotatingtree.h 19 void *key; member in struct:rotating_node_s
25 rotating_node_t* RotatingTree_Get(rotating_node_t **root, void *key);
  /external/python/cpython3/Modules/
rotatingtree.h 19 void *key; member in struct:rotating_node_s
25 rotating_node_t* RotatingTree_Get(rotating_node_t **root, void *key);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
SwitchLabelElement.java 37 public final int key; field in class:SwitchLabelElement
40 public SwitchLabelElement(int key, @Nonnull Label target) {
41 this.key = key;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/scanner/
SimpleKeyTest.java 23 SimpleKey key = new SimpleKey(1, false, 5, 3, 2, null); local
24 assertTrue(key.toString().contains("SimpleKey"));
  /external/syslinux/com32/sysdump/
rbtree.h 44 uint64_t key; member in struct:rbtree
  /external/tensorflow/tensorflow/compiler/xla/service/
compilation_cache.cc 32 CacheKey key = local
34 VLOG(2) << "inserting cache key: " << key;
35 if (cache_.count(key) == 0) {
36 cache_.emplace(key, std::move(executable));
47 return cache_.at(key);
55 CacheKey key = BuildKey(versioned_handle, module_config); local
56 VLOG(2) << "looking up cache key: " << key;
57 if (cache_.count(key) == 0)
    [all...]
hlo_module_config.cc 42 string key = local
44 StrAppend(&key, "::(");
50 StrAppend(&key, tensorflow::str_util::Join(params, ", "), ") => ",
55 StrAppend(&key, "forcing recompile ", counter++);
58 StrAppend(&key, "::replica_count=", replica_count());
60 StrAppend(&key, debug_options_.DebugString());
62 StrAppend(&key, "::intra_op_parallelism_threads=",
65 return key;
  /external/tensorflow/tensorflow/core/platform/cloud/
expiring_lru_cache_test.cc 26 const string key = "a"; local
32 cache.Insert(key, 41);
34 cache.Insert(key, 42);
38 EXPECT_TRUE(cache.Lookup(key, &value));
42 EXPECT_FALSE(cache.Lookup(key, &value));
44 cache.Insert(key, 43);
45 EXPECT_TRUE(cache.Lookup(key, &value));
50 EXPECT_TRUE(cache.Lookup(key, &value));
54 EXPECT_FALSE(cache.Lookup(key, &value));
95 [&num_compute_calls](const string& key, int* value)
    [all...]
  /external/tpm2/
EncryptDecrypt.c 14 // TPM_RC_KEY is not a symmetric decryption key with both public and private
19 // key's mode
30 BYTE *key; local
36 // The input key should be a symmetric decrypt key.
41 // If the input mode is TPM_ALG_NULL, use the key's mode
45 // If the key is restricted, the input symmetric mode should match the key's
53 // TPM_ALG_NULL so setting in->mode to the mode of the key should have
81 key = symKey->sensitive.sensitive.sym.t.buffer
    [all...]
  /external/valgrind/include/
pub_tool_hashtable.h 48 UWord key; member in struct:_VgHashNode
66 /* Looks up a VgHashNode by key in the table.
70 extern void* VG_(HT_lookup) ( const VgHashTable *table, UWord key );
72 /* Removes a VgHashNode by key from the table. Returns NULL if not found. */
73 extern void* VG_(HT_remove) ( VgHashTable *table, UWord key );
78 the full element to be compared for equality, not only the key.
80 element in the key, and have the comparison function checking for equality
90 key equality. */
97 cmp will be used to verify if 2 elements with the same key are equal.
98 Use NULL cmp if the hash table elements are only to be compared by key. *
    [all...]
  /external/vboot_reference/firmware/lib/
region-fw.c 23 VbPublicKey hdr, *key; local
32 /* Deal with a zero-size key (used in testing) */
36 key = VbExMalloc(size);
37 ret = VbRegionReadData(cparams, VB_REGION_GBB, offset, size, key);
39 VbExFree(key);
43 *keyp = key;

Completed in 952 milliseconds

12 3 4 5 6 7 8 91011>>