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

1 2 3 4

  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_PredictIntraDC4x4.c 51 int x, y, Sum=0, Count = 0;
59 Count++;
67 Count++;
69 if (Count==0)
73 else if (Count==1)
77 else /* Count = 2 */
omxVCM4P10_PredictIntraChroma_8x8.c 51 int x, y, Sum=0, Count = 0;
59 Count++;
67 Count++;
69 if (Count==0)
113 int x, y, Sum=0, Count = 0;
121 Count++;
129 Count++;
131 if (Count==0)
omxVCM4P10_PredictIntra_16x16.c 89 int x,y,Sum,Count;
133 Count = 0;
140 Count++;
148 Count++;
150 if (Count==0)
154 else if (Count==1)
158 else /* Count = 2 */
  /external/llvm/unittests/ADT/
BitVectorTest.cpp 22 EXPECT_EQ(0U, Vec.count());
30 EXPECT_EQ(5U, Vec.count());
38 EXPECT_EQ(5U, Vec.count());
46 EXPECT_EQ(6U, Inv.count());
66 unsigned Count = 0;
68 ++Count;
72 EXPECT_EQ(Count, Vec.count());
73 EXPECT_EQ(Count, 23u);
85 EXPECT_TRUE(Vec.count() == 3)
    [all...]
SmallBitVectorTest.cpp 19 EXPECT_EQ(0U, Vec.count());
27 EXPECT_EQ(5U, Vec.count());
35 EXPECT_EQ(5U, Vec.count());
43 EXPECT_EQ(6U, Inv.count());
63 unsigned Count = 0;
65 ++Count;
69 EXPECT_EQ(Count, Vec.count());
70 EXPECT_EQ(Count, 23u);
82 EXPECT_TRUE(Vec.count() == 3)
    [all...]
  /external/llvm/utils/count/
count.c 1 /*===- count.c - The 'count' testing tool ---------------------------------===*\
14 unsigned Count, NumLines, NumRead;
18 fprintf(stderr, "usage: %s <expected line count>\n", argv[0]);
22 Count = strtol(argv[1], &End, 10);
24 fprintf(stderr, "%s: invalid count argument '%s'\n", argv[0], argv[1]);
44 if (Count != NumLines) {
45 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 35 Count RN 14
45 SUB Count,step,#8 ;//Count=step-8
47 LDRD X1,[pSrc],Count ;//pSrc after loading pSrc=pSrc+step
53 LDRD X1,[pSrc],Count
59 LDRD X1,[pSrc],Count
65 LDRD X1,[pSrc],Count
71 LDRD X1,[pSrc],Count
77 LDRD X1,[pSrc],Count
83 LDRD X1,[pSrc],Count
    [all...]
omxVCCOMM_Copy8x8_s.s 35 Count RN 14
43 MOV Count,step ;//Count=step
45 LDRD X0,[pSrc],Count ;//pSrc after loading : pSrc=pSrc+step
46 LDRD X1,[pSrc],Count
49 LDRD X0,[pSrc],Count
51 LDRD X1,[pSrc],Count
54 LDRD X0,[pSrc],Count
56 LDRD X1,[pSrc],Count
59 LDRD X0,[pSrc],Count
    [all...]
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 14 // of the pointer as the function return value may or may not count as capturing
51 int Count = 0;
57 if (Count++ >= Threshold)
129 // Don't count comparisons of a no-alias return value against null as
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_Clip8_s.s 39 Count RN 14
45 MOV Count,#8
49 SUBS Count,Count, #1 ;// count down
70 BGT loop ;// Continue loop until Count reaches 64
omxVCM4P2_DecodeVLCZigzag_Inter_s.s 96 Count RN 6
121 MOV Count,#0 ;// set start=0
omxVCM4P2_DecodeVLCZigzag_IntraACVLC_s.s 95 Count RN 6
120 MOV Count,#0 ;// Set Start=0
omxVCM4P2_QuantInvInter_I_s.s 68 Count RN 4
80 MOV Count,#64
129 SUBS Count,Count,#4 ;// Decrement Count by 4 and continue if it has not reached 0
omxVCM4P2_QuantInvIntra_I_s.s 86 Count RN 11
114 MOV Count,#64
165 SUBS Count,Count,#4 ;// Decrement Count by 4 and continue if it has not reached 0
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy8x8_s.s 33 Count RN 3
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodeVLCZigzag_Inter_s.s 96 Count RN 6
121 MOV Count,#0 ;// set start=0
omxVCM4P2_DecodeVLCZigzag_IntraACVLC_s.s 95 Count RN 6
120 MOV Count,#0 ;// Set Start=0
  /external/clang/include/clang/Basic/
AddressSpaces.h 33 Count = Last-Offset
38 typedef unsigned Map[Count];
  /external/llvm/lib/VMCore/
Use.cpp 104 ptrdiff_t Count = Done;
107 if (!Count) {
110 Count = Done;
112 new(Stop) Use(PrevPtrTag(Count & 1));
113 Count >>= 1;
GCOV.cpp 106 uint32_t Count = Buff.readInt() / 2;
107 for (unsigned i = 0, e = Count; i != e; ++i) {
220 uint32_t Count) {
223 FI.addLineCount(Filename, *I, Count);
236 /// addLineCount - Add line count for the given line number in a file.
237 void FileInfo::addLineCount(StringRef Filename, uint32_t Line, uint32_t Count) {
245 LineCounts L(AllLines.count('\n')+2);
246 L[Line-1] = Count;
251 L[Line-1] = Count;
254 /// print - Print source files with collected line count information
    [all...]
  /hardware/ti/omap4xxx/libtiutils/
Semaphore.cpp 53 @param count >=0
78 @brief Create the semaphore with initial count value
80 @param count >=0
83 @return BAD_VALUE If an invalid count value is passed (<0)
87 status_t Semaphore::Create(int count)
91 ///count cannot be less than zero
92 if(count<0)
113 return ErrorUtils::posixToAndroidError(sem_init(mSemaphore, 0x00, count));
163 @brief Current semaphore count
166 @return Current count value of the semaphore
    [all...]
  /external/llvm/lib/Transforms/Scalar/
BasicBlockPlacement.cpp 105 assert(!PlacedBlocks.count(BB) && "Already placed this block!");
130 for (; SI != E && PlacedBlocks.count(*SI); ++SI)
139 if (!PlacedBlocks.count(*SI)) {
140 double Count = PI->getExecutionCount(*SI);
141 if (Count > MaxExecutionCount ||
143 (Count == MaxExecutionCount && *SI == &*InsertPos)) {
144 MaxExecutionCount = Count;
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s 60 Count RN 14
71 MOV Count, #4
93 SUBS Count, Count, #1
109 MOV Count, #2
163 SUBS Count, Count, #1
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s 60 Count RN 14
71 MOV Count, #4
93 SUBS Count, Count, #1
109 MOV Count, #2
163 SUBS Count, Count, #1
  /external/libnfc-nxp/src/
phHal4Nfc_ADD.c 437 /*Count is used to add multiple info into remote dvice list for devices that
439 uint8_t Count = 0,
466 Count++;
479 aRemoteDevTypes[Count] = phHal_eMifare_PICC;
480 Count++;
483 if((0 == Sak)&& (0 == Count))
491 aRemoteDevTypes[Count] = phHal_eMifare_PICC;
492 Count++;
499 aRemoteDevTypes[Count] = phHal_eISO14443_3A_PICC;
500 Count++
    [all...]

Completed in 587 milliseconds

1 2 3 4