/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | des-internal.c | 318 static void desfunc(u32 *block, const u32 *keys) in desfunc() argument 350 work = RORc(right, 4) ^ *keys++; in desfunc() 355 work = right ^ *keys++; in desfunc() 361 work = RORc(leftt, 4) ^ *keys++; in desfunc() 366 work = leftt ^ *keys++; in desfunc()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/c_adapter/ |
H A D | basic_rust_types.rs | 679 let key_vec = map.keys().cloned().collect(); 688 let key_vec = map.keys().cloned().collect(); 697 let key_vec: Vec<String> = map.keys().cloned().collect(); 706 let key_vec: Vec<String> = map.keys().cloned().collect(); 718 let key_vec: Vec<String> = map.keys().cloned().collect(); 731 let key_vec: Vec<String> = map.keys().cloned().collect(); 743 let key_vec: Vec<String> = map.keys().cloned().collect(); 752 let key_vec: Vec<String> = map.keys().cloned().collect(); 761 let key_vec: Vec<String> = map.keys().cloned().collect();
|
/third_party/glfw/src/ |
H A D | input.c | 37 // Internal key state used for sticky keys 284 if (action == GLFW_RELEASE && window->keys[key] == GLFW_RELEASE) in _glfwInputKey() 287 if (action == GLFW_PRESS && window->keys[key] == GLFW_PRESS) in _glfwInputKey() 291 window->keys[key] = _GLFW_STICK; in _glfwInputKey() 293 window->keys[key] = (char) action; in _glfwInputKey() 633 // Release all sticky keys in glfwSetInputMode() 636 if (window->keys[i] == _GLFW_STICK) in glfwSetInputMode() 637 window->keys[i] = GLFW_RELEASE; in glfwSetInputMode() 758 if (window->keys[key] == _GLFW_STICK) in glfwGetKey() 761 window->keys[ke in glfwGetKey() [all...] |
/third_party/python/Lib/test/ |
H A D | test_pprint.py | 852 keys = [Unorderable() for i in range(n)] 853 random.shuffle(keys) 854 skeys = sorted(keys, key=id) 857 self.assertEqual(clean(pprint.pformat(set(keys))), 859 self.assertEqual(clean(pprint.pformat(frozenset(keys))), 861 self.assertEqual(clean(pprint.pformat(dict.fromkeys(keys))), 864 # Issue 10017: TypeError on user-defined types as dict keys. 868 # Issue 14998: TypeError on tuples with NoneTypes as dict keys. 869 keys = [(1,), (None,)] 870 self.assertEqual(pprint.pformat(dict.fromkeys(keys, [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/ |
H A D | event_hub.h | 43 uint8_t keys = 0; member 47 return (keys == other.keys) && (value == other.value); in IsEqualTrigger() 187 const std::string& value, uint8_t keys, const std::function<void()>& onKeyboardShortcutAction);
|
/foundation/arkui/ace_engine/frameworks/base/resource/ |
H A D | ace_res_key_parser.cpp | 128 bool AceResKeyParser::ParseMatch(const std::vector<std::string>& keys, std::vector<KeyParam>& keyParams, in ParseMatch() argument 131 for (auto iter = keys.begin(); iter != keys.end(); iter++) { in ParseMatch() 132 if (iter == keys.begin() && !styleRes) { in ParseMatch()
|
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/ |
H A D | camera_napi_utils.cpp | 308 napi_env env, napi_value* result, size_t property_count, const char** keys) in CreateObjectWithPropName() 314 return napi_create_object_with_named_properties(env, result, property_count, keys, values); in CreateObjectWithPropName() 318 napi_env env, napi_value* result, size_t property_count, const char** keys, const std::vector<std::string> values) in CreateObjectWithPropNameAndValues() 324 return napi_create_object_with_named_properties(env, result, property_count, keys, napiValues); in CreateObjectWithPropNameAndValues() 307 CreateObjectWithPropName( napi_env env, napi_value* result, size_t property_count, const char** keys) CreateObjectWithPropName() argument 317 CreateObjectWithPropNameAndValues( napi_env env, napi_value* result, size_t property_count, const char** keys, const std::vector<std::string> values) CreateObjectWithPropNameAndValues() argument
|
/foundation/deviceprofile/device_info_manager/old/services/core/src/dbstorage/ |
H A D | device_profile_storage.cpp | 214 int32_t DeviceProfileStorage::PutDeviceProfileBatch(const std::vector<std::string>& keys, in PutDeviceProfileBatch() argument 223 const size_t keySize = keys.size(); in PutDeviceProfileBatch() 235 kvKey = keys[i]; in PutDeviceProfileBatch() 238 DeviceProfileUtils::AnonymizeDeviceId(keys[i]).c_str(), in PutDeviceProfileBatch()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | uspoof_conf.cpp | 56 // 3. Build a list of keys (UChar32s) from the four mapping tables. Sort the 413 // While copying the keys to the runtime array, in outputData() 417 int32_t *keys = in outputData() local 430 keys[i] = key; in outputData() 434 rawData->fCFUKeys = (int32_t)((char *)keys - (char *)rawData); in outputData() 436 fSpoofImpl->fSpoofData->fCFUKeys = keys; in outputData()
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
H A D | RBReporterScanner.java | 51 Enumeration keys = bundle.allItems.keys(); in RBReporterScanner() 52 while (keys.hasMoreElements()) { in RBReporterScanner() 53 String key = (String)keys.nextElement(); in RBReporterScanner()
|
/third_party/mbedtls/library/ |
H A D | psa_crypto_cipher.c | 314 uint8_t keys[24]; in psa_cipher_setup() local 315 memcpy(keys, key_buffer, 16); in psa_cipher_setup() 316 memcpy(keys + 16, key_buffer, 8); in psa_cipher_setup() 318 keys, in psa_cipher_setup()
|
/third_party/libbpf/src/ |
H A D | bpf.h | 168 * @param keys pointer to an array of *count* keys 178 LIBBPF_API int bpf_map_delete_batch(int fd, const void *keys, 190 * The *keys* and *values* are output parameters which must point to memory large enough to 191 * hold *count* items based on the key and value size of the map *map_fd*. The *keys* 199 * @param keys pointer to an array large enough for *count* keys 212 void *keys, void *values, __u32 *count, 223 * @param keys pointer to an array of *count* keys [all...] |
/third_party/node/deps/npm/node_modules/jsonparse/ |
H A D | jsonparse.js | 78 var keys = Object.keys(C); 79 for (var i = 0, l = keys.length; i < l; i++) { 80 var key = keys[i];
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | uspoof_conf.cpp | 56 // 3. Build a list of keys (UChar32s) from the four mapping tables. Sort the 413 // While copying the keys to the runtime array, in outputData() 417 int32_t *keys = in outputData() local 430 keys[i] = key; in outputData() 434 rawData->fCFUKeys = (int32_t)((char *)keys - (char *)rawData); in outputData() 436 fSpoofImpl->fSpoofData->fCFUKeys = keys; in outputData()
|
/third_party/pulseaudio/src/modules/dbus/ |
H A D | iface-client.c | 87 static pa_dbus_arg_info remove_properties_args[] = { { "keys", "as", "in" } }; 364 char **keys = NULL; in handle_remove_properties() local 378 pa_assert_se(dbus_message_get_args(msg, NULL, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING, &keys, &n_keys, DBUS_TYPE_INVALID)); in handle_remove_properties() 381 changed |= pa_proplist_unset(c->client->proplist, keys[i]) >= 0; in handle_remove_properties() 390 dbus_free_string_array(keys); in handle_remove_properties()
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | utils.py | 322 self.keys = {} 326 self.keys[fileobj] = key 330 return self.keys.pop(fileobj) 336 return self.keys
|
/third_party/pulseaudio/src/pulse/ |
H A D | proplist.c | 355 int pa_proplist_unset_many(pa_proplist *p, const char * const keys[]) { in pa_proplist_unset_many() argument 360 pa_assert(keys); in pa_proplist_unset_many() 362 for (k = keys; *k; k++) in pa_proplist_unset_many() 366 for (k = keys; *k; k++) in pa_proplist_unset_many()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | uspoof_conf.cpp | 56 // 3. Build a list of keys (UChar32s) from the four mapping tables. Sort the 414 // While copying the keys to the runtime array, in outputData() 418 int32_t *keys = in outputData() local 431 keys[i] = key; in outputData() 435 rawData->fCFUKeys = (int32_t)((char *)keys - (char *)rawData); in outputData() 437 fSpoofImpl->fSpoofData->fCFUKeys = keys; in outputData()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | gen-use-table.py | 471 uu = sorted (data.keys ()) 485 for suf in v.keys(): 546 for k in sorted(use_mapping.keys()): 551 for suf in v.keys():
|
/third_party/skia/infra/bots/recipes/ |
H A D | compute_buildstats.py | 117 keys = [] 118 for k in sorted(api.vars.builder_cfg.keys()): 120 keys.extend([k, api.vars.builder_cfg[k]]) 121 keystr = ' '.join(keys)
|
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/ |
H A D | perf_puppeteer_skottie_frames.go | 43 // These flags feed into the perf trace keys associated with the output data. 63 keys := map[string]string{ 71 outputWithoutResults, err := makePerfObj(*gitHash, *taskID, os.Getenv("SWARMING_BOT_ID"), keys) 100 func makePerfObj(gitHash, taskID, machineID string, keys map[string]string) (perfJSONFormat, error) { 111 rv.Key = keys
|
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_render_skps/ |
H A D | perf_puppeteer_render_skps.go | 43 // These flags feed into the perf trace keys associated with the output data. 63 keys := map[string]string{ 71 outputWithoutResults, err := makePerfObj(*gitHash, *taskID, os.Getenv("SWARMING_BOT_ID"), keys) 100 func makePerfObj(gitHash, taskID, machineID string, keys map[string]string) (perfJSONFormat, error) { 111 rv.Key = keys
|
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_canvas/ |
H A D | perf_puppeteer_canvas.go | 40 // These flags feed into the perf trace keys associated with the output data. 59 keys := map[string]string{ 67 outputWithoutResults, err := makePerfObj(*gitHash, *taskID, os.Getenv("SWARMING_BOT_ID"), keys) 95 func makePerfObj(gitHash, taskID, machineID string, keys map[string]string) (perfJSONFormat, error) { 106 rv.Key = keys
|
/third_party/rust/crates/rustix/src/thread/ |
H A D | prctl.rs | 709 /// Securely reset the thread's pointer authentication keys to fresh random values generated 723 keys: Option<PointerAuthenticationKeys>, in reset_pointer_authentication_keys() 725 let keys = keys.as_ref().map_or(0_u32, PointerAuthenticationKeys::bits); in reset_pointer_authentication_keys() 726 prctl_2args(PR_PAC_RESET_KEYS, keys as usize as *mut _).map(|_r| ()) in reset_pointer_authentication_keys()
|
/third_party/vk-gl-cts/scripts/ |
H A D | mustpass.py | 326 for pattern in patterns.keys(): 334 if len(t.keys()) == 0: 349 for pattern in patterns.keys(): 357 if len(t.keys()) == 0:
|