| /external/llvm/lib/Target/ARM/ |
| Thumb2InstrInfo.cpp | 68 unsigned Count = 4; // At most 4 instructions in an IT block. 69 while (Count && MBBI != E) { 76 if (Count == 4) 79 unsigned MaskOn = 1 << Count; 86 --Count;
|
| /external/llvm/lib/Target/MSP430/ |
| MSP430InstrInfo.cpp | 109 unsigned Count = 0; 123 ++Count; 126 return Count; 283 unsigned Count = 0; 285 ++Count; 290 ++Count; 292 return Count;
|
| /external/llvm/lib/Target/Sparc/ |
| SparcInstrInfo.cpp | 250 unsigned Count = 0; 264 ++Count; 266 return Count;
|
| /external/llvm/lib/Target/SystemZ/ |
| SystemZInstrInfo.cpp | 301 unsigned Count = 0; 313 ++Count; 316 return Count; 337 unsigned Count = 0; 340 ++Count; 345 ++Count; 347 return Count;
|
| /external/llvm/lib/Transforms/Scalar/ |
| LoopUnrollPass.cpp | 35 UnrollCount("unroll-count", cl::init(0), cl::Hidden, 36 cl::desc("Use this unroll count for all loops, for testing purposes")); 106 Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial) { 107 return new LoopUnroll(Threshold, Count, AllowPartial); 147 // Find trip count and trip multiple if count is not available 151 // Find "latch trip count". UnrollLoop assumes that control cannot exit 165 // Automatically select an unroll count. 166 unsigned Count = CurrentCount; 167 if (Count == 0) [all...] |
| /external/skia/samplecode/ |
| SampleGM.cpp | 31 static int Count() { 33 int count = 0; local 35 count += 1; 38 return count;
|
| SampleTests.cpp | 40 static int Count() { 42 int count = 0; local 44 count += 1; 47 return count;
|
| /frameworks/base/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/base/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/clang/lib/StaticAnalyzer/Core/ |
| ExprEngineCallAndReturn.cpp | 150 unsigned Count = Builder->getCurrentBlockCount(); 156 Call.getOriginExpr(), Count, 203 unsigned Count = Builder.getCurrentBlockCount(); 204 SVal RetVal = SVB.getConjuredSymbolVal(0, CE, ResultTy, Count);
|
| /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/CodeGen/ |
| ScheduleDAGInstrs.h | 71 unsigned Count = 0; 82 if (LoopLiveIns.count(MOReg)) 83 Deps.insert(std::make_pair(MOReg, std::make_pair(&MO, Count))); 85 ++Count; // Not every iteration due to dbg_value above.
|
| /external/llvm/lib/DebugInfo/ |
| DWARFDebugAranges.cpp | 28 CountArangeDescriptors(uint32_t &count_ref) : Count(count_ref) {} 30 Count += set.getNumDescriptors(); 32 uint32_t &Count; 73 uint32_t count = 0; local 75 std::for_each(sets.begin(), sets.end(), CountArangeDescriptors(count)); 77 if (count > 0) { 78 Aranges.reserve(count);
|
| /external/llvm/lib/Target/X86/ |
| X86SelectionDAGInfo.cpp | 81 SDValue Count; 110 Count = DAG.getIntPtrConstant(SizeVal); 116 Count = DAG.getIntPtrConstant(SizeVal / UBytes); 125 Count = DAG.getIntPtrConstant(SizeVal); 132 Count, InFlag); 145 Count = Size; 146 EVT CVT = Count.getValueType(); 147 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count, 216 SDValue Count = DAG.getIntPtrConstant(CountVal); 222 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 | 73 int SkParse::Count(const char str[]) 76 int count = 0; local 79 count++; 91 return count; 94 int SkParse::Count(const char str[], char separator) 97 int count = 0; local 100 count++; 112 return count; 267 const char* SkParse::FindScalars(const char str[], SkScalar value[], int count) 269 SkASSERT(count >= 0) [all...] |
| /external/skia/tests/ |
| skia_test.cpp | 31 static int Count() { 33 int count = 0; local 35 count += 1; 38 return count; 112 const int count = Iter::Count(); local 116 reporter.setIndexOfTotal(index, count); 123 SkDebugf("Finished %d tests, %d failures.\n", count, 124 count - successCount); 126 return (count == successCount) ? 0 : 1 [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/base/media/libdrm/mobile1/include/parser/ |
| parser_rel.h | 61 int32_t Count; /**< The times that can be used */
|
| /frameworks/base/media/libeffects/lvm/lib/Bundle/src/ |
| LVM_Control.c | 503 LVM_INT16 Count = 5; 514 Count--; 516 (Count > 0)); [all...] |
| /frameworks/base/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...] |