Searched refs:Tape (Results 1 – 2 of 2) sorted by relevance
/external/clang/test/SemaCXX/ |
D | constexpr-turing.cpp | 17 struct Tape { struct 18 constexpr Tape() : l(0), val(false), r(0) {} in Tape() function 19 constexpr Tape(const Tape &old, bool write) : in Tape() function 21 constexpr Tape(const Tape &old, Dir dir) : in Tape() argument 26 const Tape *l; argument 28 const Tape *r; argument 30 constexpr Tape update(const Tape &old, bool write) { return Tape(old, write); } in update() 31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir); } in move() 35 constexpr unsigned run(const State *tm, const Tape &tape, unsigned state) { in run() 48 static_assert(run(bb3, Tape(), 0) == 21, ""); [all …]
|
/external/tensorflow/tensorflow/python/eager/ |
D | tape.py | 35 class Tape(object): class 49 return Tape(tape)
|