/third_party/node/deps/openssl/openssl/crypto/aria/ |
H A D | aria.c | 1090 unsigned int rounds, const ARIA_u128 *keys) in do_encrypt() 1097 FO(&p, &p, &keys[i]); in do_encrypt() 1098 FE(&p, &p, &keys[i + 1]); in do_encrypt() 1100 FO(&p, &p, &keys[rounds - 2]); in do_encrypt() 1101 sl2(o, &p, &keys[rounds - 1]); in do_encrypt() 1102 xor128(o, o, &keys[rounds]); in do_encrypt() 1089 do_encrypt(unsigned char *o, const unsigned char *pin, unsigned int rounds, const ARIA_u128 *keys) do_encrypt() argument
|
/third_party/openssl/crypto/aria/ |
H A D | aria.c | 1090 unsigned int rounds, const ARIA_u128 *keys) in do_encrypt() 1097 FO(&p, &p, &keys[i]); in do_encrypt() 1098 FE(&p, &p, &keys[i + 1]); in do_encrypt() 1100 FO(&p, &p, &keys[rounds - 2]); in do_encrypt() 1101 sl2(o, &p, &keys[rounds - 1]); in do_encrypt() 1102 xor128(o, o, &keys[rounds]); in do_encrypt() 1089 do_encrypt(unsigned char *o, const unsigned char *pin, unsigned int rounds, const ARIA_u128 *keys) do_encrypt() argument
|
/third_party/python/Lib/logging/ |
H A D | __init__.py | 595 _STYLES.keys())) 1409 for c in ph.loggerMap.keys(): 2060 _STYLES.keys())) 2071 keys = ', '.join(kwargs.keys()) 2072 raise ValueError('Unrecognised argument(s): %s' % keys)
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/ |
H A D | distributeddb_nb_predicate_query_test.cpp | 106 vector<Key> keys; in PrepareSchemaDBAndData() local 108 keys = {KEY_1, KEY_2, KEY_3, KEY_4, KEY_5}; in PrepareSchemaDBAndData() 110 keys = {KEY_1, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6, KEY_7}; in PrepareSchemaDBAndData() 112 keys = {KEY_1, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6, KEY_7, KEY_8, KEY_9, KEY_10}; in PrepareSchemaDBAndData() 116 entries.push_back({keys[index], value}); in PrepareSchemaDBAndData() 1688 vector<Key> keys = {KEY_1, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6, KEY_7}; in HWTEST_F() local 1691 entries.push_back({keys[index], value}); in HWTEST_F()
|
/third_party/curl/lib/vtls/ |
H A D | sectransp.c | 806 /* both new and old APIs return rsa keys missing the spki header (not DER) */ 1094 CFTypeRef keys[5]; in CopyIdentityWithLabel() local 1102 keys[0] = kSecClass; in CopyIdentityWithLabel() 1104 keys[1] = kSecReturnRef; in CopyIdentityWithLabel() 1107 keys[2] = kSecMatchLimit; in CopyIdentityWithLabel() 1110 keys[3] = kSecMatchPolicy; in CopyIdentityWithLabel() 1113 keys[4] = kSecAttrLabel; in CopyIdentityWithLabel() 1114 query_dict = CFDictionaryCreate(NULL, (const void **)keys, in CopyIdentityWithLabel()
|
/third_party/python/Lib/test/test_zoneinfo/ |
H A D | test_zoneinfo.py | 159 file_key = self.zoneinfo_data.keys[0] 177 file_key = self.zoneinfo_data.keys[0] 1702 self.assertTrue(self.zoneinfo_data.keys) # Sanity check 1705 zoneinfo_keys = set(self.zoneinfo_data.keys) 1853 self.keys = [] 1867 self.keys.append(key) 1918 return cls._get_zonedump().keys()
|
/third_party/python/Lib/ |
H A D | pydoc.py | 253 for key in methods.keys(): 2101 self.list(self.keywords.keys()) 2109 self.list(self.symbols.keys()) 2116 self.list(self.topics.keys()) 2204 self.list(modules.keys()) 2558 names = sorted(Helper.topics.keys()) 2570 names = sorted(Helper.keywords.keys())
|
/foundation/multimodalinput/input/service/module_loader/include/ |
H A D | mmi_service.h | 79 int32_t SupportKeys(int32_t deviceId, std::vector<int32_t> &keys, std::vector<bool> &keystroke) override; 221 int32_t OnSupportKeys(int32_t deviceId, std::vector<int32_t> &keys, std::vector<bool> &keystroke);
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/ |
H A D | rd_single_ver_storage_executor.cpp | 450 // Get all the meta keys. 451 int RdSingleVerStorageExecutor::GetAllMetaKeys(std::vector<Key> &keys) const in GetAllMetaKeys() 637 int RdSingleVerStorageExecutor::DeleteMetaData(const std::vector<Key> &keys) in DeleteMetaData() argument
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/ |
H A D | query_sync_water_mark_helper.cpp | 62 int QuerySyncWaterMarkHelper::DeleteMetaDataFromDB(const std::vector<Key> &keys) const in DeleteMetaDataFromDB() 67 return storage_->DeleteMetaData(keys); in DeleteMetaDataFromDB()
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | rdb_store.cpp | 549 std::vector<PRIKey> &keys) in GetModifyTime() 553 (void)keys; in GetModifyTime() 548 GetModifyTime(const std::string &table, const std::string &column, std::vector<PRIKey> &keys) GetModifyTime() argument
|
/test/testfwk/xdevice/plugins/devicetest/runner/ |
H A D | test_runner.py | 160 if base_file_name not in history_case_dict.keys(): 168 if case_id in history_case_dict.keys():
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | ext.py | 502 "filters": sorted(self.environment.filters.keys()), 503 "tests": sorted(self.environment.tests.keys()),
|
/third_party/littlefs/scripts/ |
H A D | structs.py | 324 names = list(table.keys() | diff_table.keys())
|
/third_party/python/Lib/distutils/ |
H A D | ccompiler.py | 33 # should really, really be one of the keys of the 'compiler_class' 118 for key in self.executables.keys(): 982 for compiler in compiler_class.keys():
|
/third_party/python/Lib/importlib/metadata/ |
H A D | __init__.py | 425 >>> list(dd.keys()) 458 def keys(self): member in Deprecated 460 return super().keys() 606 The returned object will have keys that name the various bits of
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | ext.py | 502 "filters": sorted(self.environment.filters.keys()), 503 "tests": sorted(self.environment.tests.keys()),
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | containers.py | 101 def keys(self): member in Mapping 165 elif hasattr(other, "keys"): 166 for key in other.keys(): 473 key_checker: A type_checkers.ValueChecker instance to run on keys 563 key_checker: A type_checkers.ValueChecker instance to run on keys 634 # if there are duplicate map keys the last key seen is used".
|
H A D | well_known_types.py | 780 def keys(self): # pylint: disable=invalid-name member in Struct 781 return self.fields.keys()
|
/third_party/python/Lib/test/test_email/ |
H A D | test_message.py | 720 expected_headers = [h for h in m.keys() 723 self.assertEqual(list(m.keys()), expected_headers)
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | cipher_ctx.rs | 186 /// Normally this is called once to set both the cipher and public keys. However, this process may be split up by 187 /// first providing the cipher with no public keys and then setting the public keys with no cipher. 218 let mut keys = encrypted_keys in seal_init() variables 229 keys.as_mut_ptr(), in seal_init()
|
/test/xts/acts/distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/entry/src/ohosTest/js/test/ |
H A D | SingleKvStoreKVPromiseJsTest.js | 1874 let keys = []; 1885 keys.push(key + i); 1891 await kvStore.deleteBatch(keys).then((err) => { 1918 let keys = ['batch_test_string_key1', 'batch_test_string_key2']; 1919 await kvStore.deleteBatch(keys).then((err) => { 1958 let keys = ['batch_test_string_key1', 'batch_test_string_keya']; 1959 await kvStore.deleteBatch(keys).then((err) => { 2007 let keys = Object.keys(entries).slice(5); 2008 await kvStore.deleteBatch(keys) [all...] |
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | gen_framework_sc.py | 718 if 'register_extension' not in data.keys(): 1816 if 'register_extension' not in data.keys(): 2457 for blobName in sorted(blobStructs.keys()): 2675 for blobName in sorted(blobStructs.keys()): 2766 if 'mandatory_features' not in data.keys(): 2773 if not 'features' in featureData.keys() or 'requirements' not in featureData.keys(): 2914 if 'register_extension' not in data.keys(): 2920 if 'mandatory_features' in data.keys():
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_render_service_connection.cpp | 1260 int32_t RSRenderServiceConnection::GetScreenSupportedMetaDataKeys(ScreenId id, std::vector<ScreenHDRMetadataKey>& keys) 1268 [=, &keys]() { return screenManager_->GetScreenSupportedMetaDataKeys(id, keys); }).get(); 1271 [=, &keys]() { return screenManager_->GetScreenSupportedMetaDataKeys(id, keys); }).get();
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/ |
H A D | rs_interfaces_test.cpp | 838 std::vector<ScreenHDRMetadataKey> keys; in HWTEST_F() local 839 int ret = rsInterfaces->GetScreenSupportedMetaDataKeys(screenId, keys); in HWTEST_F() 841 EXPECT_EQ(keys[0], ScreenHDRMetadataKey::MATAKEY_RED_PRIMARY_X); // ScreenHDRMetadataKey now is mock data. in HWTEST_F() 855 std::vector<ScreenHDRMetadataKey> keys; in HWTEST_F() local 856 int ret = rsInterfaces->GetScreenSupportedMetaDataKeys(INVALID_SCREEN_ID, keys); in HWTEST_F()
|