HomeSort by relevance Sort by last modified time
    Searched refs:Num (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 20 int Num;
57 A1[0].Num = 21;
58 A1[7].Num = 17;
61 A2[0].Num = 121;
62 A2[7].Num = 117;
65 A3[0].Num = 221;
66 A3[7].Num = 217;
68 EXPECT_EQ(21, A1[0].Num);
69 EXPECT_EQ(17, A1[7].Num);
70 EXPECT_EQ(121, A2[0].Num);
    [all...]
  /external/bison/src/
state.h 65 num rules. lookahead_tokens is an array of bitsets, one per rule.
113 int num; member in struct:__anon2788
119 TRANSITIONS->states[Num]? Can be a token (amongst which the error
122 #define TRANSITION_SYMBOL(Transitions, Num) \
123 (Transitions->states[Num]->accessing_symbol)
125 /* Is the TRANSITIONS->states[Num] a shift? (as opposed to gotos). */
127 #define TRANSITION_IS_SHIFT(Transitions, Num) \
128 (ISTOKEN (TRANSITION_SYMBOL (Transitions, Num)))
130 /* Is the TRANSITIONS->states[Num] a goto?. */
132 #define TRANSITION_IS_GOTO(Transitions, Num) \
171 int num; member in struct:__anon2789
184 int num; member in struct:__anon2790
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 4 template <typename T> struct Num {
8 Num(T value) : value_(value) {}
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& b)
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCMachineFunctionInfo.h 162 void setVarArgsNumGPR(unsigned Num) { VarArgsNumGPR = Num; }
165 void setVarArgsNumFPR(unsigned Num) { VarArgsNumFPR = Num; }
  /external/llvm/include/llvm/Support/
Allocator.h 42 T *Allocate(size_t Num) {
43 return static_cast<T*>(malloc(sizeof(T)*Num));
162 T *Allocate(size_t Num) {
163 return static_cast<T*>(Allocate(Num * sizeof(T), AlignOf<T>::Alignment));
169 T *Allocate(size_t Num, size_t Alignment) {
172 return static_cast<T*>(Allocate(Num * EltSize, Alignment));
219 T *Allocate(size_t num = 1) {
220 return Allocator.Allocate<T>(num);
  /external/llvm/lib/CodeGen/
SplitKit.h 111 SlotIndex computeLastSplitPoint(unsigned Num);
140 /// in the basic block numbered Num.
141 SlotIndex getLastSplitPoint(unsigned Num) {
143 if (LastSplitPoint[Num].first.isValid() &&
144 !LastSplitPoint[Num].second.isValid())
145 return LastSplitPoint[Num].first;
146 return computeLastSplitPoint(Num);
BasicTargetTransformInfo.cpp 251 unsigned Num = Ty->getVectorNumElements();
255 return getScalarizationOverhead(Ty, true, true) + Num * Cost;
336 unsigned Num = Dst->getVectorNumElements();
342 return getScalarizationOverhead(Dst, true, true) + Num * Cost;
384 unsigned Num = ValTy->getVectorNumElements();
392 return getScalarizationOverhead(ValTy, true, false) + Num * Cost;
483 unsigned Num = RetTy->getVectorNumElements();
486 return 10 * Cost * Num;
GCMetadata.cpp 150 OS << "\t" << RI->Num << "\t" << RI->StackOffset << "[sp]\n";
161 OS << " " << RI->Num;
  /external/llvm/include/llvm/CodeGen/
GCMetadata.h 72 int Num; ///< Usually a frame index.
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) {
122 Roots.push_back(GCRoot(Num, Metadata));
130 /// addSafePoint - Notes the existence of a safe point. Num is the ID of the
SelectionDAGISel.h 185 void ReplaceUses(const SDValue *F, const SDValue *T, unsigned Num) {
186 CurDAG->ReplaceAllUsesOfValuesWith(F, T, Num);
  /external/llvm/lib/Analysis/
InstCount.cpp 31 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
44 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 110 unsigned addBytes(unsigned char *Ptr, int Num, int Bytes) {
111 assert((curpos + Num) <= size);
113 for (int i = 0; i < Num; ++i) {
117 for (int i = Num; i < Bytes; ++i) {
123 unsigned addZeros(int Num) {
124 assert((curpos + Num) <= size);
125 for (int i = 0; i < Num; ++i) {
  /cts/tools/dasm/src/dasm/
sym.java 84 static final int Num = 71;
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 32 char PtrFunc2(FuncPtr FuncTab[30], int Num) {
33 return FuncTab[Num]('b');
111 int SumArray(int Array[], int Num) {
113 for (i = 0; i < Num; ++i)
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 71 // LLVM register Num, which has kind Kind. In some ways it might be
82 unsigned Num;
131 static SystemZOperand *createReg(RegisterKind Kind, unsigned Num,
135 Op->Reg.Num = Num;
138 static SystemZOperand *createAccessReg(unsigned Num, SMLoc StartLoc,
141 Op->AccessReg = Num;
181 return Reg.Num;
304 unsigned Num;
450 if (Name.substr(1).getAsInteger(10, Reg.Num))
    [all...]
  /external/llvm/include/llvm/ADT/
DenseMap.h 349 void setNumEntries(unsigned Num) {
350 static_cast<DerivedT *>(this)->setNumEntries(Num);
361 void setNumTombstones(unsigned Num) {
362 static_cast<DerivedT *>(this)->setNumTombstones(Num);
655 void setNumEntries(unsigned Num) {
656 NumEntries = Num;
662 void setNumTombstones(unsigned Num) {
663 NumTombstones = Num;
674 bool allocateBuckets(unsigned Num) {
675 NumBuckets = Num;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ast.py 152 # Num
266 x = ast.Num()
272 x = ast.Num()
278 x = ast.Num(42)
287 x = ast.Num(lineno=2)
290 x = ast.Num(42, lineno=0)
295 self.assertRaises(TypeError, ast.Num, 1, 2)
296 self.assertRaises(TypeError, ast.Num, 1, 2, lineno=0)
299 body = [ast.Num(42)]
312 n1 = ast.Num(1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ast.py 152 # Num
266 x = ast.Num()
272 x = ast.Num()
278 x = ast.Num(42)
287 x = ast.Num(lineno=2)
290 x = ast.Num(42, lineno=0)
295 self.assertRaises(TypeError, ast.Num, 1, 2)
296 self.assertRaises(TypeError, ast.Num, 1, 2, lineno=0)
299 body = [ast.Num(42)]
312 n1 = ast.Num(1
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_optimize.c 850 GLuint Num;
858 list->Intervals[list->Num++] = *inv;
867 GLint i = list->Num - 1;
873 list->Num++;
878 for (i = 0; i + 1 < list->Num; i++) {
892 for (k = 0; k < list->Num; k++) {
897 while (k < list->Num - 1) {
901 list->Num--;
927 qsort(list->Intervals, list->Num, sizeof(struct interval), compare_start);
931 for (i = 0; i + 1 < list->Num; i++)
    [all...]
  /external/mesa3d/src/mesa/program/
prog_optimize.c 850 GLuint Num;
858 list->Intervals[list->Num++] = *inv;
867 GLint i = list->Num - 1;
873 list->Num++;
878 for (i = 0; i + 1 < list->Num; i++) {
892 for (k = 0; k < list->Num; k++) {
897 while (k < list->Num - 1) {
901 list->Num--;
927 qsort(list->Intervals, list->Num, sizeof(struct interval), compare_start);
931 for (i = 0; i + 1 < list->Num; i++)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
SIGenRegisterInfo.pl 62 class SGPR_32 <bits<8> num, string name> : SIReg<name> {
63 field bits<8> Num;
65 let Num = num;
69 class VGPR_32 <bits<9> num, string name> : SIReg<name> {
70 field bits<9> Num;
72 let Num = num;
75 class SGPR_64 <bits<8> num, string name, list<Register> subregs> :
78 class VGPR_64 <bits<9> num, string name, list<Register> subregs>
    [all...]
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 49 unsigned Num = NumParams.getLimitedValue(255);
50 if ((Num & 1) || Num > 30) {
57 d->addAttr(::new (S.Context) MSP430InterruptAttr(Attr.getLoc(), S.Context, Num));
  /external/mesa3d/src/gallium/drivers/radeon/
SIGenRegisterInfo.pl 62 class SGPR_32 <bits<8> num, string name> : SIReg<name> {
63 field bits<8> Num;
65 let Num = num;
69 class VGPR_32 <bits<9> num, string name> : SIReg<name> {
70 field bits<9> Num;
72 let Num = num;
75 class SGPR_64 <bits<8> num, string name, list<Register> subregs> :
78 class VGPR_64 <bits<9> num, string name, list<Register> subregs>
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 29 var Num;
41 Num = dx / 2;
49 Num = dy / 2;
58 Num += NumAdd;
59 if (Num >= Den) {
60 Num -= Den;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 29 var Num;
41 Num = dx / 2;
49 Num = dy / 2;
58 Num += NumAdd;
59 if (Num >= Den) {
60 Num -= Den;

Completed in 523 milliseconds

1 2 3 4