/external/cronet/build/private_code_test/ |
D | private_code_test.py | 45 to_check = dirname 47 if to_check.startswith('..'): 48 to_check = os.path.relpath(to_check, _DIR_SRC_ROOT) 52 to_check = to_check[len(root_out_dir) + 1:] 54 parts = to_check.split(os.path.sep, 1) 57 to_check = parts[1] 59 if any(to_check.startswith(p) for p in private_paths):
|
/external/angle/build/private_code_test/ |
D | private_code_test.py | 45 to_check = dirname 47 if to_check.startswith('..'): 48 to_check = os.path.relpath(to_check, _DIR_SRC_ROOT) 52 to_check = to_check[len(root_out_dir) + 1:] 54 parts = to_check.split(os.path.sep, 1) 57 to_check = parts[1] 59 if any(to_check.startswith(p) for p in private_paths):
|
/external/tensorflow/tensorflow/python/util/ |
D | util.cc | 234 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsMappingHelper() argument 235 return IsInstanceOfRegisteredType(to_check, "Mapping"); in IsMappingHelper() 244 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsMutableMappingHelper() argument 245 return IsInstanceOfRegisteredType(to_check, "MutableMapping"); in IsMutableMappingHelper() 255 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsMappingViewHelper() argument 256 return IsInstanceOfRegisteredType(to_check, "MappingView"); in IsMappingViewHelper() 265 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsObjectProxy() argument 266 return IsInstanceOfRegisteredType(to_check, "ObjectProxy"); in IsObjectProxy() 274 static auto* const check_cache = new CachedTypeCheck([](PyObject* to_check) { in IsAttrsHelper() argument 275 Safe_PyObjectPtr cls(PyObject_GetAttrString(to_check, "__class__")); in IsAttrsHelper() [all …]
|
/external/rappor/analysis/R/ |
D | decode_ngrams.R | 206 to_check <- as.vector(tail(t(active_cands), n = 1)) functionVar 209 present <- sapply(to_check, function(x) any(x == new_cands)) 211 to_check <- to_check[present] 218 inds <- which(new_cands[, 1] == to_check[j])
|
/external/ltp/testcases/kernel/syscalls/splice/ |
D | splice02.c | 58 size_t page_size, to_check, block, blocks, i, fail = 0; in do_child() local 95 to_check = (block+1) * page_size < (unsigned long)st.st_size ? in do_child() 98 for (i = 0; i < to_check; i++) { in do_child()
|
/external/ComputeLibrary/scripts/ |
D | clang_tidy_rules.py | 48 to_check = [] 58 to_check.append(f) 59 return to_check
|
/external/boringssl/src/crypto/cipher_extra/ |
D | tls_cbc.c | 87 size_t to_check = 256; // maximum amount of padding, inc length byte. in EVP_tls_cbc_remove_padding() local 88 if (to_check > in_len) { in EVP_tls_cbc_remove_padding() 89 to_check = in_len; in EVP_tls_cbc_remove_padding() 92 for (size_t i = 0; i < to_check; i++) { in EVP_tls_cbc_remove_padding()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/cipher_extra/ |
D | tls_cbc.c | 87 size_t to_check = 256; // maximum amount of padding, inc length byte. in EVP_tls_cbc_remove_padding() local 88 if (to_check > in_len) { in EVP_tls_cbc_remove_padding() 89 to_check = in_len; in EVP_tls_cbc_remove_padding() 92 for (size_t i = 0; i < to_check; i++) { in EVP_tls_cbc_remove_padding()
|
/external/cronet/third_party/boringssl/src/crypto/cipher_extra/ |
D | tls_cbc.c | 87 size_t to_check = 256; // maximum amount of padding, inc length byte. in EVP_tls_cbc_remove_padding() local 88 if (to_check > in_len) { in EVP_tls_cbc_remove_padding() 89 to_check = in_len; in EVP_tls_cbc_remove_padding() 92 for (size_t i = 0; i < to_check; i++) { in EVP_tls_cbc_remove_padding()
|
/external/vixl/tools/ |
D | clang_tidy.py | 154 to_check = FilterFiles(files) 155 printer.Print("clang-tidy: %d files to check" % len(to_check)) 159 for file in to_check:
|
/external/dynamic_depth/internal/xmpmeta/ |
D | jpeg_io.cc | 70 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/freetype/src/sdf/ |
D | ftbsdf.c | 300 to_check = dm + y_offset * w + x_offset; \ 301 if ( to_check->alpha == 0 ) \ 317 ED* to_check = NULL; in bsdf_is_edge() local 851 ED* to_check; in compare_neighbor() local 856 to_check = current + ( y_offset * width ) + x_offset; in compare_neighbor() 870 dist = to_check->dist - ONE; in compare_neighbor() 874 dist_vec = to_check->prox; in compare_neighbor()
|
/external/pigweed/pw_presubmit/py/pw_presubmit/ |
D | source_in_build.py | 142 to_check = tuple(files_and_extensions_to_check) 153 (f for f in paths if str(f).endswith(to_check)),
|
/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | transformation_flatten_conditional_branch.cpp | 468 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/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/ |
D | transformation_flatten_conditional_branch.cpp | 468 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/ |
D | transformation_flatten_conditional_branch.cpp | 468 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/double-conversion/test/cctest/ |
D | test-strtod.cc | 1096 double to_check) { in CheckDouble() argument 1101 if (to_check == 0.0) { in CheckDouble() 1108 if (to_check == Double::Infinity()) { in CheckDouble() 1115 Double d(to_check); in CheckDouble() 1182 float to_check) { in CheckFloat() argument 1187 if (to_check == 0.0) { in CheckFloat() 1194 if (to_check == static_cast<float>(Double::Infinity())) { in CheckFloat() 1201 Single s(to_check); in CheckFloat()
|
/external/rust/crates/rusqlite/src/util/ |
D | sqlite_string.rs | 181 let to_check = [ in test_from_str() localVariable 192 for &(input, output) in &to_check { in test_from_str()
|
/external/tensorflow/tensorflow/python/ops/ |
D | nn_batchnorm_test.py | 242 to_check = ["dx", "dm", "dv", "db", "dg"] 245 to_check = ["dx", "dm", "dv", "db"] 246 for i, _ in enumerate(to_check): 248 all_grads[i + len(to_check)], all_grads[i], atol=0.000001)
|
/external/angle/build/ios/ |
D | update_bundle_filelist.py | 141 to_check = set()
|
/external/cronet/build/ios/ |
D | update_bundle_filelist.py | 141 to_check = set()
|