/external/clang/test/PCH/ |
cxx-reference.h | 4 typedef char (&&RR); 9 char &&rr = 'c'; variable 12 RR &lrrr = c; 13 RR &&rrrr = 'c';
|
/external/webkit/Source/WebCore/loader/cache/ |
CachedResourceHandle.h | 86 template <class R, class RR> bool operator==(const CachedResourceHandle<R>& h, const RR* res) 90 template <class R, class RR> bool operator==(const RR* res, const CachedResourceHandle<R>& h) 94 template <class R, class RR> bool operator!=(const CachedResourceHandle<R>& h, const RR* res) 98 template <class R, class RR> bool operator!=(const RR* res, const CachedResourceHandle<R>& h)
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
PointerSubChecker.cpp | 47 const MemRegion *RR = RV.getAsRegion(); 49 if (!(LR && RR)) 53 const MemRegion *BaseRR = RR->getBaseRegion();
|
/external/llvm/lib/CodeGen/ |
RegisterClassInfo.cpp | 57 BitVector RR = TRI->getReservedRegs(*MF); 58 if (RR != Reserved) 60 Reserved = RR;
|
AggressiveAntiDepBreaker.cpp | 408 AggressiveAntiDepState::RegisterReference RR = { &MO, RC }; 409 RegRefs.insert(std::make_pair(Reg, RR)); 483 AggressiveAntiDepState::RegisterReference RR = { &MO, RC }; 484 RegRefs.insert(std::make_pair(Reg, RR)); [all...] |
/system/core/libmincrypt/tools/ |
DumpPublicKey.java | 75 BigInteger RR = R.multiply(R).mod(N); // 2^4096 mod N 94 long rr = RR.mod(B).longValue(); local 95 result.append(rr); 101 RR = RR.divide(B);
|
/external/clang/test/CodeGen/ |
union.c | 39 union RR {_Bool a : 1;} RRU;
|
/external/openssl/crypto/bn/ |
bn_mont.c | 394 BN_init(&(ctx->RR)); 406 BN_free(&(mont->RR)); 420 R= &(mont->RR); /* grab RR as a temp */ 512 /* setup RR for conversions */ 513 BN_zero(&(mont->RR)); 514 if (!BN_set_bit(&(mont->RR),mont->ri*2)) goto err; 515 if (!BN_mod(&(mont->RR),&(mont->RR),&(mont->N),ctx)) goto err; 527 if (!BN_copy(&(to->RR),&(from->RR))) return NULL [all...] |
bn.h | 332 BIGNUM RR; /* used to convert to montgomery form */ 502 int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p, 566 (r),(a),&((mont)->RR),(mont),(ctx)) [all...] |
/external/opencv/cv/src/ |
cvundistort.cpp | 379 double A[3][3], RR[3][3], k[5]={0,0,0,0,0}, fx, fy, ifx, ify, cx, cy; 381 CvMat _RR=cvMat(3, 3, CV_64F, RR); 470 double xx = RR[0][0]*x + RR[0][1]*y + RR[0][2]; 471 double yy = RR[1][0]*x + RR[1][1]*y + RR[1][2]; 472 double ww = 1./(RR[2][0]*x + RR[2][1]*y + RR[2][2]) [all...] |
/external/grub/stage2/ |
iso9660.h | 155 struct RR { 157 } rr; member in union:rock_ridge::__anon5703 194 struct rock_ridge *rr; member in union:RR_ptr
|
fsys_iso9660.c | 211 if (rr_ptr.rr->version != 1) 217 "`%c%c'\n", rr_ptr.rr->version, 218 rr_ptr.rr->signature & 0xFF, 219 rr_ptr.rr->signature >> 8); 224 switch (rr_ptr.rr->signature) 227 if ( rr_ptr.rr->len >= (4+sizeof(struct RR))) 228 rr_flag &= rr_ptr.rr->u.rr.flags.l; 231 name = rr_ptr.rr->u.nm.name [all...] |
/external/llvm/include/llvm/ADT/ |
ImmutableSet.h | 514 TreeTy *RR = getRight(R); 516 if (getHeight(RR) >= getHeight(RL)) 517 return createNode(createNode(L,V,RL), R, RR); 524 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR)); [all...] |
/external/skia/src/core/ |
SkGeometry.cpp | 159 Sk64 RR, tmp; 161 RR.setMul(B,B); 164 RR.sub(tmp); 165 if (RR.isNeg()) 167 SkFixed R = RR.getSqrt(); [all...] |
/external/valgrind/main/VEX/priv/ |
host_ppc_defs.c | 323 am->Pam.RR.base = base; 324 am->Pam.RR.index = idx; 333 return PPCAMode_RR( am->Pam.RR.index, am->Pam.RR.base ); 350 ppHRegPPC(am->Pam.RR.base); 352 ppHRegPPC(am->Pam.RR.index); 365 addHRegUse(u, HRmRead, am->Pam.RR.base); 366 addHRegUse(u, HRmRead, am->Pam.RR.index); 379 am->Pam.RR.base = lookupHRegRemap(m, am->Pam.RR.base) [all...] |
host_arm_defs.h | 170 } RR; 211 } RR;
|
host_arm_defs.c | 276 //am->ARMam1.RR.base =lookupHRegRemap(m, am->ARMam1.RR.base); 277 //am->ARMam1.RR.index = lookupHRegRemap(m, am->ARMam1.RR.index); 298 am->ARMam2.RR.base = base; 299 am->ARMam2.RR.index = index; 312 ppHRegARM(am->ARMam2.RR.base); 314 ppHRegARM(am->ARMam2.RR.index); 328 // addHRegUse(u, HRmRead, am->ARMam2.RR.base); 329 // addHRegUse(u, HRmRead, am->ARMam2.RR.index) [all...] |
host_ppc_defs.h | 215 } RR;
|
/external/opencv/ml/src/ |
mlboost.cpp | 581 // RR - ... both send to the right 584 double LL = 0, RL = 0, LR, RR; 598 RR = (sum_abs + sum)*0.5; 602 // LR of them are sent to the left by primary split, and RR - to the right. 603 // now iteratively compute LL, LR, RL and RR for every possible surrogate split value. 613 if( LL + RR > best_val && sorted[i].val + epsilon < sorted[i+1].val ) 615 best_val = LL + RR; 621 RL += w; RR -= w; 646 // RR - ... both send to the right [all...] |
mltree.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | 200 llvm::StringRef LR = L[0], RR = R[0].Data; 205 if (LR.size() == RR.size()) { 207 if (LR != RR) 219 RR = R[RI].Data; 220 } else if (LR.size() < RR.size()) { 222 if (!RR.startswith(LR)) 226 RR = RR.substr(LR.size()); 230 if (!LR.startswith(RR)) 234 LR = LR.substr(RR.size()) [all...] |
/external/openssl/include/openssl/ |
bn.h | 332 BIGNUM RR; /* used to convert to montgomery form */ 502 int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p, 566 (r),(a),&((mont)->RR),(mont),(ctx)) [all...] |
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/openssl/ |
bn.h | 301 BIGNUM RR; /* used to convert to montgomery form */ 464 int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p, 527 (r),(a),&((mont)->RR),(mont),(ctx))
|
/external/llvm/lib/Target/X86/ |
X86FastISel.cpp | 80 bool X86FastEmitLoad(EVT VT, const X86AddressMode &AM, unsigned &RR); 310 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, 313 if (RR != 0) { 314 ResultReg = RR; [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
DAGCombiner.cpp | [all...] |