Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_liverangeevaluator_helpers.cpp256 first_read(std::numeric_limits<int>::max()), in RegisterCompAccess()
287 if (first_read > line) { in record_read()
288 first_read = line; in record_read()
563 if ((first_read <= first_write) && first_read_scope->is_in_loop()) { in update_required_live_range()
Dsfn_liverangeevaluator_helpers.h103 int first_read; variable
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dtpu_merge_variables_with_execute.cc165 Operation* first_read = nullptr; in BuildVariableAccessInfo() local
216 if (!first_read || info.read->isBeforeInBlock(first_read)) { in BuildVariableAccessInfo()
217 first_read = info.read; in BuildVariableAccessInfo()
221 if (!first_read) return var_access_info; in BuildVariableAccessInfo()
228 first_read->getIterator(), execute_parent->getIterator()))) { in BuildVariableAccessInfo()
/external/crosvm/third_party/vmm_vhost/src/
Dconnection.rs115 let mut first_read = true; in recv_into_bufs_all() localVariable
127 if first_read { in recv_into_bufs_all()
128 first_read = false; in recv_into_bufs_all()
/external/tink/cc/subtle/prf/
Dhkdf_streaming_prf_test.cc172 std::string first_read = in TEST() local
186 EXPECT_THAT(first_read, Eq(second_read)); in TEST()
206 std::string first_read = in TEST() local
221 EXPECT_THAT(first_read, Eq(second_read)); in TEST()
/external/boringssl/src/crypto/bio/
Dbio.cc437 int first_read = 1; in bio_read_full() local
443 *out_eof_on_first_read = first_read && ret == 0; in bio_read_full()
449 first_read = 0; in bio_read_full()
/external/rust/android-crates-io/crates/quiche/deps/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/cronet/stable/third_party/boringssl/src/crypto/bio/
Dbio.cc484 int first_read = 1; in bio_read_full() local
490 *out_eof_on_first_read = first_read && ret == 0; in bio_read_full()
496 first_read = 0; in bio_read_full()
/external/cronet/tot/third_party/boringssl/src/crypto/bio/
Dbio.cc484 int first_read = 1; in bio_read_full() local
490 *out_eof_on_first_read = first_read && ret == 0; in bio_read_full()
496 first_read = 0; in bio_read_full()
/external/cronet/stable/net/http/
Dhttp_cache_unittest.cc3229 std::string first_read; in TEST_F() local
3250 first_read = data_read; in TEST_F()
3286 ReadRemainingAndVerifyTransaction(c->trans.get(), first_read, in TEST_F()
3372 std::string first_read; in TEST_F() local
3393 first_read = data_read; in TEST_F()
3431 ReadRemainingAndVerifyTransaction(c->trans.get(), first_read, in TEST_F()
3467 std::string first_read; in TEST_F() local
3487 first_read = data_read; in TEST_F()
3521 ReadRemainingAndVerifyTransaction(c->trans.get(), first_read, in TEST_F()
3553 std::string first_read; in TEST_F() local
[all …]
/external/cronet/tot/net/http/
Dhttp_cache_unittest.cc3229 std::string first_read; in TEST_F() local
3250 first_read = data_read; in TEST_F()
3286 ReadRemainingAndVerifyTransaction(c->trans.get(), first_read, in TEST_F()
3372 std::string first_read; in TEST_F() local
3393 first_read = data_read; in TEST_F()
3431 ReadRemainingAndVerifyTransaction(c->trans.get(), first_read, in TEST_F()
3467 std::string first_read; in TEST_F() local
3487 first_read = data_read; in TEST_F()
3521 ReadRemainingAndVerifyTransaction(c->trans.get(), first_read, in TEST_F()
3553 std::string first_read; in TEST_F() local
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/variables/
Dresource_variable_ops_test.py300 first_read = resource_variable_ops.read_variable_op(
302 with ops.control_dependencies([first_read]):
308 f, s = self.evaluate([first_read, second_read])