Searched refs:R1 (Results 1 - 25 of 82) sorted by relevance

1234

/external/clang/test/Parser/
H A Dcxx0x-member-initializers.cpp19 struct R1 { struct
21 R1() : a {} function in struct:R1
/external/clang/test/Preprocessor/
H A Dmacro_paste_spacing2.c5 epilogue(R1)
/external/llvm/unittests/IR/
H A DMDBuilderTest.cpp48 MDNode *R1 = MDHelper.createRange(A, B); local
50 EXPECT_NE(R1, (MDNode *)0);
51 EXPECT_EQ(R1->getNumOperands(), 2U);
52 EXPECT_TRUE(isa<ConstantInt>(R1->getOperand(0)));
53 EXPECT_TRUE(isa<ConstantInt>(R1->getOperand(1)));
54 ConstantInt *C0 = cast<ConstantInt>(R1->getOperand(0));
55 ConstantInt *C1 = cast<ConstantInt>(R1->getOperand(1));
62 MDNode *R1 = MDHelper.createAnonymousTBAARoot(); local
63 EXPECT_NE(R0, R1);
65 EXPECT_GE(R1
74 MDNode *R1 = MDHelper.createTBAARoot("Root"); local
[all...]
/external/openssl/crypto/md4/
H A Dmd4_dgst.c129 R1(A,B,C,D,X( 0), 3,0x5A827999L);
130 R1(D,A,B,C,X( 4), 5,0x5A827999L);
131 R1(C,D,A,B,X( 8), 9,0x5A827999L);
132 R1(B,C,D,A,X(12),13,0x5A827999L);
133 R1(A,B,C,D,X( 1), 3,0x5A827999L);
134 R1(D,A,B,C,X( 5), 5,0x5A827999L);
135 R1(C,D,A,B,X( 9), 9,0x5A827999L);
136 R1(B,C,D,A,X(13),13,0x5A827999L);
137 R1(A,B,C,D,X( 2), 3,0x5A827999L);
138 R1(
[all...]
H A Dmd4_locl.h106 #define R1(a,b,c,d,k,s,t) { \ macro
/external/openssl/crypto/md5/
H A Dmd5_dgst.c128 R1(A,B,C,D,X( 1), 5,0xf61e2562L);
129 R1(D,A,B,C,X( 6), 9,0xc040b340L);
130 R1(C,D,A,B,X(11),14,0x265e5a51L);
131 R1(B,C,D,A,X( 0),20,0xe9b6c7aaL);
132 R1(A,B,C,D,X( 5), 5,0xd62f105dL);
133 R1(D,A,B,C,X(10), 9,0x02441453L);
134 R1(C,D,A,B,X(15),14,0xd8a1e681L);
135 R1(B,C,D,A,X( 4),20,0xe7d3fbc8L);
136 R1(A,B,C,D,X( 9), 5,0x21e1cde6L);
137 R1(
[all...]
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DHandleMessage.h66 template<typename C, typename MF, typename R1>
67 void callMemberFunction(const Arguments0&, Arguments1<R1>& replyArgs, C* object, MF function)
72 template<typename C, typename MF, typename R1, typename R2>
73 void callMemberFunction(const Arguments0&, Arguments2<R1, R2>& replyArgs, C* object, MF function)
84 template<typename C, typename MF, typename P1, typename R1>
85 void callMemberFunction(const Arguments1<P1>& args, Arguments1<R1>& replyArgs, C* object, MF function)
90 template<typename C, typename MF, typename P1, typename R1, typename R2>
91 void callMemberFunction(const Arguments1<P1>& args, Arguments2<R1, R2>& replyArgs, C* object, MF function)
96 template<typename C, typename MF, typename P1, typename R1, typename R2, typename R3>
97 void callMemberFunction(const Arguments1<P1>& args, Arguments3<R1, R
[all...]
/external/clang/lib/Analysis/
H A DReachableCode.cpp182 SourceRange &R1,
184 R1 = R2 = SourceRange();
196 R1 = UO->getSubExpr()->getSourceRange();
201 R1 = CAO->getLHS()->getSourceRange();
213 R1 = ME->getSourceRange();
218 R1 = ASE->getLHS()->getSourceRange();
224 R1 = CSC->getSubExpr()->getSourceRange();
229 R1 = CE->getSubExpr()->getSourceRange();
237 R1 = CSC->getSubExpr()->getSourceRange();
242 R1
181 GetUnreachableLoc(const Stmt *S, SourceRange &R1, SourceRange &R2) argument
248 SourceRange R1, R2; local
[all...]
/external/openssl/crypto/md5/asm/
H A Dmd5-586.pl25 %Ltmp1=("R0",&Np($C), "R1",&Np($C), "R2",&Np($C), "R3",&Np($D));
28 1, 6, 11, 0, 5, 10, 15, 4, 9, 14, 3, 8, 13, 2, 7, 12, # R1
62 &mov($tmp1,&Np($c)) if $pos == 1; # next tmp1 for R1
71 sub R1 subroutine
75 &comment("R1 $ki");
219 &comment("R1 section");
220 &R1(-1,$A,$B,$C,$D,$X,16, 5,0xf61e2562);
221 &R1( 0,$D,$A,$B,$C,$X,17, 9,0xc040b340);
222 &R1( 0,$C,$D,$A,$B,$X,18,14,0x265e5a51);
223 &R1(
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DReachableCode.h43 virtual void HandleUnreachable(SourceLocation L, SourceRange R1,
/external/clang/lib/Tooling/
H A DRefactoring.cpp82 bool Replacement::Less::operator()(const Replacement &R1, argument
84 if (R1.FilePath != R2.FilePath) return R1.FilePath < R2.FilePath;
85 if (R1.Offset != R2.Offset) return R1.Offset < R2.Offset;
86 if (R1.Length != R2.Length) return R1.Length < R2.Length;
87 return R1.ReplacementText < R2.ReplacementText;
/external/llvm/unittests/ADT/
H A DIntrusiveRefCntPtrTest.cpp22 IntrusiveRefCntPtr<VirtualRefCounted> R1 = V1; local
32 IntrusiveRefCntPtr<SimpleRefCounted> R1 = S1; local
/external/skia/gm/
H A Dtwopointradial.cpp76 const int R1 = 40; local
84 0, 0, R0, 0, 0, R1,
85 0, 0, R0, 20, 0, R1,
86 0, 0, R0, 25, 0, R1,
87 0, 0, R0, 100, 0, R1,
/external/llvm/lib/Target/ARM/
H A DARMCallingConv.h31 static const uint16_t RegList[] = { ARM::R0, ARM::R1, ARM::R2, ARM::R3 };
75 static const uint16_t LoRegList[] = { ARM::R1, ARM::R3 };
76 static const uint16_t ShadowRegList[] = { ARM::R0, ARM::R1 };
121 static const uint16_t LoRegList[] = { ARM::R1, ARM::R3 };
/external/llvm/lib/Target/MBlaze/
H A DMBlazeFrameLowering.cpp365 // Adjust stack : addi R1, R1, -imm
366 BuildMI(MBB, MBBI, DL, TII.get(MBlaze::ADDIK), MBlaze::R1)
367 .addReg(MBlaze::R1).addImm(-StackSize);
369 // swi R15, R1, stack_loc
372 .addReg(MBlaze::R15).addReg(MBlaze::R1).addImm(RAOffset);
376 // swi R19, R1, stack_loc
378 .addReg(MBlaze::R19).addReg(MBlaze::R1).addImm(FPOffset);
380 // add R19, R1, R0
382 .addReg(MBlaze::R1)
[all...]
H A DMBlazeRegisterInfo.cpp74 Reserved.set(MBlaze::R1);
136 return TFI->hasFP(MF) ? MBlaze::R19 : MBlaze::R1;
/external/compiler-rt/lib/msandr/
H A Dmsandr.cc206 reg_id_t R1; local
211 // base for R1.
213 R1 = opnd_get_base(op);
215 // Otherwise, we need to compute the addr into R1.
218 R1 = DR_REG_XAX;
220 CHECK(reg_is_pointer_sized(R1)); // otherwise R2 may be wrong.
222 // Pick R2 that's not R1 or used by the operand. It's OK if the instr uses
229 unused_registers.erase(R1);
236 CHECK(R1 != R2);
238 // Save the current values of R1 an
[all...]
/external/mdnsresponder/mDNSCore/
H A DDNSDigest.c900 #define R1(a,b,c,d,k,s,t) { \ macro
969 R1(A,B,C,D,X[ 1], 5,0xf61e2562L);
970 R1(D,A,B,C,X[ 6], 9,0xc040b340L);
971 R1(C,D,A,B,X[11],14,0x265e5a51L);
972 R1(B,C,D,A,X[ 0],20,0xe9b6c7aaL);
973 R1(A,B,C,D,X[ 5], 5,0xd62f105dL);
974 R1(D,A,B,C,X[10], 9,0x02441453L);
975 R1(C,D,A,B,X[15],14,0xd8a1e681L);
976 R1(B,C,D,A,X[ 4],20,0xe7d3fbc8L);
977 R1(
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcISelDAGToDAG.cpp47 bool SelectADDRrr(SDValue N, SDValue &R1, SDValue &R2);
114 bool SparcDAGToDAGISel::SelectADDRrr(SDValue Addr, SDValue &R1, SDValue &R2) { argument
127 R1 = Addr.getOperand(0);
132 R1 = Addr;
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp211 static bool HasSameSymbol(const RelEntry &R0, const RelEntry &R1) { argument
212 return R0.Sym == R1.Sym;
215 static int CompareOffset(const RelEntry &R0, const RelEntry &R1) { argument
216 return (R0.Offset > R1.Offset) ? 1 : ((R0.Offset == R1.Offset) ? 0 : -1);
/external/llvm/lib/Target/R600/
H A DAMDILISelDAGToDAG.cpp54 bool SelectADDRParam(SDValue Addr, SDValue& R1, SDValue& R2);
55 bool SelectADDR(SDValue N, SDValue &R1, SDValue &R2);
56 bool SelectADDR64(SDValue N, SDValue &R1, SDValue &R2);
105 SDValue Addr, SDValue& R1, SDValue& R2) {
109 R1 = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
112 R1 = Addr;
116 R1 = Addr.getOperand(0);
119 R1 = Addr;
125 bool AMDGPUDAGToDAGISel::SelectADDR(SDValue Addr, SDValue& R1, SDValue& R2) { argument
130 return SelectADDRParam(Addr, R1, R
104 SelectADDRParam( SDValue Addr, SDValue& R1, SDValue& R2) argument
134 SelectADDR64(SDValue Addr, SDValue& R1, SDValue& R2) argument
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.cpp380 // offsets of R1 is not allowed.
384 .addReg(PPC::R1);
390 .addReg(PPC::R1);
401 // If there is a preferred stack alignment, align R1 now
410 .addReg(PPC::R1)
417 BuildMI(MBB, MBBI, dl, TII.get(PPC::STWUX), PPC::R1)
418 .addReg(PPC::R1, RegState::Kill)
419 .addReg(PPC::R1)
422 BuildMI(MBB, MBBI, dl, TII.get(PPC::STWU), PPC::R1)
423 .addReg(PPC::R1)
[all...]
H A DPPCRegisterInfo.cpp108 Reserved.set(PPC::R1);
223 .addReg(PPC::R1);
244 BuildMI(MBB, II, dl, TII.get(PPC::STWUX), PPC::R1)
246 .addReg(PPC::R1)
251 .addReg(PPC::R1)
256 .addReg(PPC::R1)
430 (is64Bit ? PPC::X1 : PPC::R1),
536 return TFI->hasFP(MF) ? PPC::R31 : PPC::R1;
/external/llvm/lib/Target/Hexagon/
H A DHexagonVarargsCallingConvention.h53 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3, Hexagon::R4,
109 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3, Hexagon::R4,
/external/clang/include/clang/Tooling/
H A DRefactoring.h89 bool operator()(const Replacement &R1, const Replacement &R2) const;

Completed in 802 milliseconds

1234