Home
last modified time | relevance | path

Searched refs:first_read (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dtpu_merge_variables_with_execute.cc138 Operation* first_read = nullptr; in BuildVariableAccessInfo() local
188 if (!first_read || info.read->isBeforeInBlock(first_read)) { in BuildVariableAccessInfo()
189 first_read = info.read; in BuildVariableAccessInfo()
193 if (!first_read) return infos; in BuildVariableAccessInfo()
201 llvm::reverse(llvm::make_range(std::next(first_read->getIterator()), in BuildVariableAccessInfo()
212 first_read->getIterator(), in BuildVariableAccessInfo()
/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_liverange.cpp379 first_read(numeric_limits<int>::max()), in temp_comp_access()
394 if (first_read > line) { in record_read()
395 first_read = line; in record_read()
644 if ((first_read <= first_write) && in get_required_live_range()
Dsfn_liverange.h144 int first_read; variable
/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi_temprename.cpp174 int first_read; member in __anon47b4bad20111::temp_comp_access
651 first_read(numeric_limits<int>::max()), in temp_comp_access()
665 if (first_read > line) { in record_read()
666 first_read = line; in record_read()
915 if ((first_read <= first_write) && in get_required_live_range()
/external/rust/crates/quiche/deps/boringssl/src/crypto/bio/
Dbio.c492 int first_read = 1; in bio_read_full() local
498 *out_eof_on_first_read = first_read && ret == 0; in bio_read_full()
504 first_read = 0; in bio_read_full()
/external/boringssl/src/crypto/bio/
Dbio.c494 int first_read = 1; in bio_read_full() local
500 *out_eof_on_first_read = first_read && ret == 0; in bio_read_full()
506 first_read = 0; in bio_read_full()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_linux.cpp922 for (bool first_read = true;; first_read = false) { in ListThreads() local
952 if (!first_read) { in ListThreads()
/external/tensorflow/tensorflow/python/kernel_tests/
Dresource_variable_ops_test.py272 first_read = resource_variable_ops.read_variable_op(
274 with ops.control_dependencies([first_read]):
280 f, s = self.evaluate([first_read, second_read])