Searched refs:Num (Results 1 - 25 of 50) sorted by relevance

12

/external/bison/src/
H A Dstate.h122 TRANSITIONS->states[Num]? Can be a token (amongst which the error
125 #define TRANSITION_SYMBOL(Transitions, Num) \
126 (Transitions->states[Num]->accessing_symbol)
128 /* Is the TRANSITIONS->states[Num] a shift? (as opposed to gotos). */
130 #define TRANSITION_IS_SHIFT(Transitions, Num) \
131 (ISTOKEN (TRANSITION_SYMBOL (Transitions, Num)))
133 /* Is the TRANSITIONS->states[Num] a goto?. */
135 #define TRANSITION_IS_GOTO(Transitions, Num) \
136 (!TRANSITION_IS_SHIFT (Transitions, Num))
138 /* Is the TRANSITIONS->states[Num] labelle
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp4 template <typename T> struct Num { struct in namespace:test0
8 Num(T value) : value_(value) {} function in struct:test0::Num
15 friend Num operator*(const Num &a, const Rep &n) {
16 Num x = 0;
23 friend Num operator+(const Num &a, const Num &b) {
27 Num& operator+=(const Num
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCMachineFunctionInfo.h124 void setVarArgsNumGPR(unsigned Num) { VarArgsNumGPR = Num; } argument
127 void setVarArgsNumFPR(unsigned Num) { VarArgsNumFPR = Num; } argument
/external/llvm/include/llvm/Support/
H A DAllocator.h42 T *Allocate(size_t Num) { argument
43 return static_cast<T*>(malloc(sizeof(T)*Num));
162 T *Allocate(size_t Num) { argument
163 return static_cast<T*>(Allocate(Num * sizeof(T), AlignOf<T>::Alignment));
169 T *Allocate(size_t Num, size_t Alignment) { argument
172 return static_cast<T*>(Allocate(Num * EltSize, Alignment));
/external/llvm/include/llvm/CodeGen/
H A DGCMetadata.h72 int Num; ///< Usually a frame index. member in struct:llvm::GCRoot
77 GCRoot(int N, const Constant *MD) : Num(N), StackOffset(-1), Metadata(MD) {}
118 /// addStackRoot - Registers a root that lives on the stack. Num is the
121 void addStackRoot(int Num, const Constant *Metadata) { argument
122 Roots.push_back(GCRoot(Num, Metadata));
125 /// addSafePoint - Notes the existence of a safe point. Num is the ID of the
H A DSlotIndexes.h437 getMBBRange(unsigned Num) const {
438 return MBBRanges[Num];
448 SlotIndex getMBBStartIdx(unsigned Num) const {
449 return getMBBRange(Num).first;
458 SlotIndex getMBBEndIdx(unsigned Num) const {
459 return getMBBRange(Num).second;
H A DSelectionDAGISel.h183 void ReplaceUses(const SDValue *F, const SDValue *T, unsigned Num) { argument
184 CurDAG->ReplaceAllUsesOfValuesWith(F, T, Num);
/external/llvm/lib/Analysis/
H A DInstCount.cpp31 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
44 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
H A DAliasAnalysisEvaluator.cpp254 static void PrintPercent(unsigned Num, unsigned Sum) { argument
255 errs() << "(" << Num*100ULL/Sum << "."
256 << ((Num*1000ULL/Sum) % 10) << "%)\n";
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h117 unsigned addBytes(unsigned char *Ptr, int Num, int Bytes) { argument
118 assert((curpos+Num) <= size);
120 for ( int i= 0; i < Num; ++i) {
124 for ( int i=Num; i < Bytes ; ++i) {
130 unsigned addZeros(int Num) { argument
131 assert((curpos+Num) <= size);
132 for ( int i= 0; i < Num; ++i) {
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c32 char PtrFunc2(FuncPtr FuncTab[30], int Num) { argument
33 return FuncTab[Num]('b');
111 int SumArray(int Array[], int Num) { argument
113 for (i = 0; i < Num; ++i)
/external/llvm/lib/CodeGen/
H A DSplitKit.h110 SlotIndex computeLastSplitPoint(unsigned Num);
139 /// in the basic block numbered Num.
140 SlotIndex getLastSplitPoint(unsigned Num) { argument
142 if (LastSplitPoint[Num].first.isValid() &&
143 !LastSplitPoint[Num].second.isValid())
144 return LastSplitPoint[Num].first;
145 return computeLastSplitPoint(Num);
H A DMachineFunction.cpp219 MachineFunction::allocateMemRefsArray(unsigned long Num) { argument
220 return Allocator.Allocate<MachineMemOperand *>(Num);
227 unsigned Num = 0; local
230 ++Num;
233 MachineInstr::mmo_iterator Result = allocateMemRefsArray(Num);
252 return std::make_pair(Result, Result + Num);
259 unsigned Num = 0; local
262 ++Num;
265 MachineInstr::mmo_iterator Result = allocateMemRefsArray(Num);
284 return std::make_pair(Result, Result + Num);
[all...]
H A DGCMetadata.cpp162 OS << "\t" << RI->Num << "\t" << RI->StackOffset << "[sp]\n";
173 OS << " " << RI->Num;
H A DSpillPlacement.cpp183 unsigned Num = I->getNumber(); local
184 BlockFrequency[Num] = Freq;
185 nodes[bundles->getBundle(Num, 1)].Scale[0] += Freq;
186 nodes[bundles->getBundle(Num, 0)].Scale[1] += Freq;
H A DMachineTraceMetrics.cpp484 for (unsigned Num = 0, e = BlockInfo.size(); Num != e; ++Num) {
485 const TraceBlockInfo &TBI = BlockInfo[Num];
487 const MachineBasicBlock *MBB = MTM.MF->getBlockNumbered(Num);
495 const MachineBasicBlock *MBB = MTM.MF->getBlockNumbered(Num);
1140 unsigned Num = Block->Pred->getNumber();
1141 OS << " <- BB#" << Num;
1142 Block = &TE.BlockInfo[Num];
1148 unsigned Num
[all...]
/external/llvm/include/llvm/ADT/
H A DDenseMap.h331 void setNumEntries(unsigned Num) { argument
332 static_cast<DerivedT *>(this)->setNumEntries(Num);
343 void setNumTombstones(unsigned Num) { argument
344 static_cast<DerivedT *>(this)->setNumTombstones(Num);
636 void setNumEntries(unsigned Num) { argument
637 NumEntries = Num;
643 void setNumTombstones(unsigned Num) { argument
644 NumTombstones = Num;
655 bool allocateBuckets(unsigned Num) { argument
656 NumBuckets = Num;
904 setNumEntries(unsigned Num) argument
956 allocateBuckets(unsigned Num) argument
[all...]
H A DPointerUnion.h87 static const int Num = 0;
90 static const int Num = 1;
125 int TyNo = Ty::Num;
/external/clang/lib/Sema/
H A DTargetAttributesSema.cpp47 unsigned Num = NumParams.getLimitedValue(255); local
48 if ((Num & 1) || Num > 30) {
55 d->addAttr(::new (S.Context) MSP430InterruptAttr(Attr.getLoc(), S.Context, Num));
/external/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp46 void emitRecord(const CodeGenInstruction &Inst, unsigned Num,
59 unsigned Num, raw_ostream &OS) {
60 OS << "static const uint16_t ImplicitList" << Num << "[] = { "; local
296 void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num, argument
309 OS << Num << ",\t" << MinOperands << ",\t"
378 OS << " }, // Inst #" << Num << " = " << Inst.TheDef->getName() << "\n";
58 PrintDefList(const std::vector<Record*> &Uses, unsigned Num, raw_ostream &OS) argument
H A DFixedLenDecoderEmitter.cpp1008 unsigned Num, BitNo;
1009 Num = BitNo = 0;
1040 ++Num;
1053 ++Num;
1056 assert(StartBits.size() == Num && EndBits.size() == Num &&
1057 FieldVals.size() == Num);
1058 return Num;
1634 unsigned Num = Opcodes.size();
1635 assert(Num
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A D3d-cube.js29 var Num;
41 Num = dx / 2;
49 Num = dy / 2;
58 Num += NumAdd;
59 if (Num >= Den) {
60 Num -= Den;
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A D3d-cube.js29 var Num;
41 Num = dx / 2;
49 Num = dy / 2;
58 Num += NumAdd;
59 if (Num >= Den) {
60 Num -= Den;
/external/llvm/lib/Transforms/Scalar/
H A DSink.cpp88 unsigned Num = PHINode::getIncomingValueNumForOperand(I.getOperandNo()); local
89 UseBlock = PN->getIncomingBlock(Num);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h292 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M) argument
293 : Number(Num), Moves(M) {}

Completed in 386 milliseconds

12