HomeSort by relevance Sort by last modified time
    Searched defs:matched (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/third_party/brotli/src/brotli/enc/
find_match_length.h 32 int matched = 0; local
36 BROTLI_UNALIGNED_LOAD64(s1 + matched))) {
38 matched += 8;
41 BROTLI_UNALIGNED_LOAD64(s2) ^ BROTLI_UNALIGNED_LOAD64(s1 + matched);
43 matched += matching_bits >> 3;
44 return matched;
49 if (PREDICT_TRUE(s1[matched] == *s2)) {
51 ++matched;
53 return matched;
56 return matched;
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
genversion.c 39 int major, minor, subminor, patchlevel, matched; local
46 matched = sscanf(PACKAGE_VERSION, "%d.%d.%d.%d", &major, &minor, &subminor,
49 if (matched == 3)
51 else if (matched != 4) {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
inet_aton.c 16 int matched = sscanf(cp, "%u.%u.%u.%u%n", &p1, &p2, &p3, &p4, local
19 if (strlen(cp) == consumed && matched == 4) {
27 matched = sscanf(cp, "%u.%u.%u%n", &p1, &p2, &p3, &consumed);
28 if (strlen(cp) == consumed && matched == 3) {
36 matched = sscanf(cp, "%u.%u%n", &p1, &p2, &consumed);
37 if (strlen(cp) == consumed && matched == 2) {
45 matched = sscanf(cp, "%u%n", &p1, &consumed);
46 if (strlen(cp) == consumed && matched == 1) {
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
pcy_tree.c 317 int matched = 0; local
327 matched = 1;
330 if (!matched && last->anyPolicy)
416 /* If no policy mapping: matched if one child present */
425 /* If mapping: matched if one child per expected policy set */
  /external/chromium_org/third_party/re2/re2/
bitstate.cc 143 bool matched = false; local
268 matched = true;
289 return matched;
onepass.cc 217 // because we use it to tell if we matched.
251 bool matched = false; local
302 matched = true;
330 matched = true;
335 if (!matched)
424 bool matched = false; local
463 if (matched)
537 if (matched) {
545 matched = true;
  /external/chromium_org/third_party/re2/re2/testing/
dfa_test.cc 208 bool matched, failed = false; local
209 matched = prog->SearchDFA(match, NULL,
213 CHECK(matched);
214 matched = prog->SearchDFA(no_match, NULL,
218 CHECK(!matched);
243 bool matched, failed = false; local
244 matched = prog_->SearchDFA(match_, NULL,
248 CHECK(matched);
249 matched = prog_->SearchDFA(no_match_, NULL,
253 CHECK(!matched);
333 bool matched = prog->SearchDFA(t.text, NULL, Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, NULL); local
    [all...]
tester.cc 81 bool matched; // found a match member in struct:re2::TestInstance::Result
305 result->matched =
316 result->matched =
327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL,
336 result->matched =
341 if (result->matched) {
348 result->matched = false;
362 result->matched = prog_->SearchOnePass(text, context, anchor, kind_,
372 result->matched = prog_->SearchBitState(text, context, anchor, kind_,
393 result->matched = re2_->Match(context
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
valparam.c 227 int matched; local
236 matched = 0;
245 matched = 1;
258 matched = 1;
265 if (!matched) {
  /external/openssl/crypto/x509v3/
pcy_tree.c 315 int i, matched = 0; local
324 matched = 1;
327 if (!matched && last->anyPolicy)
413 /* If no policy mapping: matched if one child present */
422 /* If mapping: matched if one child per expected policy set */
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_key_bindings_handler.cc 66 bool matched = !edit_commands_.empty(); local
69 return matched;
  /external/chromium_org/components/query_parser/
query_parser.cc 122 bool matched = false; local
129 matched = true;
132 return matched;
  /external/chromium_org/net/cookies/
cookie_store_unittest.h 231 bool matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies)); local
236 while (!matched && base::Time::Now() <= polling_end_date) {
239 matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies));
242 EXPECT_TRUE(matched) << "\"" << cookies
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdump.cc 191 bool matched = (0 == first_line.find("#!rtpplay1.0 ")); local
196 matched &= (pos != std::string::npos && pos < first_line.size() - 1);
197 for (++pos; pos < first_line.size() && matched; ++pos) {
198 matched &= (0 != isdigit(first_line[pos]));
201 return matched;
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglconfig.c 433 EGLBoolean matched = EGL_TRUE; local
449 matched = EGL_FALSE;
453 matched = EGL_FALSE;
457 matched = EGL_FALSE;
467 if (!matched) {
480 return matched;
723 /* get the number of matched configs */
735 /* get the matched configs */
  /external/mesa3d/src/egl/main/
eglconfig.c 433 EGLBoolean matched = EGL_TRUE; local
449 matched = EGL_FALSE;
453 matched = EGL_FALSE;
457 matched = EGL_FALSE;
467 if (!matched) {
480 return matched;
723 /* get the number of matched configs */
735 /* get the matched configs */
  /external/oprofile/libregex/
op_regex.cpp 229 regmatch_t const & matched = get_match(match, local
231 if (matched.rm_so == -1 &&
232 matched.rm_eo == -1) {
234 } else if (matched.rm_so == -1 ||
235 matched.rm_eo == -1) {
239 inserted += str.substr(matched.rm_so,
240 matched.rm_eo - matched.rm_so);
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.cpp 104 // if the last matched element is a shadow host, the condition above isn't met, even though it
913 bool matched = false; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
tasm.c 265 int i, matched; local
333 matched = 0;
337 matched = 1;
338 if (!matched) {
829 int i, matched; local
834 matched = -1;
840 matched = i;
841 if (matched >= 0 && stdmacs[matched].macros)
842 yasm_preproc_add_standard(cur_preproc, stdmacs[matched].macros)
    [all...]
  /external/ltrace/
ltrace-elf.c 836 int matched = filter_matches_symbol(options.plt_filter, local
848 if (! matched && ! latent_plts)
854 if (! matched && latent_plts)
977 /* If the symbol is not matched, skip it. We already
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-death-test.cc 555 const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); local
556 if (matched) {
    [all...]
  /external/chromium_org/third_party/libxml/src/
c14n.c 1262 int matched = 0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-death-test.cc 515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); local
516 if (matched) {
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 800 bool matched; member in struct:testing::__anon20195::RangeCallbackState
817 state->matched = true;
830 state.matched = false;
832 CHECK(state.matched);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 800 bool matched; member in struct:testing::__anon20238::RangeCallbackState
817 state->matched = true;
830 state.matched = false;
832 CHECK(state.matched);
    [all...]

Completed in 1339 milliseconds

1 2 3