Searched refs:VR (Results 1 - 23 of 23) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefCapturedBlockVarChecker.cpp71 const VarRegion *VR = I.getCapturedRegion(); local
72 const VarDecl *VD = VR->getDecl();
94 R->addVisitor(new FindLastStoreBRVisitor(*V, VR));
H A DMacOSXAPIChecker.cpp86 if (const VarRegion *VR = dyn_cast<VarRegion>(R))
87 os << " the local variable '" << VR->getDecl()->getName() << '\'';
H A DStackAddrEscapeChecker.cpp76 else if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
78 << VR->getString() << '\'';
79 range = VR->getDecl()->getSourceRange();
231 const VarRegion *VR = cast<VarRegion>(cb.V[i].first->getBaseRegion()); local
232 os << *VR->getDecl()
H A DNSErrorChecker.cpp191 if (const VarRegion *VR = R->getAs<VarRegion>())
193 stackReg = dyn_cast<StackArgumentsSpaceRegion>(VR->getMemorySpace()))
195 return VR->getValueType();
H A DUnixAPIChecker.cpp173 if (const VarRegion *VR = dyn_cast<VarRegion>(R))
174 os << " the local variable '" << VR->getDecl()->getName() << '\'';
H A DRetainCountChecker.cpp2598 const VarRegion *VR = I.getCapturedRegion(); local
2599 if (VR->getSuperRegion() == R) {
2600 VR = MemMgr.getVarRegion(VR->getDecl(), LC);
2602 Regions.push_back(VR);
/external/libyuv/files/source/
H A Drow_posix.cc1282 #define VR 102 /* static_cast<int8>(1.596 * 64 + 0.5) */ macro
1287 #define BR UR * 128 + VR * 128
1306 { UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR },
[all...]
H A Drow_win.cc1484 #define VR 102 /* static_cast<int8>(1.596 * 64 + 0.5) */ macro
1489 #define BR UR * 128 + VR * 128
1496 UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR
[all...]
H A Drow_common.cc434 #define VR 102 /* static_cast<int8>(1.596 * 64 + 0.5) */ macro
439 #define BR UR * 128 + VR * 128
455 uint32 r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
467 *r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
/external/llvm/include/llvm/CodeGen/
H A DMachineSSAUpdater.h44 /// VR - Current virtual register whose uses are being updated.
45 unsigned VR; member in class:llvm::MachineSSAUpdater
/external/clang/test/SemaCXX/
H A Daddr-of-overloaded-function.cpp189 void VR() volatile __restrict {};
201 X = &Qualifiers::VR; // expected-error{{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() volatile restrict': different qualifiers (none vs volatile and restrict)}}
/external/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp423 if (const VarRegion *VR = dyn_cast<VarRegion>(MR))
424 return isLive(VR, true);
510 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{ argument
511 const StackFrameContext *VarContext = VR->getStackFrame();
525 if (LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, VR->getDecl()))
532 const_cast<SymbolReaper*>(this)->includedRegionCache[VR];
541 reapedStore.getStoreManager().includedInBindings(store, VR);
H A DMemRegion.cpp706 if (const VarRegion *VR = dyn_cast<VarRegion>(I.getOriginalRegion()))
707 if (VR->getDecl() == VD)
1290 const VarRegion *VR = 0; local
1294 VR = MemMgr.getVarRegion(VD, this);
1299 VR = MemMgr.getVarRegion(VD, LC);
1300 OriginalVR = VR;
1303 VR = MemMgr.getVarRegion(VD, MemMgr.getUnknownRegion());
1307 return std::make_pair(VR, OriginalVR);
1334 const VarRegion *VR = 0; local
1336 llvm::tie(VR, OriginalV
[all...]
H A DBugReporterVisitors.cpp421 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
424 if (DS->getSingleDecl() == VR->getDecl()) {
426 InitE = VR->getDecl()->getInit();
461 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
462 const ParmVarDecl *Param = cast<ParmVarDecl>(VR->getDecl());
508 const VarRegion *VR = dyn_cast<VarRegion>(R); local
514 if (VR) {
520 if (const VarRegion *OriginalR = BDR->getOriginalRegion(VR)) {
570 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
571 const ParmVarDecl *Param = cast<ParmVarDecl>(VR
[all...]
H A DRegionStore.cpp939 const VarRegion *VR = BI.getCapturedRegion(); local
940 const VarDecl *VD = VR->getDecl();
942 AddToWorkList(VR);
944 else if (Loc::isLocType(VR->getValueType())) {
950 SVal V = RM.getBinding(B, loc::MemRegionVal(VR));
1237 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
1244 return CastRetrievedVal(getBindingForVar(B, VR), VR, T, false);
2053 if (const VarRegion *VR = dyn_cast<VarRegion>(baseR)) {
2054 if (SymReaper.isLive(VR))
[all...]
/external/llvm/lib/CodeGen/
H A DMachineSSAUpdater.cpp56 VR = V;
57 VRC = MRI->getRegClass(VR);
/external/llvm/include/llvm/Support/
H A DPatternMatch.h286 Class *&VR; member in struct:llvm::PatternMatch::bind_ty
287 bind_ty(Class *&V) : VR(V) {}
292 VR = CV;
351 uint64_t &VR; member in struct:llvm::PatternMatch::bind_const_intval_ty
352 bind_const_intval_ty(uint64_t &V) : VR(V) {}
358 VR = CV->getZExtValue();
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h597 bool isLive(const VarRegion *VR, bool includeStoreBindings = false) const;
H A DMemRegion.h670 const VarRegion *getOriginalRegion(const VarRegion *VR) const;
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2157 static const uint16_t VR[] = { local
2164 const unsigned Num_VR_Regs = array_lengthof(VR);
2342 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
2451 static const uint16_t VR[] = { local
2458 const unsigned Num_VR_Regs = array_lengthof( VR);
2680 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
3758 static const uint16_t VR[] = { local
3764 const unsigned NumVRs = array_lengthof(VR);
3981 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4001 RegsToPass.push_back(std::make_pair(VR[VR_id
4137 static const uint16_t VR[] = { local
[all...]
/external/chromium/third_party/libjingle/source/talk/session/phone/testdata/
H A Dvideo.rtpdump1552 j� "��]e��߿��a�)�f�2rz�_��|�D�A���;�� 㒼��O �^�A�^&��KM��DNXI���NX��;���Z-n���� /__�{`�J��u����&I��*��К�ߊ���g�/"��y7�����0�.�鎀Y�-��]�xn��ހ�'�&� �$�.��X ~�ٿ�G��4a�֠���ڃl@8K��??]�7��6:q ��/�ۡ���.�$���n ���'�y�fe��?�}>�n5G�VR��w)%�[��Tt22�Yn�5l��E�>O&�d �;!OU5-֪e|OA�C+�O��yX��{�5FA �����%c�`�]˖�Eh/�du�˟\{���/я7x�v=��Š:r�� �P,��_+Hf#}��I��Y���O�P��~I����߻�~2N+3<���� �c�y5�:[�����j)�um\o����U;�[Ľc��wO�j">�G[a/�zT��W�#�g��鑪kk�Е#T� ��j���Ð�>rn�?�.��f���r�!��`~Bx�?c����c6>�}'�A~~M�W�/2�c)��KN:��������v[�X�%���d��O�w�D��(ώ��JLʘI3�8�g�A_wC�6�q0n^5m�}������ ��ܘ��Rc�|eI��q֮�4�o�<�7��Ϗ�^�#x��ΐ�>sn�����.��f��r�!�b)=��"E���zc�N�
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp1750 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg(); local
1751 if (!TargetRegisterInfo::isVirtualRegister(VR))
1753 MachineInstr *Def = MRI->getVRegDef(VR);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp2774 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg(); local
2775 if (!TargetRegisterInfo::isVirtualRegister(VR))
2777 MachineInstr *Def = MRI->getVRegDef(VR);

Completed in 537 milliseconds