Home
last modified time | relevance | path

Searched refs:probe (Results 1 – 25 of 245) sorted by relevance

12345678910

/external/e2fsprogs/lib/blkid/
Dprobe.c320 static int probe_ext4dev(struct blkid_probe *probe, in probe_ext4dev() argument
361 get_ext2_info(probe->dev, id, buf); in probe_ext4dev()
365 static int probe_ext4(struct blkid_probe *probe, struct blkid_magic *id, in probe_ext4() argument
409 get_ext2_info(probe->dev, id, buf); in probe_ext4()
413 static int probe_ext3(struct blkid_probe *probe, struct blkid_magic *id, in probe_ext3() argument
431 get_ext2_info(probe->dev, id, buf); in probe_ext3()
435 static int probe_ext2(struct blkid_probe *probe, struct blkid_magic *id, in probe_ext2() argument
463 get_ext2_info(probe->dev, id, buf); in probe_ext2()
467 static int probe_jbd(struct blkid_probe *probe, struct blkid_magic *id, in probe_jbd() argument
476 get_ext2_info(probe->dev, id, buf); in probe_jbd()
[all …]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DGrammarNonDeterminismMessage.java44 public DecisionProbe probe; field in GrammarNonDeterminismMessage
47 public GrammarNonDeterminismMessage(DecisionProbe probe, in GrammarNonDeterminismMessage() argument
51 this.probe = probe; in GrammarNonDeterminismMessage()
54 if ( probe.dfa.isTokensRuleDecision() ) { in GrammarNonDeterminismMessage()
60 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode(); in toString()
63 String fileName = probe.dfa.nfa.grammar.getFileName(); in toString()
70 List labels = probe.getSampleNonDeterministicInputSequence(problemState); in toString()
71 String input = probe.getInputSequenceDisplay(labels); in toString()
74 if ( probe.dfa.isTokensRuleDecision() ) { in toString()
75 Set disabledAlts = probe.getDisabledAlternatives(problemState); in toString()
[all …]
DGrammarUnreachableAltsMessage.java40 public DecisionProbe probe; field in GrammarUnreachableAltsMessage
43 public GrammarUnreachableAltsMessage(DecisionProbe probe, in GrammarUnreachableAltsMessage() argument
47 this.probe = probe; in GrammarUnreachableAltsMessage()
50 if ( probe.dfa.isTokensRuleDecision() ) { in GrammarUnreachableAltsMessage()
56 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode(); in toString()
59 String fileName = probe.dfa.nfa.grammar.getFileName(); in toString()
66 if ( probe.dfa.isTokensRuleDecision() ) { in toString()
71 probe.getTokenNameForTokensRuleAlt(altI.intValue()); in toString()
74 probe.dfa.nfa.grammar.getRuleStartState(tokenName); in toString()
DGrammarDanglingStateMessage.java42 public DecisionProbe probe; field in GrammarDanglingStateMessage
45 public GrammarDanglingStateMessage(DecisionProbe probe, in GrammarDanglingStateMessage() argument
49 this.probe = probe; in GrammarDanglingStateMessage()
54 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode(); in toString()
57 String fileName = probe.dfa.nfa.grammar.getFileName(); in toString()
61 List labels = probe.getSampleNonDeterministicInputSequence(problemState); in toString()
62 String input = probe.getInputSequenceDisplay(labels); in toString()
DRecursionOverflowMessage.java41 public DecisionProbe probe; field in RecursionOverflowMessage
47 public RecursionOverflowMessage(DecisionProbe probe, in RecursionOverflowMessage() argument
54 this.probe = probe; in RecursionOverflowMessage()
62 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode(); in toString()
65 String fileName = probe.dfa.nfa.grammar.getFileName(); in toString()
76 probe.getSampleNonDeterministicInputSequence(sampleBadState); in toString()
77 String input = probe.getInputSequenceDisplay(labels); in toString()
DGrammarAnalysisAbortedMessage.java37 public DecisionProbe probe; field in GrammarAnalysisAbortedMessage
39 public GrammarAnalysisAbortedMessage(DecisionProbe probe) { in GrammarAnalysisAbortedMessage() argument
41 this.probe = probe; in GrammarAnalysisAbortedMessage()
45 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode(); in toString()
48 String fileName = probe.dfa.nfa.grammar.getFileName(); in toString()
54 probe.dfa.getNFADecisionStartState().enclosingRule.name); in toString()
DGrammarInsufficientPredicatesMessage.java39 public DecisionProbe probe; field in GrammarInsufficientPredicatesMessage
43 public GrammarInsufficientPredicatesMessage(DecisionProbe probe, in GrammarInsufficientPredicatesMessage() argument
48 this.probe = probe; in GrammarInsufficientPredicatesMessage()
54 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode(); in toString()
57 String fileName = probe.dfa.nfa.grammar.getFileName(); in toString()
80 …List<Label> sampleInputLabels = problemState.dfa.probe.getSampleNonDeterministicInputSequence(prob… in toString()
81 String input = problemState.dfa.probe.getInputSequenceDisplay(sampleInputLabels); in toString()
DNonRegularDecisionMessage.java40 public DecisionProbe probe; field in NonRegularDecisionMessage
43 public NonRegularDecisionMessage(DecisionProbe probe, Set<Integer> altsWithRecursion) { in NonRegularDecisionMessage() argument
45 this.probe = probe; in NonRegularDecisionMessage()
50 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode(); in toString()
53 String fileName = probe.dfa.nfa.grammar.getFileName(); in toString()
59 String ruleName = probe.dfa.getNFADecisionStartState().enclosingRule.name; in toString()
DErrorManager.java615 public static void nondeterminism(DecisionProbe probe, in nondeterminism() argument
619 Message msg = new GrammarNonDeterminismMessage(probe,d); in nondeterminism()
624 public static void danglingState(DecisionProbe probe, in danglingState() argument
628 Message msg = new GrammarDanglingStateMessage(probe,d); in danglingState()
638 public static void analysisAborted(DecisionProbe probe) in analysisAborted() argument
641 Message msg = new GrammarAnalysisAbortedMessage(probe); in analysisAborted()
646 public static void unreachableAlts(DecisionProbe probe, in unreachableAlts() argument
650 Message msg = new GrammarUnreachableAltsMessage(probe,alts); in unreachableAlts()
655 public static void insufficientPredicates(DecisionProbe probe, in insufficientPredicates() argument
660 Message msg = new GrammarInsufficientPredicatesMessage(probe,d,altToUncoveredLocations); in insufficientPredicates()
[all …]
/external/python/cpython3/Include/
Dpydtrace.d4 probe function__entry(const char *, const char *, int);
5 probe function__return(const char *, const char *, int);
6 probe instance__new__start(const char *, const char *);
7 probe instance__new__done(const char *, const char *);
8 probe instance__delete__start(const char *, const char *);
9 probe instance__delete__done(const char *, const char *);
10 probe line(const char *, const char *, int);
11 probe gc__start(int);
12 probe gc__done(long);
/external/icu/icu4c/source/samples/layout/
Dcmaps.cpp137 le_uint16 probe = 1 << fEntrySelector; in unicodeToGlyph() local
144 while (probe > (1 << 0)) { in unicodeToGlyph()
145 probe >>= 1; in unicodeToGlyph()
147 if (SWAPU16(fStartCodes[index + probe]) <= unicode) { in unicodeToGlyph()
148 index += probe; in unicodeToGlyph()
186 le_int32 probe = fPower; in unicodeToGlyph() local
193 while (probe > (1 << 0)) { in unicodeToGlyph()
194 probe >>= 1; in unicodeToGlyph()
196 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph()
197 range += probe; in unicodeToGlyph()
/external/icu/icu4c/source/test/perf/leperf/
Dcmaps.cpp178 le_uint16 probe = 1 << fEntrySelector; in unicodeToGlyph() local
185 while (probe > (1 << 0)) { in unicodeToGlyph()
186 probe >>= 1; in unicodeToGlyph()
188 if (SWAPU16(fStartCodes[index + probe]) <= unicode) { in unicodeToGlyph()
189 index += probe; in unicodeToGlyph()
227 le_int32 probe = fPower; in unicodeToGlyph() local
234 while (probe > (1 << 0)) { in unicodeToGlyph()
235 probe >>= 1; in unicodeToGlyph()
237 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph()
238 range += probe; in unicodeToGlyph()
DFontObject.cpp69 le_uint16 probe = 1 << entrySelector; in findTable() local
75 while (probe > (1 << 0)) { in findTable()
76 probe >>= 1; in findTable()
78 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) { in findTable()
79 table += probe; in findTable()
167 le_uint16 probe = 1 << cmEntrySelector; in unicodeToGlyph() local
174 while (probe > (1 << 0)) { in unicodeToGlyph()
175 probe >>= 1; in unicodeToGlyph()
177 if (SWAPW(cmStartCodes[index + probe]) <= unicode) { in unicodeToGlyph()
178 index += probe; in unicodeToGlyph()
/external/icu/icu4c/source/test/letest/
Dcmaps.cpp177 le_uint16 probe = 1 << fEntrySelector; in unicodeToGlyph() local
184 while (probe > (1 << 0)) { in unicodeToGlyph()
185 probe >>= 1; in unicodeToGlyph()
187 if (SWAPU16(fStartCodes[index + probe]) <= unicode) { in unicodeToGlyph()
188 index += probe; in unicodeToGlyph()
226 le_int32 probe = fPower; in unicodeToGlyph() local
233 while (probe > (1 << 0)) { in unicodeToGlyph()
234 probe >>= 1; in unicodeToGlyph()
236 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph()
237 range += probe; in unicodeToGlyph()
DFontObject.cpp65 le_uint16 probe = 1 << entrySelector; in findTable() local
71 while (probe > (1 << 0)) { in findTable()
72 probe >>= 1; in findTable()
74 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) { in findTable()
75 table += probe; in findTable()
163 le_uint16 probe = 1 << cmEntrySelector; in unicodeToGlyph() local
170 while (probe > (1 << 0)) { in unicodeToGlyph()
171 probe >>= 1; in unicodeToGlyph()
173 if (SWAPW(cmStartCodes[index + probe]) <= unicode) { in unicodeToGlyph()
174 index += probe; in unicodeToGlyph()
/external/llvm/test/CodeGen/X86/
Dstack-probe-size.ll2 ; probe calls when the size of the local variables exceeds the specified stack
3 ; probe size.
6 ; stack probe size equals the page size (4096 bytes for all x86 targets), and
13 define i32 @test1() "stack-probe-size"="0" {
35 define i32 @test3() "stack-probe-size"="8192" {
46 define i32 @test4() "stack-probe-size"="0" {
68 define i32 @test6() "stack-probe-size"="8192" {
Dwin_coreclr_chkstk.ll7 ; Prolog stack allocation >= 4096 bytes will require the probe sequence
43 ; Prolog stack allocation >= 4096 bytes will require the probe sequence
57 ; Prolog stack allocation >= 4096 bytes will require the probe sequence
70 ; Prolog stack allocation >= 4096 bytes will require the probe sequence
82 ; Prolog stack allocation >= 4096 bytes will require the probe sequence
93 ; Make sure we don't emit the probe for a smaller prolog stack allocation.
104 ; Make sure we don't emit the probe sequence if not on windows even if the
117 ; Within-body inline probe expansion
134 ; Influence of stack-probe-size attribute
136 define i32 @test_probe_size() "stack-probe-size"="8192" nounwind {
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DTaggedRecord.java59 int probe = power; in search() local
66 while (probe > (1 << 0)) { in search()
67 probe >>= 1; in search()
69 if (table[index + probe].getTag().compareTo(tag) <= 0) { in search()
70 index += probe; in search()
/external/icu/icu4c/source/layoutex/
DLXUtilities.cpp59 le_int32 probe = power; in search() local
66 while (probe > (1 << 0)) { in search()
67 probe >>= 1; in search()
69 if (value >= array[index + probe]) { in search()
70 index += probe; in search()
/external/webrtc/webrtc/base/
Dautodetectproxy.cc222 std::string probe; in OnConnectEvent() local
226 probe.assign("CONNECT www.google.com:443 HTTP/1.0\r\n" in OnConnectEvent()
228 probe.append(agent_); in OnConnectEvent()
229 probe.append("\r\n" in OnConnectEvent()
236 probe.assign("\005\001\000", 3); in OnConnectEvent()
244 << " sending " << probe.size() << " bytes"; in OnConnectEvent()
245 socket_->Send(probe.data(), probe.size()); in OnConnectEvent()
/external/icu/icu4c/source/extra/scrptrun/
Dscrptrun.cpp86 int32_t probe = pairedCharPower; in getPairIndex() local
93 while (probe > (1 << 0)) { in getPairIndex()
94 probe >>= 1; in getPairIndex()
96 if (ch >= pairedChars[index + probe]) { in getPairIndex()
97 index += probe; in getPairIndex()
/external/python/cpython3/Doc/howto/
Dinstrumentation.rst28 No guarantees are made about probe compatibility between versions of
102 stapsdt 0x00000031 NT_STAPSDT (SystemTap probe descriptors)
107 stapsdt 0x00000030 NT_STAPSDT (SystemTap probe descriptors)
112 stapsdt 0x00000045 NT_STAPSDT (SystemTap probe descriptors)
117 stapsdt 0x00000046 NT_STAPSDT (SystemTap probe descriptors)
210 probe process("python").mark("function__entry") {
219 probe process("python").mark("function__return") {
256 libpython shared library, and the probe's dotted path needs to reflect this. For
259 probe process("python").mark("function__entry") {
263 probe process("python").library("libpython3.6dm.so.1.0").mark("function__entry") {
[all …]
/external/python/cpython3/Lib/test/dtracedata/
Dgc.stp3 probe process.mark("function__entry")
12 probe process.mark("gc__start"), process.mark("gc__done")
19 probe process.mark("function__return")
Dcall_stack.stp13 probe process.mark("function__entry")
22 probe process.mark("function__entry"), process.mark("function__return")
34 probe process.mark("function__return")
/external/walt/arduino/walt/
Dwalt.ino89 boolean probe; // whether currently probing
304 gshock.probe = true;
308 sound.probe = true;
324 midi.probe = true;
339 screen.probe = true;
343 screen.probe = false;
382 if (gshock.probe) {
387 gshock.probe = false;
393 if (sound.probe) {
398 sound.probe = false;
[all …]

12345678910