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

1 2 3 4 5 6 7 8 91011>>

  /external/toolchain-utils/crosperf/
config.py 8 def GetConfig(key):
9 return config.get(key)
12 def AddConfig(key, value):
13 config[key] = value
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
KeyParameter.java 8 private byte[] key; field in class:KeyParameter
11 byte[] key)
13 this(key, 0, key.length);
17 byte[] key,
21 this.key = new byte[keyLen];
23 System.arraycopy(key, keyOff, this.key, 0, keyLen);
28 return key;
RC2Parameters.java 9 byte[] key)
11 this(key, (key.length > 128) ? 1024 : (key.length * 8));
15 byte[] key,
18 super(key);
DESedeParameters.java 7 * DES-EDE Key length in bytes.
12 byte[] key)
14 super(key);
16 if (isWeakKey(key, 0, key.length))
18 throw new IllegalArgumentException("attempt to create weak DESede key");
23 * return true if the passed in key is a DES-EDE weak key.
25 * @param key bytes making up the key
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
HeaderProperty.java 5 * HeaderProperty is a key - value pojo for storing http header properties.
8 private String key; field in class:HeaderProperty
11 public HeaderProperty(String key, String value) {
12 this.key = key;
17 return key;
20 public void setKey(String key) {
21 this.key = key;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/params/
KeyParameter.java 13 private byte[] key; field in class:KeyParameter
16 byte[] key)
18 this(key, 0, key.length);
22 byte[] key,
26 this.key = new byte[keyLen];
28 System.arraycopy(key, keyOff, this.key, 0, keyLen);
34 return key;
RC2Parameters.java 13 byte[] key)
15 this(key, (key.length > 128) ? 1024 : (key.length * 8));
19 byte[] key,
22 super(key);
DESedeParameters.java 11 * DES-EDE Key length in bytes.
16 byte[] key)
18 super(key);
20 if (isWeakKey(key, 0, key.length))
22 throw new IllegalArgumentException("attempt to create weak DESede key");
27 * return true if the passed in key is a DES-EDE weak key.
29 * @param key bytes making up the key
    [all...]
  /external/curl/docs/cmdline-opts/
proxy-key.d 1 Long: proxy-key
2 Help: Private key for HTTPS proxy
3 Arg: <key>
5 Same as --key but used in HTTPS proxy context.
  /external/libchrome/base/threading/
thread_local_storage_posix.cc 13 bool PlatformThreadLocalStorage::AllocTLS(TLSKey* key) {
14 return !pthread_key_create(key,
18 void PlatformThreadLocalStorage::FreeTLS(TLSKey key) {
19 int ret = pthread_key_delete(key);
23 void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) {
24 int ret = pthread_setspecific(key, value);
  /external/protobuf/js/commonjs/
export_asserts.js 26 for (var key in global) {
27 if ((typeof key == "string") && global.hasOwnProperty(key) &&
28 shouldExport(key)) {
29 exports[key] = global[key];
  /external/autotest/client/tools/
diffprofile 15 key = ' '.join(a[start_key:])
17 results.append((key, count))
31 for (key, count) in parse_lines(sys.argv[1]):
33 if orig.has_key(key):
34 orig[key] += count
36 orig[key] = count
37 if diff.has_key(key):
38 diff[key] -= count
40 diff[key] = -count
42 for (key, count) in parse_lines(sys.argv[2])
    [all...]
  /external/vboot_reference/firmware/lib20/
packed_key.c 5 * Key unpacking functions
12 const uint8_t *vb2_packed_key_data(const struct vb2_packed_key *key)
14 return (const uint8_t *)key + key->key_offset;
19 const struct vb2_packed_key *key)
22 key, sizeof(*key),
23 key->key_offset, key->key_size);
26 int vb2_unpack_key(struct vb2_public_key *key,
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
CollationKey.java 35 * the key is created, binary comparisons are fast. This approach is
90 final java.text.CollationKey key; field in class:CollationKey
96 this.key = delegate;
154 // * @param key array of bytes that represent the collation order of argument
159 // public CollationKey(String source, byte key[])
165 // * CollationKey constructor that forces key to release its internal byte
166 // * array for adoption. key will have a null byte array after this
169 // * @param key RawCollationKey object that represents the collation order of
175 // public CollationKey(String source, RawCollationKey key)
189 return key.getSourceString()
    [all...]
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
bigquery_table_accessor_test_data.h 201 key: "bool_field"
209 key: "bytes_field"
217 key: "date_field"
225 key: "datetime_field"
233 key: "int_field"
241 key: "rec_field.float_field"
249 key: "str_field"
257 key: "time_field"
265 key: "timestamp_field"
278 key: "bool_field
    [all...]
  /external/vogar/src/vogar/
FileCache.java 26 boolean existsInCache(String key);
28 void copyToCache(File source, String key);
30 void copyFromCache(String key, File destination);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
Dbm.py 15 for key in self.keys():
16 t = repr(key) + ': ' + repr(self[key])
24 def __getitem__(self, key):
25 return eval(self.db[repr(key)])
27 def __setitem__(self, key, value):
28 self.db[repr(key)] = repr(value)
30 def __delitem__(self, key):
31 del self.db[repr(key)]
35 for key in self.db.keys():
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/examples/cep/
main.cpp 22 int key = std::cin.get();
23 dest.on_next(key);
29 filter([](int key){return std::tolower(key) == 'a';});
32 filter([](int key){return std::tolower(key) == 'g';});
35 subscribe([](int key){
36 std::cout << key << std::endl;
  /external/python/cpython2/Demo/classes/
Dbm.py 15 for key in self.keys():
16 t = repr(key) + ': ' + repr(self[key])
24 def __getitem__(self, key):
25 return eval(self.db[repr(key)])
27 def __setitem__(self, key, value):
28 self.db[repr(key)] = repr(value)
30 def __delitem__(self, key):
31 del self.db[repr(key)]
35 for key in self.db.keys()
    [all...]
  /external/toybox/toys/example/
demo_scankey.c 26 int key, x, y; local
44 key = scan_key_getsize(scratch, -1*!!t[0], &width, &height);
49 printf("key=[ESC");
51 while (0<(key = scan_key_getsize(scratch, 0, &width, &height)))
52 printf("%c", key);
54 } else printf("key=%d ", key);
58 if (key == -2) continue;
59 if (key <= ' ') break;
60 if (key>=256)
    [all...]
  /external/python/rsa/tests/
test_pem.py 22 import rsa.key
24 # 512-bit key. Too small for practical purposes, but good enough for testing with.
26 -----BEGIN PUBLIC KEY-----
29 -----END PUBLIC KEY-----
33 -----BEGIN RSA PRIVATE KEY-----
41 -----END RSA PRIVATE KEY-----
44 # Private key components
51 self.assertEqual(_markers('RSA PRIVATE KEY'),
52 (b'-----BEGIN RSA PRIVATE KEY-----',
53 b'-----END RSA PRIVATE KEY-----')
    [all...]
  /external/u-boot/lib/rsa/
rsa-mod-exp.c 33 * @key: Key containing modulus to subtract
36 static void subtract_modulus(const struct rsa_public_key *key, uint32_t num[])
41 for (i = 0; i < key->len; i++) {
42 acc += (uint64_t)num[i] - key->modulus[i];
51 * @key: Key containing modulus to check
55 static int greater_equal_modulus(const struct rsa_public_key *key,
60 for (i = (int)key->len - 1; i >= 0; i--) {
61 if (num[i] < key->modulus[i]
252 struct rsa_public_key key; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf.c 50 struct brw_sf_prog_key *key )
59 program = brw_compile_sf(brw->screen->compiler, mem_ctx, key, &prog_data,
63 key, sizeof(*key),
76 struct brw_sf_prog_key key; local
95 memset(&key, 0, sizeof(key));
97 /* Populate the key, noting state dependencies:
100 key.attrs = brw->vue_map_geom_out.slots_valid;
110 if (key.attrs & BITFIELD64_BIT(VARYING_SLOT_EDGE)
    [all...]
  /external/toybox/toys/other/
sysctl.c 14 usage: sysctl [-aAeNnqw] [-p [FILE] | KEY[=VALUE]...]
20 -N Don't print key values
21 -n Don't print key names
30 static char *split_key(char *key)
32 char *value = strchr(key, '=');
44 static void key_error(char *key)
47 if (!(toys.optflags & FLAG_e)) error_msg("unknown key '%s'", key);
48 } else perror_msg("key '%s'", key);
69 char *path, *data, *key; local
128 char *line = 0, *key, *val; local
    [all...]
  /art/tools/checker/common/
immutables.py 16 def __setitem__(self, key, value):
19 def __delitem__(self, key):
22 def copyWith(self, key, value):
24 dict.__setitem__(newDict, key, value)

Completed in 723 milliseconds

1 2 3 4 5 6 7 8 91011>>