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

1 2 3

  /external/libyuv/files/source/
row_common.cc 1241 int vr = -yuvconstants->kUVToRB[1]; local
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonGenInsert.cpp 196 unsigned operator[](unsigned VR) const {
197 const_iterator F = find(VR);
253 const BitTracker::RegisterCell &lookup(unsigned VR) {
254 unsigned RInd = TargetRegisterInfo::virtReg2Index(VR);
260 CP = CVect[RInd] = &BT.lookup(VR);
364 void insert(unsigned VR);
365 void remove(unsigned VR);
412 void OrderedRegisterList::insert(unsigned VR) {
413 iterator L = std::lower_bound(Seq.begin(), Seq.end(), VR, Ord);
415 Seq.push_back(VR);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefCapturedBlockVarChecker.cpp 68 const VarRegion *VR = I.getCapturedRegion();
69 const VarDecl *VD = VR->getDecl();
93 *V, VR, /*EnableNullFPSuppression*/ false));
MacOSXAPIChecker.cpp 86 if (const VarRegion *VR = dyn_cast<VarRegion>(R))
87 os << " the local variable '" << VR->getDecl()->getName() << '\'';
StackAddrEscapeChecker.cpp 76 else if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
78 << VR->getString() << '\'';
79 range = VR->getDecl()->getSourceRange();
194 const MemRegion *vR = val.getAsRegion();
195 if (!vR)
201 isa<BlockDataRegion>(vR))
205 dyn_cast<StackSpaceRegion>(vR->getMemorySpace())) {
209 V.push_back(std::make_pair(region, vR));
240 const VarRegion *VR = cast<VarRegion>(cb.V[i].first->getBaseRegion());
241 os << *VR->getDecl(
    [all...]
NSErrorChecker.cpp 193 if (const VarRegion *VR = R->getAs<VarRegion>())
195 stackReg = dyn_cast<StackArgumentsSpaceRegion>(VR->getMemorySpace()))
197 return VR->getValueType();
UnixAPIChecker.cpp 192 if (const VarRegion *VR = dyn_cast<VarRegion>(R))
193 os << " the local variable '" << VR->getDecl()->getName() << '\'';
  /external/llvm/lib/ProfileData/
InstrProf.cpp 389 ValueProfRecord *VR = getFirstValueProfRecord(this);
391 VR->deserializeTo(Record, VMap);
392 VR = getValueProfRecordNext(VR);
417 ValueProfRecord *VR = getFirstValueProfRecord(this);
419 if (VR->Kind > IPVK_Last)
421 VR = getValueProfRecordNext(VR);
422 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize)
461 ValueProfRecord *VR = getFirstValueProfRecord(this)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineSSAUpdater.h 44 /// VR - Current virtual register whose uses are being updated.
45 unsigned VR;
  /external/opencv3/modules/cudev/include/opencv2/cudev/block/detail/
reduce_key_val.hpp 249 template <class KP, class KR, class VP, class VR, class Cmp>
250 __device__ static void reduce(KP skeys, KR key, VP svals, VR val, uint tid, Cmp cmp)
311 template <int I, class KP, class KR, class VP, class VR, class Cmp> struct Unroll
313 __device__ static void loop(KP skeys, KR key, VP svals, VR val, uint tid, Cmp cmp)
316 Unroll<I / 2, KP, KR, VP, VR, Cmp>::loop(skeys, key, svals, val, tid, cmp);
320 template <class KP, class KR, class VP, class VR, class Cmp> struct Unroll<0, KP, KR, VP, VR, Cmp>
322 __device__ __forceinline__ static void loop(KP, KR, VP, VR, uint, Cmp)
331 template <class KP, class KR, class VP, class VR, class Cmp>
332 __device__ static void reduce(KP skeys, KR key, VP svals, VR val, uint tid, Cmp cmp
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
reduce_key_val.hpp 314 template <class KP, class KR, class VP, class VR, class Cmp>
315 static __device__ void reduce(KP skeys, KR key, VP svals, VR val, unsigned int tid, Cmp cmp)
374 template <unsigned int I, class KP, class KR, class VP, class VR, class Cmp>
377 static __device__ void loopShfl(KR key, VR val, Cmp cmp, unsigned int N)
380 Unroll<I / 2, KP, KR, VP, VR, Cmp>::loopShfl(key, val, cmp, N);
382 static __device__ void loop(KP skeys, KR key, VP svals, VR val, unsigned int tid, Cmp cmp)
385 Unroll<I / 2, KP, KR, VP, VR, Cmp>::loop(skeys, key, svals, val, tid, cmp);
388 template <class KP, class KR, class VP, class VR, class Cmp>
389 struct Unroll<0, KP, KR, VP, VR, Cmp>
391 static __device__ void loopShfl(KR, VR, Cmp, unsigned int
    [all...]
  /device/google/marlin/
thermal-engine-marlin.conf 51 [VR-EMMC]
  /external/libvpx/libvpx/third_party/libyuv/source/
row_gcc.cc     [all...]
row_win.cc 52 #define VR -102 /* round(-1.596 * 64) */
57 #define BR (VR * 128 + YGB)
65 { 0, VR, 0, VR, 0, VR, 0, VR, 0, VR, 0, VR, 0, VR, 0, VR,
    [all...]
  /external/clang/test/SemaCXX/
addr-of-overloaded-function.cpp 217 void VR() volatile __restrict {};
229 X = &Qualifiers::VR; // expected-error-re{{assigning to 'void (test1::Qualifiers::*)(){{( __attribute__\(\(thiscall\)\))?}}' from incompatible type 'void (test1::Qualifiers::*)(){{( __attribute__\(\(thiscall\)\))?}} volatile __restrict': different qualifiers (none vs volatile and restrict)}}
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 430 if (const VarRegion *VR = dyn_cast<VarRegion>(MR))
431 return isLive(VR, true);
520 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{
521 const StackFrameContext *VarContext = VR->getStackFrame();
535 if (LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, VR->getDecl()))
542 const_cast<SymbolReaper*>(this)->includedRegionCache[VR];
551 reapedStore.getStoreManager().includedInBindings(store, VR);
MemRegion.cpp 754 if (const VarRegion *VR = dyn_cast<VarRegion>(I.getOriginalRegion()))
755 if (VR->getDecl() == VD)
    [all...]
BugReporterVisitors.cpp 418 /// \p VR.
419 static bool isInitializationOfVar(const ExplodedNode *N, const VarRegion *VR) {
428 if (DS->getSingleDecl() != VR->getDecl())
431 const MemSpaceRegion *VarSpace = VR->getMemorySpace();
437 assert(VR->getDecl()->isStaticLocal() && "non-static stackless VarRegion");
441 assert(VR->getDecl()->hasLocalStorage());
459 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
460 if (isInitializationOfVar(Pred, VR)) {
462 InitE = VR->getDecl()->getInit();
505 if (const VarRegion *VR = dyn_cast<VarRegion>(R))
    [all...]
RegionStore.cpp     [all...]
  /external/valgrind/VEX/priv/
host_ppc_defs.h 56 #define VR(_mode64, _enc, _ix64, _ix32) \
99 ST_IN HReg hregPPC_VR20 ( Bool mode64 ) { return VR (mode64, 20, 31, 33); }
100 ST_IN HReg hregPPC_VR21 ( Bool mode64 ) { return VR (mode64, 21, 32, 34); }
101 ST_IN HReg hregPPC_VR22 ( Bool mode64 ) { return VR (mode64, 22, 33, 35); }
102 ST_IN HReg hregPPC_VR23 ( Bool mode64 ) { return VR (mode64, 23, 34, 36); }
103 ST_IN HReg hregPPC_VR24 ( Bool mode64 ) { return VR (mode64, 24, 35, 37); }
104 ST_IN HReg hregPPC_VR25 ( Bool mode64 ) { return VR (mode64, 25, 36, 38); }
105 ST_IN HReg hregPPC_VR26 ( Bool mode64 ) { return VR (mode64, 26, 37, 39); }
106 ST_IN HReg hregPPC_VR27 ( Bool mode64 ) { return VR (mode64, 27, 38, 40); }
112 ST_IN HReg hregPPC_VR29 ( Bool mode64 ) { return VR (mode64, 29, 43, 45);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEFrameLowering.cpp 151 // load $vr, FI
152 // copy ccond, $vr
157 unsigned VR = MRI.createVirtualRegister(RC);
160 TII.loadRegFromStack(MBB, I, VR, FI, RC, &RegInfo, 0);
162 .addReg(VR, RegState::Kill);
166 // copy $vr, ccond
167 // store $vr, FI
172 unsigned VR = MRI.createVirtualRegister(RC);
175 BuildMI(MBB, I, I->getDebugLoc(), TII.get(TargetOpcode::COPY), VR)
177 TII.storeRegToStack(MBB, I, VR, true, FI, RC, &RegInfo, 0)
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfData.inc 508 ValueProfRecord *VR = getFirstValueProfRecord(VPD);
513 serializeValueProfRecordFrom(VR, Closure, Kind, NumValueSites);
514 VR = getValueProfRecordNext(VR);
  /external/llvm/include/llvm/ProfileData/
InstrProfData.inc 508 ValueProfRecord *VR = getFirstValueProfRecord(VPD);
513 serializeValueProfRecordFrom(VR, Closure, Kind, NumValueSites);
514 VR = getValueProfRecordNext(VR);
  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 58 VR = V;
59 VRC = MRI->getRegClass(VR);
  /external/opencv3/modules/cudev/include/opencv2/cudev/warp/detail/
reduce_key_val.hpp 219 template <class KP, class KR, class VP, class VR, class Cmp>
220 __device__ static void reduce(KP skeys, KR key, VP svals, VR val, uint tid, Cmp cmp)

Completed in 1820 milliseconds

1 2 3