Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/util/
Dutil.cc236 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsMappingHelper() argument
237 return IsInstanceOfRegisteredType(to_check, "Mapping"); in IsMappingHelper()
246 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsMutableMappingHelper() argument
247 return IsInstanceOfRegisteredType(to_check, "MutableMapping"); in IsMutableMappingHelper()
257 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsMappingViewHelper() argument
258 return IsInstanceOfRegisteredType(to_check, "MappingView"); in IsMappingViewHelper()
267 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsObjectProxy() argument
268 return IsInstanceOfRegisteredType(to_check, "ObjectProxy"); in IsObjectProxy()
276 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsAttrsHelper() argument
277 Safe_PyObjectPtr cls(PyObject_GetAttrString(to_check, "__class__")); in IsAttrsHelper()
[all …]
/external/dynamic_depth/internal/xmpmeta/
Djpeg_io.cc70 bool HasPrefixString(const string& to_check, const string& prefix) { in HasPrefixString() argument
71 if (to_check.size() < prefix.size()) { in HasPrefixString()
74 return std::equal(prefix.begin(), prefix.end(), to_check.begin()); in HasPrefixString()
/external/vixl/tools/
Dclang_tidy.py154 to_check = FilterFiles(files)
155 printer.Print("clang-tidy: %d files to check" % len(to_check))
159 for file in to_check:
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/
Dtransformation_flatten_conditional_branch.cpp468 std::queue<uint32_t> to_check; in GetProblematicInstructionsIfConditionalCanBeFlattened() local
470 [&to_check](uint32_t label) { to_check.push(label); }); in GetProblematicInstructionsIfConditionalCanBeFlattened()
473 while (!to_check.empty()) { in GetProblematicInstructionsIfConditionalCanBeFlattened()
474 uint32_t block_id = to_check.front(); in GetProblematicInstructionsIfConditionalCanBeFlattened()
475 to_check.pop(); in GetProblematicInstructionsIfConditionalCanBeFlattened()
566 to_check.push(block->terminator()->GetSingleWordInOperand(0)); in GetProblematicInstructionsIfConditionalCanBeFlattened()
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dtransformation_flatten_conditional_branch.cpp468 std::queue<uint32_t> to_check; in GetProblematicInstructionsIfConditionalCanBeFlattened() local
470 [&to_check](uint32_t label) { to_check.push(label); }); in GetProblematicInstructionsIfConditionalCanBeFlattened()
473 while (!to_check.empty()) { in GetProblematicInstructionsIfConditionalCanBeFlattened()
474 uint32_t block_id = to_check.front(); in GetProblematicInstructionsIfConditionalCanBeFlattened()
475 to_check.pop(); in GetProblematicInstructionsIfConditionalCanBeFlattened()
566 to_check.push(block->terminator()->GetSingleWordInOperand(0)); in GetProblematicInstructionsIfConditionalCanBeFlattened()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dtransformation_flatten_conditional_branch.cpp468 std::queue<uint32_t> to_check; in GetProblematicInstructionsIfConditionalCanBeFlattened() local
470 [&to_check](uint32_t label) { to_check.push(label); }); in GetProblematicInstructionsIfConditionalCanBeFlattened()
473 while (!to_check.empty()) { in GetProblematicInstructionsIfConditionalCanBeFlattened()
474 uint32_t block_id = to_check.front(); in GetProblematicInstructionsIfConditionalCanBeFlattened()
475 to_check.pop(); in GetProblematicInstructionsIfConditionalCanBeFlattened()
566 to_check.push(block->terminator()->GetSingleWordInOperand(0)); in GetProblematicInstructionsIfConditionalCanBeFlattened()
/external/rust/crates/quiche/deps/boringssl/src/crypto/cipher_extra/
Dtls_cbc.c96 size_t to_check = 256; // maximum amount of padding, inc length byte. in EVP_tls_cbc_remove_padding() local
97 if (to_check > in_len) { in EVP_tls_cbc_remove_padding()
98 to_check = in_len; in EVP_tls_cbc_remove_padding()
101 for (size_t i = 0; i < to_check; i++) { in EVP_tls_cbc_remove_padding()
/external/boringssl/src/crypto/cipher_extra/
Dtls_cbc.c96 size_t to_check = 256; // maximum amount of padding, inc length byte. in EVP_tls_cbc_remove_padding() local
97 if (to_check > in_len) { in EVP_tls_cbc_remove_padding()
98 to_check = in_len; in EVP_tls_cbc_remove_padding()
101 for (size_t i = 0; i < to_check; i++) { in EVP_tls_cbc_remove_padding()
/external/rust/crates/rusqlite/src/util/
Dsqlite_string.rs179 let to_check = [ in test_from_str() localVariable
190 for &(input, output) in &to_check { in test_from_str()
/external/llvm-project/llvm/utils/
Dabtest.py286 def prepare_functions(to_check, gooddir, goodfile, badfile): argument
316 if os.path.basename(c) == to_check:
/external/tensorflow/tensorflow/python/ops/
Dnn_batchnorm_test.py247 to_check = ["dx", "dm", "dv", "db", "dg"]
250 to_check = ["dx", "dm", "dv", "db"]
251 for i, _ in enumerate(to_check):
253 all_grads[i + len(to_check)], all_grads[i], atol=0.000001)