Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/turtledemo/
Dminimal_hanoi.py44 def hanoi(n, from_, with_, to_): argument
46 hanoi(n-1, from_, to_, with_)
47 to_.push(from_.pop())
48 hanoi(n-1, with_, from_, to_)
/external/python/cpython2/Demo/turtle/
Dtdemo_minimal_hanoi.py44 def hanoi(n, from_, with_, to_): argument
46 hanoi(n-1, from_, to_, with_)
47 to_.push(from_.pop())
48 hanoi(n-1, with_, from_, to_)
/external/libchrome/base/i18n/
Dbuild_utf8_validator_tables.cc82 explicit Range(uint8_t value) : from_(value), to_(value) {} in Range()
91 CHECK(to == to_ + 1); in AddByte()
92 to_ = to; in AddByte()
96 uint8_t to() const { return to_; } in to()
108 uint8_t to_; member in __anonacaf82de0111::Range
/external/mesa3d/src/freedreno/computerator/
Dmain.h78 to_ ## _to(struct _from *f) \
/external/tensorflow/tensorflow/core/grappler/utils/
Dgraph_view.h398 to_ = to_node->node_index_; in TopologicalDependency()
405 int to_ = internal::kMissingIndex; variable
Dgraph_view.cc1442 extra_dependency.from_ == extra_dependency.to_ || in SortTopologically()
1444 extra_dependency.to_ < 0 || extra_dependency.to_ >= num_nodes) { in SortTopologically()
1449 extra_dependency.to_); in SortTopologically()
/external/mesa3d/src/freedreno/drm/
Dfreedreno_priv.h247 static inline struct child * to_ ## child (struct parent *x) \
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_syscalls_netbsd.inc871 PRE_SYSCALL(dup2)(long long from_, long long to_) { /* Nothing to do */ }
872 POST_SYSCALL(dup2)(long long res, long long from_, long long to_) {
1126 PRE_SYSCALL(rename)(void *from_, void *to_) {
1128 const char *to = (const char *)to_;
1136 POST_SYSCALL(rename)(long long res, void *from_, void *to_) {
1139 const char *to = (const char *)to_;
1179 (long long s_, void *buf_, long long len_, long long flags_, void *to_,
1182 PRE_READ(to_, tolen_);
1186 void *to_, long long tolen_) {
1189 POST_READ(to_, tolen_);
[all …]
/external/rust/crates/log/
DCHANGELOG.md9 * Remove unstable `Value::to_*` conversions that were incorrectly using `as`.
/external/python/setuptools/setuptools/_vendor/
Dpyparsing.py168 for from_,to_ in zip(from_symbols, to_symbols):
169 data = data.replace(from_, to_)
/external/python/setuptools/pkg_resources/_vendor/
Dpyparsing.py168 for from_,to_ in zip(from_symbols, to_symbols):
169 data = data.replace(from_, to_)