Searched refs:sorted_keys (Results 1 – 10 of 10) sorted by relevance
/external/toybox/toys/pending/ |
D | getfattr.c | 35 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/igt-gpu-tools/scripts/ |
D | trace.pl | 638 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/llvm-project/libcxx/utils/libcxx/ |
D | graph.py | 43 sorted_keys = self.node_strings.keys() 44 sorted_keys.sort() 45 for k in sorted_keys:
|
/external/selinux/python/sepolicy/ |
D | sepolicy.py | 225 sorted_keys = [] 227 sorted_keys.append(i) 228 sorted_keys.sort() 229 for k in sorted_keys:
|
/external/selinux/python/semanage/ |
D | semanage | 147 sorted_keys = [] 149 sorted_keys.append(i) 150 sorted_keys.sort() 151 for k in sorted_keys:
|
/external/python/cpython2/Python/ |
D | compile.c | 367 PyObject *sorted_keys; in dictbytype() local 378 sorted_keys = PyDict_Keys(src); in dictbytype() 379 if (sorted_keys == NULL) in dictbytype() 381 if (PyList_Sort(sorted_keys) != 0) { in dictbytype() 382 Py_DECREF(sorted_keys); in dictbytype() 385 num_keys = PyList_GET_SIZE(sorted_keys); in dictbytype() 388 k = PyList_GET_ITEM(sorted_keys, key_i); in dictbytype() 397 Py_DECREF(sorted_keys); in dictbytype() 404 Py_DECREF(sorted_keys); in dictbytype() 414 Py_DECREF(sorted_keys); in dictbytype()
|
/external/python/cpython3/Python/ |
D | compile.c | 459 PyObject *sorted_keys; in dictbytype() local 470 sorted_keys = PyDict_Keys(src); in dictbytype() 471 if (sorted_keys == NULL) in dictbytype() 473 if (PyList_Sort(sorted_keys) != 0) { in dictbytype() 474 Py_DECREF(sorted_keys); in dictbytype() 477 num_keys = PyList_GET_SIZE(sorted_keys); in dictbytype() 482 k = PyList_GET_ITEM(sorted_keys, key_i); in dictbytype() 491 Py_DECREF(sorted_keys); in dictbytype() 497 Py_DECREF(sorted_keys); in dictbytype() 505 Py_DECREF(sorted_keys); in dictbytype()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | lookup_ops_test.py | 3043 sorted_keys = np.sort(self.evaluate(exported_keys)) 3045 self.assertAllEqual([b"brain", b"salad", b"surgery"], sorted_keys) 3269 sorted_keys = np.sort(self.evaluate(exported_keys)) 3271 self.assertAllEqual([b"brain", b"salad", b"surgery"], sorted_keys)
|
/external/tensorflow/tensorflow/go/op/ |
D | wrappers.go | 33015 func XlaKeyValueSort(scope *Scope, keys tf.Output, values tf.Output) (sorted_keys tf.Output, sorted…
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/ |
D | tf_generated_ops.td | 17857 Res<TF_IntOrFpTensor, [{A `Tensor` of type K.}]>:$sorted_keys,
|