HomeSort by relevance Sort by last modified time
    Searched defs:Count (Results 51 - 75 of 164) sorted by null

1 23 4 5 6 7

  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 36 UnrollCount("unroll-count", cl::init(0), cl::Hidden,
37 cl::desc("Use this unroll count for all loops, for testing purposes"));
71 // Default unroll count for loops with run-time trip count if
72 // -unroll-count is not set
113 Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial) {
114 return new LoopUnroll(Threshold, Count, AllowPartial);
159 // Find trip count and trip multiple if count is not available
162 // Find "latch trip count". UnrollLoop assumes that control cannot exi
    [all...]
  /external/lzma/C/
Ppmd.h 37 Byte Count; /* Count to next change of Shift */
40 #define Ppmd_See_Update(p) if ((p)->Shift < PPMD_PERIOD_BITS && --(p)->Count == 0) \
41 { (p)->Summ <<= 1; (p)->Count = (Byte)(3 << (p)->Shift++); }
  /external/webrtc/src/system_wrappers/source/
critical_section_unittest.cc 56 int Count() const {
71 // Waits a number of cycles for the count to reach a given value.
73 bool WaitForCount(int target, ProtectedCount* count) {
78 while (count->Count() < target && loop_counter < 100*target) {
83 return (count->Count() >= target);
102 ProtectedCount count(crit_sect);
104 &LockUnlockThenStopRunFunction, &count);
110 // the lock, even though count.Count() locks and unlocks the critical sectio
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodeVLCZigzag_IntraDCVLC_s.s 101 Count RN 6
200 MOV Count,#1 ;// Set Start =1
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 66 Count RN 6
110 MOV temp1,#0 ;// Initialize Count to zero
163 ADD temp2,storeRun,Count
165 BGE ExitError ;// error if Count+storeRun >= 64
180 ADD Count,Count,storeRun
181 LDRB zigzag,[pZigzagTable,Count]
182 ADD Count,Count,#1
280 ADD temp1,storeRun,Count ;// Exit with an error message if Run + Count exceeds 6
    [all...]
omxVCM4P2_DecodePadMV_PVOP_s.s 95 Count RN 7
179 MOVEQ Count,#4
183 MOVEQ Count,#1
318 CMP BlkCount,Count
322 BLT Loop ;// If BlkCount<Count Continue the Loop
omxVCM4P2_PredictReconCoefIntra_s.s 107 Count RN 10
200 MOV Count,#2 ;// Initializing the Loop Count
208 LDRSH absCoeffAC,[pPredBufRow,Count] ;// absCoeffAC=pPredBufRow[i], 1=<i<=7
218 LDRH temp,[pSrcDst,Count] ;// temp=pSrcDst[i],1<=i<8
229 STRH temp,[pSrcDst,Count]
230 STRH temp,[pPredBufRow,Count] ;// pPredBufRow[i]=temp
231 ADD Count,Count,#2 ;// i=i+1
232 CMP Count,#16 ;// compare if i=
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodeVLCZigzag_IntraDCVLC_s.s 101 Count RN 6
200 MOV Count,#1 ;// Set Start =1
omxVCM4P2_QuantInvInter_I_s.s 67 Count RN 3
112 MOV Count,#64
148 SUBS Count,Count,#8
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 108 public virtual int Count {
110 return _tokens.Count;
189 int n = i - _tokens.Count + 1; // how many more elements we need?
198 t.TokenIndex = _tokens.Count;
206 if (i < 0 || i >= _tokens.Count) {
207 throw new IndexOutOfRangeException("token index " + i + " out of range 0.." + (_tokens.Count - 1));
212 #if false // why is this different from GetTokens(start, count) ?
214 /// Get all tokens from start..(start+count-1) inclusively
216 public virtual List<IToken> Get(int start, int count)
220 if (count < 0
    [all...]
LegacyCommonTokenStream.cs 179 if (p < tokens.Count) {
187 int n = tokens.Count;
248 if (stop >= tokens.Count) {
249 stop = tokens.Count - 1;
266 if (filteredTokens.Count == 0) {
296 if ((p + k - 1) >= tokens.Count) {
297 return tokens[tokens.Count - 1];
308 if (i >= tokens.Count) {
309 return tokens[tokens.Count - 1];
347 * that is, count all tokens not just on-channel tokens
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 118 public virtual int Count
122 return _tokens.Count;
218 int n = i - _tokens.Count + 1; // how many more elements we need?
229 t.TokenIndex = _tokens.Count;
238 if (i < 0 || i >= _tokens.Count)
240 throw new IndexOutOfRangeException("token index " + i + " out of range 0.." + (_tokens.Count - 1));
245 #if false // why is this different from GetTokens(start, count) ?
247 /// Get all tokens from start..(start+count-1) inclusively
249 public virtual List<IToken> Get(int start, int count)
253 if (count < 0
    [all...]
LegacyCommonTokenStream.cs 192 if ( p < tokens.Count )
202 int n = tokens.Count;
276 if ( stop >= tokens.Count )
278 stop = tokens.Count - 1;
299 if ( filteredTokens.Count == 0 )
336 if ( ( p + k - 1 ) >= tokens.Count )
338 return tokens[tokens.Count - 1];
350 if ( i >= tokens.Count )
352 return tokens[tokens.Count - 1];
396 * that is, count all tokens not just on-channel tokens
    [all...]
  /external/chromium_org/base/metrics/
sparse_histogram.cc 18 typedef HistogramBase::Count Count;
108 void SparseHistogram::GetCountAndBucketData(Count* count,
119 Count total_count = snapshot->TotalCount();
127 // Determine which bucket has the largest sample count so that we can
128 // normalize the graphical bar-width relative to that sample count.
129 Count largest_count = 0;
136 Count count; local
152 Count count; local
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkParse.cpp 65 int SkParse::Count(const char str[])
68 int count = 0; local
71 count++;
83 return count;
86 int SkParse::Count(const char str[], char separator)
89 int count = 0; local
92 count++;
104 return count;
259 const char* SkParse::FindScalars(const char str[], SkScalar value[], int count)
261 SkASSERT(count >= 0)
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_NdefRecord.c 100 uint32_t Count = 0,
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] == PHFRINFCNDEFRECORD_CHUNKBIT_SET_ZERO
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugAranges.cpp 28 CountArangeDescriptors(uint32_t &count_ref) : Count(count_ref) {}
30 Count += Set.getNumDescriptors();
32 uint32_t &Count;
78 uint32_t count = 0; local
80 std::for_each(sets.begin(), sets.end(), CountArangeDescriptors(count));
82 if (count > 0) {
83 Aranges.reserve(count);
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.cpp 253 unsigned Count = 0;
267 ++Count;
269 return Count;
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 84 SDValue Count;
113 Count = DAG.getIntPtrConstant(SizeVal);
119 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
128 Count = DAG.getIntPtrConstant(SizeVal);
135 Count, InFlag);
148 Count = Size;
149 EVT CVT = Count.getValueType();
150 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
227 SDValue Count = DAG.getIntPtrConstant(CountVal);
233 Count, InFlag)
    [all...]
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 194 unsigned Count = 0;
196 Count += ShufTab[i].Cost < 100;
197 return Count;
  /external/skia/src/utils/
SkParse.cpp 65 int SkParse::Count(const char str[])
68 int count = 0; local
71 count++;
83 return count;
86 int SkParse::Count(const char str[], char separator)
89 int count = 0; local
92 count++;
104 return count;
259 const char* SkParse::FindScalars(const char str[], SkScalar value[], int count)
261 SkASSERT(count >= 0)
    [all...]
  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 72 UInt Count;
108 UInt x, bit, count; local
117 for( count = 0; count < bits; ++ count )
142 UInt bit, count; local
152 for( count = 0; count < bits; ++ count )
190 sym[k].Count = 0
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Control.c 503 LVM_INT16 Count = 5;
514 Count--;
516 (Count > 0));
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 44 Count RN 0
61 Count RN 0
142 MOV Count, TrailingOnes
145 SUBS Count, Count, #1
154 SUBS Count, TotalCoeff, TrailingOnes ;// Number of levels to read
202 SUBS Count, Count, #1
208 SUB Count, TotalCoeff, #1 ;// Number of runs excluding last
235 SUBS Count, Count, #
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 44 Count RN 0
61 Count RN 0
142 MOV Count, TrailingOnes
145 SUBS Count, Count, #1
154 SUBS Count, TotalCoeff, TrailingOnes ;// Number of levels to read
202 SUBS Count, Count, #1
208 SUB Count, TotalCoeff, #1 ;// Number of runs excluding last
235 SUBS Count, Count, #
    [all...]

Completed in 1563 milliseconds

1 23 4 5 6 7