Home | History | Annotate | Download | only in llvm_ir

Lines Matching defs:For

12 See the License for the specific language governing permissions and
46 // for (i64 i = `start` + `step`; i s< `end`; i += `step`)
49 void For(
55 void For(
59 For(name, /*start=*/ir_builder_->getInt64(start),
69 // for (i64 i = `start` + `step`; i s< `end`; i += `step`)
75 // for (i64 i = `start`; i s< `end`; i += `step`)
78 void For(tensorflow::StringPiece name, llvm::Value* start, llvm::Value* end,
84 void For(tensorflow::StringPiece name, llvm::Value* start, llvm::Value* end,
89 For(name, /*start=*/start, /*end=*/end,
94 void For(
98 For(name, start, end, step,
103 void For(
106 For(name, /*start=*/ir_builder_->getInt64(start),