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

1 23 4

  /frameworks/base/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...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
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_QuantInvIntra_I_s.s 79 Count RN 5
153 MOV Count,#64
189 SUBS Count,Count,#8
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 49 unsigned Count = Builder->getCurrentBlockCount();
50 RightV = svalBuilder.getConjuredSymbolVal(NULL, B->getRHS(), Count);
128 unsigned Count = Builder->getCurrentBlockCount();
134 Count);
ExprEngineObjC.cpp 61 // 'countByEnumeratingWithState:objects:count:' (NSFastEnumeration).
113 unsigned Count = Builder->getCurrentBlockCount();
114 SymbolRef Sym = SymMgr.getConjuredSymbol(elem, T, Count);
264 unsigned Count = Builder->getCurrentBlockCount();
266 ReturnValue = SVB.getConjuredSymbolVal(NULL, CurrentE, ResultTy, Count);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 19 namespace Count {
21 struct count { struct in namespace:Count
22 static const unsigned value = 1 + count<Tail...>::value;
26 struct count<T> { struct in namespace:Count
30 int check1[count<int>::value == 1? 1 : -1];
31 int check2[count<float, double>::value == 2? 1 : -1];
32 int check3[count<char, signed char, unsigned char>::value == 3? 1 : -1];
36 template<typename ...> struct count;
39 struct count<Head, Tail...> { struct in namespace:CountWithPackExpansion
40 static const unsigned value = 1 + count<Tail...>::value
44 struct count<> { struct in namespace:CountWithPackExpansion
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_NdefReg.h 128 uint8_t Count;
132 * The number of records here will be equal to the first parameter Count.
  /external/llvm/include/llvm/ADT/
IntervalMap.h 204 /// @param Count Number of elements to copy.
207 unsigned j, unsigned Count) {
208 assert(i + Count <= M && "Invalid source range");
209 assert(j + Count <= N && "Invalid dest range");
210 for (unsigned e = i + Count; i != e; ++i, ++j) {
219 /// @param Count Number of elements to copy.
220 void moveLeft(unsigned i, unsigned j, unsigned Count) {
222 copy(*this, i, j, Count);
228 /// @param Count Number of elements to copy.
229 void moveRight(unsigned i, unsigned j, unsigned Count) {
    [all...]
  /external/llvm/include/llvm/Support/
MathExtras.h 147 unsigned Count; // result
153 Count = __builtin_clz(Value);
156 Count = 0;
157 // bisection method for count leading zeros
163 Count |= Shift;
167 return Count;
183 unsigned Count; // result
189 Count = __builtin_clzll(Value);
193 Count = 0;
194 // bisection method for count leading zero
    [all...]
  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 127 void CriticalAntiDepBreaker::Observe(MachineInstr *MI, unsigned Count,
131 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
139 KillIndices[Reg] = Count;
140 } else if (DefIndices[Reg] < InsertPosIndex && DefIndices[Reg] >= Count) {
154 ScanInstruction(MI, Count);
246 unsigned Count) {
263 DefIndices[Reg] = Count;
275 DefIndices[SubregReg] = Count;
311 KillIndices[Reg] = Count;
321 KillIndices[AliasReg] = Count;
    [all...]
IntrinsicLowering.cpp 275 Value *Count = ConstantInt::get(V->getType(), 0);
289 Count = Builder.CreateAdd(PartValue, Count, "ctpop.part");
297 return Count;
PostRASchedulerList.cpp 158 void Observe(MachineInstr *MI, unsigned Count);
262 unsigned Count = MBB->size(), CurrentCount = Count;
269 CurrentCount = Count - 1;
273 --Count;
275 assert(Count == 0 && "Instruction count mismatch!");
277 "Instruction count mismatch!");
344 void SchedulePostRATDList::Observe(MachineInstr *MI, unsigned Count) {
346 AntiDepBreak->Observe(MI, Count, InsertPosIndex)
    [all...]
ScheduleDAGInstrs.cpp 354 unsigned Count = I->second.second;
372 Latency -= std::min(Latency, Count);
RegAllocGreedy.cpp 206 unsigned Count = 0;
211 Count++;
213 return Count;
    [all...]
SplitKit.cpp 98 /// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
249 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
259 unsigned Count = 0;
265 ++Count;
268 return Count;
    [all...]
  /external/clang/include/clang/Sema/
Ownership.h 310 unsigned Count;
314 ASTMultiPtr() : Nodes(0), Count(0) {}
315 explicit ASTMultiPtr(Sema &) : Nodes(0), Count(0) {}
316 ASTMultiPtr(Sema &, PtrTy *nodes, unsigned count)
317 : Nodes(nodes), Count(count) {}
319 ASTMultiPtr(PtrTy *nodes, unsigned count) : Nodes(nodes), Count(count) {}
324 /// Access to the count
    [all...]
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 83 const std::string &Text, unsigned Count);
87 unsigned Count;
100 unsigned Count)
101 : Location(Location), Text(Text), Count(Count) { }
113 unsigned Count)
114 : Directive(Location, Text, Count) { }
132 unsigned Count)
133 : Directive(Location, Text, Count), Regex(Text) { }
281 unsigned Count = 1
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 225 unsigned Count = C.getCurrentBlockCount();
228 cast<DefinedSVal>(svalBuilder.getConjuredSymbolVal(0, CE, Count));
MallocChecker.cpp 224 unsigned Count = C.getCurrentBlockCount();
228 SVal retVal = svalBuilder.getConjuredSymbolVal(NULL, CE, CE->getType(), Count);
561 SVal count = state->getSVal(CE->getArg(0)); local
563 SVal TotalSize = svalBuilder.evalBinOp(state, BO_Mul, count, elementSize,
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 42 cl::desc("[relpos] [count] <archive-file> [members]..."));
62 " [N] - use instance [count] of name\n"
114 int Count = 1;
142 // getCount - Extract the [count] argument associated with the N modifier
146 Count = atoi(RestOfArgs[0].c_str());
150 throw "Expected [count] value with N modifier";
153 if (Count < 1)
154 throw "Invalid [count] value (not a positive integer)";
265 if (Count > 1 && Members.size() > 1)
355 unsigned countDown = Count;
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 129 unsigned Count = 0;
131 if (!Blocks.count(*I)) Count++;
132 return Count;
440 return Values[L] == R || TentativeValues.count(std::make_pair(L, R));
665 if (!LNames.count(RFn->getName()))
  /external/chromium/base/metrics/
histogram.h 13 // contain (sequentially) the count of values in the following intervals:
17 // Histogram count(L"some name", 1, 64, 8);
269 typedef int Count; // Used to count samples in a bucket.
274 typedef std::vector<Count> Counts;
335 void Accumulate(Sample value, Count count, size_t index);
338 Count counts(size_t i) const { return counts_[i]; }
339 Count TotalCount() const;
351 // Actual histogram data is stored in buckets, showing the count of value
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 129 unsigned Count;
133 SymbolConjured(SymbolID sym, const Stmt *s, QualType t, unsigned count,
135 : SymbolData(ConjuredKind, sym), S(s), T(t), Count(count),
139 unsigned getCount() const { return Count; }
147 QualType T, unsigned Count, const void *SymbolTag) {
151 profile.AddInteger(Count);
156 Profile(profile, S, T, Count, SymbolTag);
238 unsigned Count;
242 unsigned count, const void *tag
    [all...]
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 69 double Count = MissingValue;
76 Count = getEdgeWeight(e);
78 // Otherwise, if there are predecessors, the execution count of this block is
81 Count = 0;
87 Count = MissingValue;
90 Count += w;
96 if (Count == MissingValue) {
103 Count = getEdgeWeight(e);
106 Count = 0;
111 Count = MissingValue
    [all...]

Completed in 1617 milliseconds

1 23 4