Searched refs:Count (Results 1 - 25 of 173) sorted by relevance

1234567

/macosx-10.10/dtrace-147/DTTk/Bin/
H A Dpridist.d59 @Count[execname, pid] = lquantize(curlwpsinfo->pr_pri, 0, 100, 5);
64 printa(" CMD: %-16s PID: %d\n%@d\n", @Count);
H A Dsigdist.d53 @Count[execname, stringof(args[1]->pr_fname), args[2]] = count();
59 printa("%16s %16s %6d %6@d\n", @Count);
/macosx-10.10/dtrace-147/DTTk/Kernel/
H A Dpridist.d59 @Count[execname, pid] = lquantize(curlwpsinfo->pr_pri, 0, 100, 5);
64 printa(" CMD: %-16s PID: %d\n%@d\n", @Count);
/macosx-10.10/dtrace-147/DTTk/Proc/
H A Dsigdist.d53 @Count[execname, stringof(args[1]->pr_fname), args[2]] = count();
59 printa("%16s %16s %6d %6@d\n", @Count);
/macosx-10.10/llvmCore-3425.0.34/utils/count/
H A Dcount.c14 unsigned Count, NumLines, NumRead; local
22 Count = strtol(argv[1], &End, 10);
44 if (Count != NumLines) {
45 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Transforms/Utils/
H A DUnrollLoop.h25 bool UnrollLoop(Loop *L, unsigned Count, unsigned TripCount, bool AllowRuntime,
28 bool UnrollRuntimeLoopProlog(Loop *L, unsigned Count, LoopInfo *LI,
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp110 Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial) { argument
111 return new LoopUnroll(Threshold, Count, AllowPartial);
165 unsigned Count = CurrentCount; local
167 Count = UnrollRuntimeCount;
169 if (Count == 0) {
176 Count = TripCount;
189 uint64_t Size = (uint64_t)LoopSize*Count;
191 DEBUG(dbgs() << " Too large to fully unroll with count: " << Count
200 Count = Threshold / LoopSize;
201 while (Count !
[all...]
H A DBasicBlockPlacement.cpp140 double Count = PI->getExecutionCount(*SI); local
141 if (Count > MaxExecutionCount ||
143 (Count == MaxExecutionCount && *SI == &*InsertPos)) {
144 MaxExecutionCount = Count;
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_transform/
H A Dcounter.tcl13 # Meta as::notes counters per byte value. Count over
54 my Count -write-variable $data
59 my Count -read-variable $data
84 method Count {o data} {
/macosx-10.10/dcerpc-61/dcerpc/include/compat/
H A Drpcfields.h78 #define RPC_FIELD_COUNT(x) ((x)->Count)
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DUse.cpp105 ptrdiff_t Count = Done; local
108 if (!Count) {
111 Count = Done;
113 new(Stop) Use(PrevPtrTag(Count & 1));
114 Count >>= 1;
/macosx-10.10/ncurses-44/ncurses/test/
H A Dhanoi.c65 int Count; member in struct:Peg
200 if (!Pegs[From].Count)
202 if (Pegs[To].Count &&
203 Pegs[From].Length[Pegs[From].Count - 1] >
204 Pegs[To].Length[Pegs[To].Count - 1])
217 Pegs[0].Count = NTiles;
218 Pegs[1].Count = 0;
219 Pegs[2].Count = 0;
248 for (SlotNo = 0; SlotNo < Pegs[peg].Count; SlotNo++) {
296 Pegs[From].Count
[all...]
/macosx-10.10/WebCore-7600.1.25/replay/
H A DSegmentedInputStorage.cpp52 case InputQueue::Count: return "ERROR!";
59 case InputQueue::Count: return "ERROR!";
79 for (size_t i = 0; i < offsetForInputQueue(InputQueue::Count); i++)
85 for (size_t i = 0; i < offsetForInputQueue(InputQueue::Count); i++)
104 ASSERT(input->queue() < InputQueue::Count);
118 ASSERT(queue < InputQueue::Count);
/macosx-10.10/llvmCore-3425.0.34/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...]
/macosx-10.10/objc4-646/runtime/
H A Dllvm-MathExtras.h143 unsigned Count; // result local
149 Count = __builtin_clz(Value);
152 Count = 0;
159 Count |= Shift;
163 return Count;
179 unsigned Count; // result local
185 Count = __builtin_clzll(Value);
189 Count = 0;
196 Count |= Shift;
206 Count
[all...]
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DMathExtras.h161 unsigned Count; // result local
167 Count = __builtin_clz(Value);
170 Count = 0;
177 Count |= Shift;
181 return Count;
197 unsigned Count; // result local
203 Count = __builtin_clzll(Value);
207 Count = 0;
214 Count |= Shift;
224 Count
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DAggressiveAntiDepBreaker.h154 void Observe(MachineInstr *MI, unsigned Count, unsigned InsertPosIndex);
174 void PrescanInstruction(MachineInstr *MI, unsigned Count,
176 void ScanInstruction(MachineInstr *MI, unsigned Count);
H A DCriticalAntiDepBreaker.h90 void Observe(MachineInstr *MI, unsigned Count, unsigned InsertPosIndex);
97 void ScanInstruction(MachineInstr *MI, unsigned Count);
H A DAntiDepBreaker.h54 virtual void Observe(MachineInstr *MI, unsigned Count,
/macosx-10.10/llvmCore-3425.0.34/lib/Target/MBlaze/MCTargetDesc/
H A DMBlazeAsmBackend.cpp62 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const;
106 bool MBlazeAsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const { argument
107 if ((Count % 4) != 0)
110 for (uint64_t i = 0; i < Count; i += 4)
/macosx-10.10/vim-55/src/VisVim/
H A DReg.cpp44 DWORD Count = sizeof (DWORD); local
46 (LPBYTE) &Value, &Count) == ERROR_SUCCESS)
/macosx-10.10/llvmCore-3425.0.34/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);
135 Count, InFlag);
148 Count = Size;
149 EVT CVT = Count.getValueType();
150 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
219 SDValue Count = DAG.getIntPtrConstant(CountVal); local
225 Count, InFla
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DLoopUnrollRuntime.cpp56 static void ConnectProlog(Loop *L, Value *TripCount, unsigned Count, argument
111 ConstantInt::get(TripCount->getType(), Count));
227 bool llvm::UnrollRuntimeLoopProlog(Loop *L, unsigned Count, LoopInfo *LI, argument
259 // Count is the loop unroll factor, the number of extra copies added + 1.
260 if ((Count & (Count-1)) != 0)
285 ConstantInt::get(CountTy, Count),
316 for (unsigned leftOverIters = Count-1; leftOverIters > 0; --leftOverIters) {
322 CloneLoopBlocks(L, (leftOverIters == Count-1), LastLoopBB, PEnd, NewBlocks,
332 if (leftOverIters == Count
[all...]
H A DLoopUnroll.cpp114 /// Unroll the given loop by Count. The loop must be in LCSSA form. Returns true
139 bool llvm::UnrollLoop(Loop *L, unsigned Count, unsigned TripCount, argument
178 DEBUG(dbgs() << " Trip Count = " << TripCount << "\n");
184 if (TripCount != 0 && Count > TripCount)
185 Count = TripCount;
189 if (TripCount == 0 && Count < 2)
192 assert(Count > 0);
197 bool CompletelyUnroll = Count == TripCount;
202 bool RuntimeTripCount = (TripCount == 0 && Count > 0 && AllowRuntime);
204 if (RuntimeTripCount && !UnrollRuntimeLoopProlog(L, Count, L
[all...]
/macosx-10.10/OpenSSL098-52/src/fips/hmac/
H A Dfips_hmactest.c151 int Count, Klen, Tlen; local
162 Count = -1;
217 else if (!strcmp(keyword, "Count"))
219 if (Count != -1)
221 Count = atoi(value);
222 if (Count < 0)
274 Count = -1;

Completed in 292 milliseconds

1234567