Home
last modified time | relevance | path

Searched refs:sorted_keys (Results 1 – 14 of 14) sorted by relevance

/external/toybox/toys/pending/
Dgetfattr.c35 char **sorted_keys; local
58 sorted_keys = xmalloc(key_count * sizeof(char *));
60 sorted_keys[i++] = key;
61 qsort(sorted_keys, key_count, sizeof(char *), qstrcmp);
66 key = sorted_keys[i];
90 free(sorted_keys);
/external/pytorch/aten/src/ATen/native/cpu/
DSortingKernel.cpp120 const scalar_t* sorted_keys = nullptr; in parallel_sort1d_kernel() local
122 std::tie(sorted_keys, sorted_vals) = fbgemm::radix_sort_parallel( in parallel_sort1d_kernel()
131 const bool sorted_in_place = keys == sorted_keys; in parallel_sort1d_kernel()
136 …scalar_t> x) -> vec::Vectorized<scalar_t> { return x; }, keys + begin, sorted_keys + begin, job_si… in parallel_sort1d_kernel()
/external/executorch/exir/dialects/edge/spec/
Dutils.py249 sorted_keys = sorted(type_alias.keys())
251 index_map = {type_alias[sorted_keys[i]]: i for i in range(len(sorted_keys))}
257 return list(sorted_keys), sorted(constraint_set)
/external/pytorch/third_party/
Dbuild_bundled.py43 sorted_keys = sorted(collected.keys())
48 for k in sorted_keys:
/external/pytorch/torch/fx/experimental/
Drecording.py464 sorted_keys = list(env1_set)
465 sorted_keys.sort()
469 for k in sorted_keys
/external/igt-gpu-tools/scripts/
Dtrace.pl638 my @sorted_keys;
643 @sorted_keys = sort sortStart keys %db;
645 die "Database changed size?!" unless scalar(@sorted_keys) ==
673 $db{$_}->{'ctx'} == $ctx } @sorted_keys;
757 foreach my $key (@sorted_keys) {
816 foreach my $key (@sorted_keys) {
860 foreach my $key (@sorted_keys) {
/external/python/google-auth-library-python/google/auth/
Daws.py192 sorted_keys = list(querystring_encoded_map.keys())
193 sorted_keys.sort()
196 for key in sorted_keys:
/external/selinux/python/sepolicy/
Dsepolicy.py226 sorted_keys = []
228 sorted_keys.append(i)
229 sorted_keys.sort()
230 for k in sorted_keys:
/external/mesa3d/src/intel/vulkan/grl/gpu/
Dmorton_msb_radix_bitonic_sort.h836 global ulong* sorted_keys = (global ulong*)context->keys_out + context->start_offset; in sort_morton_codes_msb_bin_items() local
871 sorted_keys[context->start[bucket_id] + id_in_bucket] = val; in sort_morton_codes_msb_bin_items()
886 sorted_keys[context->start[bucket_id] + id_in_bucket] = val; in sort_morton_codes_msb_bin_items()
894 sorted_keys[context->start[bucket_id] + id_in_bucket] = val; in sort_morton_codes_msb_bin_items()
/external/selinux/python/semanage/
Dsemanage151 sorted_keys = []
153 sorted_keys.append(i)
154 sorted_keys.sort()
155 for k in sorted_keys:
/external/python/cpython3/Python/
Dcompile.c525 PyObject *sorted_keys; in dictbytype() local
536 sorted_keys = PyDict_Keys(src); in dictbytype()
537 if (sorted_keys == NULL) in dictbytype()
539 if (PyList_Sort(sorted_keys) != 0) { in dictbytype()
540 Py_DECREF(sorted_keys); in dictbytype()
543 num_keys = PyList_GET_SIZE(sorted_keys); in dictbytype()
548 k = PyList_GET_ITEM(sorted_keys, key_i); in dictbytype()
557 Py_DECREF(sorted_keys); in dictbytype()
563 Py_DECREF(sorted_keys); in dictbytype()
571 Py_DECREF(sorted_keys); in dictbytype()
/external/tensorflow/tensorflow/python/kernel_tests/data_structures/
Dlookup_ops_test.py3353 sorted_keys = np.sort(self.evaluate(exported_keys))
3355 self.assertAllEqual([b"brain", b"salad", b"surgery"], sorted_keys)
3702 sorted_keys = np.sort(self.evaluate(exported_keys))
3704 self.assertAllEqual([b"brain", b"salad", b"surgery"], sorted_keys)
/external/tensorflow/tensorflow/go/op/
Dwrappers.go56321 func XlaKeyValueSort(scope *Scope, keys tf.Output, values tf.Output) (sorted_keys tf.Output, sorted…
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_generated_ops.td20098 Res<TF_IntOrFpTensor, [{A `Tensor` of type K.}]>:$sorted_keys,