Searched defs:mismatch (Results 1 - 25 of 30) sorted by relevance

12

/external/iproute2/examples/bpf/
H A Dbpf_shared.h19 long mismatch; member in struct:count_queue
H A Dbpf_prog.c408 bool mismatch; local
410 mismatch = skb->queue_mapping != get_smp_processor_id();
415 if (mismatch)
416 lock_xadd(&cq->mismatch, 1);
422 _cq.mismatch = mismatch ? 1 : 0;
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3treeparser.c38 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
83 parser->rec->mismatch = mismatch;
169 /** Override for standard base recognizer mismatch function
174 mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) function
H A Dantlr3baserecognizer.c56 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
172 recognizer->mismatch = mismatch;
409 /// plain mismatch(), which does not recover. Then any error
475 // going on, so we mismatch, which creates an exception in the recognizer exception
633 /// Factor out what to do upon token mismatch so tree parsers can behave
639 /// \remark mismatch only works for parsers and must be overridden for anything else.
642 mismatch(pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) function
665 ANTLR3_FPRINTF(stderr, "Base recognizer function 'mismatch' called by unknown parser type - provide override for this function\n");
933 /// token mismatch
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3baserecognizer.h141 /** Pointer to a function that works out what to do when a token mismatch
144 void (*mismatch) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, member in struct:ANTLR3_BASE_RECOGNIZER_struct
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBaseRecognizer.pm121 sub mismatch { subroutine
122 Readonly my $usage => 'void mismatch(IntStream input, int ttype, BitSet follow)';
/external/libmicrohttpd/src/microhttpd/
H A Dtest_postprocessor.c73 mismatch (const char *a, const char *b) function
106 (mismatch (filename, want[idx + 1])) ||
107 (mismatch (content_type, want[idx + 2])) ||
108 (mismatch (transfer_encoding, want[idx + 3])) ||
/external/marisa-trie/lib/marisa/
H A Dtrie-inline.h142 inline std::size_t Trie::mismatch() { function in class:marisa::Trie
165 if (next_pos == mismatch()) {
217 if (next_pos == mismatch()) {
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dtrie-inline.h143 inline std::size_t Trie::mismatch() { function in class:marisa_alpha::Trie
166 if (next_pos == mismatch()) {
222 if (next_pos == mismatch()) {
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_blend.c570 boolean mismatch; local
605 mismatch = FALSE;
608 mismatch = TRUE;
610 if (mismatch) {
/external/openssh/
H A Dssh_api.c316 const char *mismatch = "Protocol mismatch.\r\n"; local
345 mismatch, strlen(mismatch))) != 0)
H A Dsshconnect.c547 int remote_major, remote_minor, mismatch; local
632 mismatch = 0;
643 mismatch = 1;
665 mismatch = 1;
668 if (mismatch)
H A Dsshd.c414 int mismatch; local
477 s = "Protocol mismatch.\n";
510 mismatch = 0;
517 mismatch = 1;
521 mismatch = 1;
539 mismatch = 1;
545 if (mismatch) {
1085 fatal("%s: rexec version mismatch", __func__);
/external/blktrace/
H A Dblkiomon.c104 static long leftover = 0, driverdata = 0, match = 0, mismatch = 0, sequence = 0; variable
425 dump_bits(t_old, t_young, "mismatch");
426 mismatch++;
591 fprintf(debug.fp, "%ld leftover, %ld match, %ld mismatch, "
593 leftover, match, mismatch, driverdata, sequence);
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtree.py2342 def mismatch(self, input, ttype, follow): member in class:TreeParser
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb155 def mismatch( input, type, follow = nil ) method in class:ANTLR3.AST.TreeParser
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBaseRecognizer.js98 * plain {@link #mismatch}, which does not recover. Then any error
183 /** Factor out what to do upon token mismatch so tree parsers can behave
192 mismatch: function(input, ttype, follow) {
573 * token mismatch. Upon token mismatch, if LA(1) is member of
/external/icu/icu4c/source/test/cintltst/
H A Dcbiditst.c3628 log_err("\nActual and expected output mismatch.\n"
4441 UBool mismatch, testOK = TRUE; local
4459 mismatch = FALSE;
4478 mismatch |= (UBool)(j >= nPortions ||
4485 if (mismatch || j != nPortions) {
4487 log_err("\nProcessed lengths mismatch.\n"
4606 log_err("\nActual and expected output mismatch.\n"
4880 log_err("\nActual and expected output mismatch on case %d.\n"
/external/clang/lib/Sema/
H A DSemaChecking.cpp2556 << 0 /* qualifier difference */ << 3 /* parameter mismatch */
4361 // Rather than emitting a normal format/argument mismatch, we want to
9869 bool mismatch = false; local
9871 mismatch = !Context.hasSameType(ArgumentType, RequiredType);
9878 if (mismatch)
9882 mismatch = false;
9885 mismatch = !isLayoutCompatible(Context,
9889 mismatch = !isLayoutCompatible(Context, ArgumentType, RequiredType);
9891 if (mismatch)
H A DSemaDecl.cpp1127 assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch");
3202 // Merge attributes from the parameters. These can mismatch with K&R
6911 // Add 1 to the index so that 0 can mean the mismatch didn't
8451 assert(NewTemplateDecl && "Template/non-template mismatch");
8679 bool mismatch = true; local
8682 mismatch = false;
8696 mismatch = !qs.empty();
8700 if (mismatch) {
11677 // Warn about the struct/class tag mismatch.
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 531 milliseconds

12