Home
last modified time | relevance | path

Searched refs:unique_key (Results 1 – 11 of 11) sorted by relevance

/external/bcc/libbpf-tools/
Dcapable.bpf.c29 struct unique_key { struct
70 __type(key, struct unique_key);
132 struct unique_key key = {.cap = ap->cap}; in BPF_KRETPROBE()
/external/swiftshader/src/Reactor/
DLLVMJIT.cpp818 static std::atomic<uint64_t> unique_key{ 0 }; in __anon884bf0030b02() local
819 rr::DebugInfo::NotifyObjectEmitted(unique_key++, obj, l); in __anon884bf0030b02()
825 static std::atomic<uint64_t> unique_key{ 0 }; in __anon884bf0030c02() local
826 rr::DebugInfo::NotifyObjectEmitted(unique_key++, obj, l); in __anon884bf0030c02()
/external/rust/android-crates-io/crates/slotmap/src/
Ddense.rs1283 let mut unique_key = 0u32; localVariable
1296 hm.insert(unique_key, val);
1297 hm_keys.push(unique_key);
1298 unique_key += 1;
Dsparse_secondary.rs1646 let mut unique_key = 0u32; localVariable
1660 hm.insert(unique_key, val);
1661 hm_keys.push(unique_key);
1662 unique_key += 1;
Dsecondary.rs1698 let mut unique_key = 0u32; localVariable
1712 hm.insert(unique_key, val);
1713 hm_keys.push(unique_key);
1714 unique_key += 1;
Dbasic.rs1429 let mut unique_key = 0u32; localVariable
1442 hm.insert(unique_key, val);
1443 hm_keys.push(unique_key);
1444 unique_key += 1;
Dhop.rs1572 let mut unique_key = 0u32; localVariable
1585 hm.insert(unique_key, val);
1586 hm_keys.push(unique_key);
1587 unique_key += 1;
/external/pytorch/torch/csrc/dynamo/
Dguards.cpp4020 py::str unique_key("__defaults_accessor__"); in torch_c_dynamo_guards_init() local
4022 std::move(unique_key), in torch_c_dynamo_guards_init()
4041 py::str unique_key("__kwdefaults_accessor__"); in torch_c_dynamo_guards_init() local
4043 std::move(unique_key), in torch_c_dynamo_guards_init()
4071 py::str unique_key("__type_accessor__"); in torch_c_dynamo_guards_init() local
4073 std::move(unique_key), in torch_c_dynamo_guards_init()
4091 py::str unique_key("__weakref_call_accessor__"); in torch_c_dynamo_guards_init() local
4093 std::move(unique_key), in torch_c_dynamo_guards_init()
4141 py::str unique_key("__grad_accessor__"); in torch_c_dynamo_guards_init() local
4143 std::move(unique_key), in torch_c_dynamo_guards_init()
[all …]
/external/fonttools/Lib/fontTools/misc/
DbezierTools.py1359 unique_key = lambda ts: (int(ts[0] / precision), int(ts[1] / precision)) function
1364 key = unique_key(ts)
/external/python/cpython3/Modules/_ctypes/
D_ctypes.c2760 unique_key(CDataObject *target, Py_ssize_t index) in unique_key() function
2821 key = unique_key(target, index); in KeepRef()
/external/pytorch/test/
Dtest_serialization.py844 def _test_serialization_container(self, unique_key, filecontext_lambda): argument