/third_party/node/deps/v8/src/objects/ |
H A D | string-comparator.cc | 51 int to_check = std::min(state_1_.length_, state_2_.length_); in Equals() local 52 DCHECK(to_check > 0 && to_check <= length); in Equals() 56 is_equal = Equals<uint8_t, uint8_t>(&state_1_, &state_2_, to_check); in Equals() 58 is_equal = Equals<uint8_t, uint16_t>(&state_1_, &state_2_, to_check); in Equals() 62 is_equal = Equals<uint16_t, uint8_t>(&state_1_, &state_2_, to_check); in Equals() 64 is_equal = Equals<uint16_t, uint16_t>(&state_1_, &state_2_, to_check); in Equals() 69 length -= to_check; in Equals() 72 state_1_.Advance(to_check, access_guard); in Equals() 73 state_2_.Advance(to_check, access_guar in Equals() [all...] |
H A D | string-comparator.h | 56 static inline bool Equals(State* state_1, State* state_2, int to_check) { in Equals() argument 59 return CompareCharsEqual(a, b, to_check); in Equals()
|
/third_party/node/deps/openssl/openssl/ssl/record/ |
H A D | tls_pad.c | 123 size_t padding_length, to_check, i; in tls1_cbc_remove_padding_and_mac() local 154 to_check = 256; /* maximum amount of padding, inc length byte. */ in tls1_cbc_remove_padding_and_mac() 155 if (to_check > *reclen) in tls1_cbc_remove_padding_and_mac() 156 to_check = *reclen; in tls1_cbc_remove_padding_and_mac() 158 for (i = 0; i < to_check; i++) { in tls1_cbc_remove_padding_and_mac()
|
/third_party/openssl/ssl/record/ |
H A D | tls_pad.c | 123 size_t padding_length, to_check, i; in tls1_cbc_remove_padding_and_mac() local 154 to_check = 256; /* maximum amount of padding, inc length byte. */ in tls1_cbc_remove_padding_and_mac() 155 if (to_check > *reclen) in tls1_cbc_remove_padding_and_mac() 156 to_check = *reclen; in tls1_cbc_remove_padding_and_mac() 158 for (i = 0; i < to_check; i++) { in tls1_cbc_remove_padding_and_mac()
|
/third_party/ltp/testcases/kernel/syscalls/splice/ |
H A 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()
|
/third_party/vixl/tools/ |
H A D | clang_tidy.py | 136 to_check = FilterFiles(files) 137 printer.Print("clang-tidy: %d files to check" % len(to_check)) 141 for file in to_check:
|
/third_party/skia/third_party/externals/freetype/src/sdf/ |
H A 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 853 ED* to_check; in compare_neighbor() local 858 to_check = current + ( y_offset * width ) + x_offset; in compare_neighbor() 872 dist = to_check->dist - ONE; in compare_neighbor() 876 dist_vec = to_check->near; in compare_neighbor()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A 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()
|
/third_party/spirv-tools/source/fuzz/ |
H A 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()
|
/third_party/node/deps/v8/tools/testrunner/objects/ |
H A D | testcase.py | 486 to_check = [self._get_source_path()] 488 while to_check: 489 next_resource = to_check.pop() 495 to_check.append(resource)
|
/third_party/gn/src/gn/ |
H A D | command_check.cc | 266 const std::vector<const Target*>& to_check, in CheckPublicHeaders() 276 header_checker->Run(to_check, force_check, &header_errors); in CheckPublicHeaders() 264 CheckPublicHeaders(const BuildSettings* build_settings, const std::vector<const Target*>& all_targets, const std::vector<const Target*>& to_check, bool force_check, bool check_generated, bool check_system) CheckPublicHeaders() argument
|
H A D | setup.cc | 573 std::vector<const Target*> to_check; 576 &to_check); 579 &to_check); 581 to_check = all_targets; 584 if (!commands::CheckPublicHeaders(&build_settings_, all_targets, to_check,
|
H A D | header_checker.h | 59 // Runs the check. The targets in to_check will be checked. 67 bool Run(const std::vector<const Target*>& to_check,
|
H A D | header_checker.cc | 134 bool HeaderChecker::Run(const std::vector<const Target*>& to_check, in Run() argument 138 for (auto* check : to_check) { in Run()
|
H A D | commands.h | 279 // all_targets, and the specific targets to check should be in to_check. 292 const std::vector<const Target*>& to_check,
|
/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
H A D | test-strtod.cc | 1096 double to_check) { in CheckDouble() 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() 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() 1094 CheckDouble(Vector<const char> buffer, int exponent, double to_check) CheckDouble() argument 1180 CheckFloat(Vector<const char> buffer, int exponent, float to_check) CheckFloat() argument
|
/third_party/node/deps/v8/src/heap/ |
H A D | heap.cc | 3436 explicit LeftTrimmerVerifierRootVisitor(FixedArrayBase to_check) in LeftTrimmerVerifierRootVisitor() argument 3437 : to_check_(to_check) {} in LeftTrimmerVerifierRootVisitor()
|