Searched refs:Count (Results 76 - 100 of 501) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBaseTree.cs81 return Children.Count;
145 if (children == null || i >= children.Count)
193 c.ChildIndex = children.Count - 1;
209 t.ChildIndex = children.Count - 1;
301 replacingWithHowMany = newChildren.Count;
302 int numNewChildren = newChildren.Count;
416 if (children == null || children.Count == 0) {
425 for (int i = 0; children != null && i < children.Count; i++) {
H A DParseTree.cs108 for (int i = 0; i < hiddenTokens.Count; i++) {
135 for (int i = 0; Children != null && i < Children.Count; i++) {
H A DRewriteRuleSubtreeStream.cs71 int n = Count;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBaseTree.cs95 return Children.Count;
174 if ( Children == null || i >= Children.Count )
231 c.ChildIndex = Children.Count - 1;
252 t.ChildIndex = Children.Count - 1;
358 replacingWithHowMany = newChildren.Count;
359 int numNewChildren = newChildren.Count;
498 if ( Children == null || Children.Count == 0 )
509 for ( int i = 0; Children != null && i < Children.Count; i++ )
H A DParseTree.cs129 for ( int i = 0; i < hiddenTokens.Count; i++ )
160 for ( int i = 0; Children != null && i < Children.Count; i++ )
H A DRewriteRuleSubtreeStream.cs77 int n = Count;
/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.h90 void Observe(MachineInstr *MI, unsigned Count,
98 void ScanInstruction(MachineInstr *MI, unsigned Count);
H A DAggressiveAntiDepBreaker.h154 void Observe(MachineInstr *MI, unsigned Count,
176 void PrescanInstruction(MachineInstr *MI, unsigned Count,
178 void ScanInstruction(MachineInstr *MI, unsigned Count);
/external/libnfc-nxp/src/
H A DphFriNfc_NdefRecord.c100 uint32_t Count = 0, local
210 if(Count >= *NumberOfRawRecords)
217 RawRecords[Count] = Buffer;
249 IsChunked [Count] = PHFRINFCNDEFRECORD_CHUNKBIT_SET;
253 IsChunked [Count] = PHFRINFCNDEFRECORD_CHUNKBIT_SET_ZERO;
258 if (Count > 0)
282 if (IsChunked [Count - 1] == PHFRINFCNDEFRECORD_CHUNKBIT_SET &&
294 if (IsChunked [Count - 1] == PHFRINFCNDEFRECORD_CHUNKBIT_SET_ZERO &&
305 if (IsChunked [Count - 1] == PHFRINFCNDEFRECORD_CHUNKBIT_SET &&
306 IsChunked [Count]
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp122 /// Unroll the given loop by Count. The loop must be in LCSSA form. Returns true
147 bool llvm::UnrollLoop(Loop *L, unsigned Count, unsigned TripCount, argument
186 DEBUG(dbgs() << " Trip Count = " << TripCount << "\n");
192 if (TripCount != 0 && Count > TripCount)
193 Count = TripCount;
197 if (TripCount == 0 && Count < 2)
200 assert(Count > 0);
205 bool CompletelyUnroll = Count == TripCount;
210 bool RuntimeTripCount = (TripCount == 0 && Count > 0 && AllowRuntime);
212 if (RuntimeTripCount && !UnrollRuntimeLoopProlog(L, Count, L
[all...]
H A DLoopUnrollRuntime.cpp57 static void ConnectProlog(Loop *L, Value *TripCount, unsigned Count, argument
112 ConstantInt::get(TripCount->getType(), Count));
228 bool llvm::UnrollRuntimeLoopProlog(Loop *L, unsigned Count, LoopInfo *LI, argument
260 // Count is the loop unroll factor, the number of extra copies added + 1.
261 if ((Count & (Count-1)) != 0)
285 Value *ModVal = B.CreateAnd(TripCount, Count - 1, "xtraiter");
317 for (unsigned leftOverIters = Count-1; leftOverIters > 0; --leftOverIters) {
323 CloneLoopBlocks(L, (leftOverIters == Count-1), LastLoopBB, PEnd, NewBlocks,
333 if (leftOverIters == Count
[all...]
/external/chromium_org/base/test/
H A Dhistogram_tester.cc35 base::HistogramBase::Count expected_count) const {
51 base::HistogramBase::Count expected_count) const {
64 base::HistogramBase::Count count) const {
92 base::HistogramBase::Count expected_count,
108 base::HistogramBase::Count expected_count,
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangDumpDecl.m86 FOLLOW_DECL_in_decl45 = [[ANTLRBitSet newANTLRBitSetWithBits:(const unsigned long long *)FOLLOW_DECL_in_decl45_data Count:(NSUInteger)1] retain];
87 FOLLOW_type_in_decl47 = [[ANTLRBitSet newANTLRBitSetWithBits:(const unsigned long long *)FOLLOW_type_in_decl47_data Count:(NSUInteger)1] retain];
88 FOLLOW_declarator_in_decl49 = [[ANTLRBitSet newANTLRBitSetWithBits:(const unsigned long long *)FOLLOW_declarator_in_decl49_data Count:(NSUInteger)1] retain];
89 FOLLOW_INTTYPE_in_type81 = [[ANTLRBitSet newANTLRBitSetWithBits:(const unsigned long long *)FOLLOW_INTTYPE_in_type81_data Count:(NSUInteger)1] retain];
90 FOLLOW_ID_in_declarator95 = [[ANTLRBitSet newANTLRBitSetWithBits:(const unsigned long long *)FOLLOW_ID_in_declarator95_data Count:(NSUInteger)1] retain];
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp84 SDValue Count; local
113 Count = DAG.getIntPtrConstant(SizeVal);
119 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
128 Count = DAG.getIntPtrConstant(SizeVal);
134 Count, InFlag);
146 Count = Size;
147 EVT CVT = Count.getValueType();
148 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
226 SDValue Count = DAG.getIntPtrConstant(CountVal); local
232 Count, InFla
[all...]
/external/llvm/unittests/IR/
H A DPassManagerTest.cpp25 Result(int Count) : InstructionCount(Count) {} argument
37 int Count = 0; local
41 ++Count;
42 return Result(Count);
57 Result(int Count) : FunctionCount(Count) {} argument
67 int Count = 0; local
69 ++Count;
70 return Result(Count);
[all...]
/external/llvm/unittests/ADT/
H A DBitVectorTest.cpp76 unsigned Count = 0; local
78 ++Count;
82 EXPECT_EQ(Count, Vec.count());
83 EXPECT_EQ(Count, 23u);
106 Count = 0;
108 ++Count;
112 EXPECT_EQ(Count, Vec.count());
113 EXPECT_EQ(Count, 42u);
121 EXPECT_EQ(Count + 1, Vec.count());
124 EXPECT_EQ(Count, Ve
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedTokenException.cs118 tokenArray = new string[_tokenNames.Count];
129 string unexpected = (TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Count) ? TokenNames[unexpectedType] : unexpectedType.ToString();
130 string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNames[Expecting] : Expecting.ToString();
/external/chromium_org/base/metrics/
H A Dhistogram_base.h56 typedef int32_t Count; // Used to manipulate counts in temporaries. typedef in class:base::HistogramBase
158 virtual void GetCountAndBucketData(Count* count,
172 void WriteAsciiBucketValue(Count current,
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dwrite_batch_test.cc48 } else if (count != WriteBatchInternal::Count(b)) {
60 ASSERT_EQ(0, WriteBatchInternal::Count(&batch));
70 ASSERT_EQ(3, WriteBatchInternal::Count(&batch));
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCAsmBackend.cpp63 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const override;
105 bool SystemZMCAsmBackend::writeNopData(uint64_t Count, argument
107 for (uint64_t I = 0; I != Count; ++I)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSetExtensions.cs79 return set.Count;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
H A DCombinedParser.m80 FOLLOW_identifier_in_stat20 = [[ANTLRBitSet newANTLRBitSetWithBits:(const unsigned long long *)FOLLOW_identifier_in_stat20_data Count:(NSUInteger)1] retain];
81 FOLLOW_ID_in_identifier35 = [[ANTLRBitSet newANTLRBitSetWithBits:(const unsigned long long *)FOLLOW_ID_in_identifier35_data Count:(NSUInteger)1] retain];
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DEventMod.java36 public static final byte Count = 1; field in class:EventMod.ModKind
/external/chromium_org/printing/
H A Dpage_number_unittest.cc9 TEST(PageNumberTest, Count) {
/external/chromium_org/v8/src/
H A Ddata-flow.cc44 int BitVector::Count() const { function in class:v8::internal::BitVector

Completed in 699 milliseconds

1234567891011>>