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

1 2 3 4 5 6

  /external/clang/test/PCH/
cxx-reference.h 3 typedef char (&LR);
8 char &lr = c; variable
10 LR &lrlr = c;
11 LR &&rrlr = c;
  /external/llvm/lib/CodeGen/
LiveRangeCalc.h 80 LiveRange &LR;
94 LiveInBlock(LiveRange &LR, MachineDomTreeNode *node, SlotIndex kill)
95 : LR(LR), DomNode(node), Kill(kill), Value(nullptr) {}
114 bool findReachingDefs(LiveRange &LR, MachineBasicBlock &KillMBB,
163 void extend(LiveRange &LR, SlotIndex Kill, unsigned PhysReg = 0);
168 void createDeadDefs(LiveRange &LR, unsigned Reg);
179 void extendToUses(LiveRange &LR, unsigned Reg);
214 /// @param LR The live range that is live-in to the block.
219 void addLiveInBlock(LiveRange &LR,
    [all...]
LiveRangeCalc.cpp 40 void LiveRangeCalc::createDeadDefs(LiveRange &LR, unsigned Reg) {
44 // LR.createDeadDef() will deduplicate.
57 // Create the def in LR. This may find an existing def.
58 LR.createDeadDef(Idx, *Alloc);
63 void LiveRangeCalc::extendToUses(LiveRange &LR, unsigned Reg) {
101 extend(LR, Idx, Reg);
127 Updater.setDest(&I->LR);
134 void LiveRangeCalc::extend(LiveRange &LR, SlotIndex Kill, unsigned PhysReg) {
143 if (LR.extendInBlock(Indexes->getMBBStartIdx(KillMBB), Kill))
150 if (findReachingDefs(LR, *KillMBB, Kill, PhysReg)
    [all...]
MachineVerifier.cpp 217 const LiveRange &LR);
219 const LiveRange &LR);
433 const LiveRange &LR) {
435 *OS << "- liverange: " << LR << "\n";
439 const LiveRange &LR) {
441 *OS << "- liverange: " << LR << "\n";
    [all...]
LiveIntervalAnalysis.cpp 145 if (LiveRange *LR = RegUnitRanges[i])
146 OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n';
237 void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
250 LRCalc->createDeadDefs(LR, *Supers);
254 // Now extend LR to reach all uses.
261 LRCalc->extendToUses(LR, Reg);
294 LiveRange *LR = RegUnitRanges[Unit];
295 if (!LR) {
296 LR = RegUnitRanges[Unit] = new LiveRange();
299 VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator())
    [all...]
RegAllocFast.cpp 234 void RAFast::addKillFlag(const LiveReg &LR) {
235 if (!LR.LastUse) return;
236 MachineOperand &MO = LR.LastUse->getOperand(LR.LastOpNum);
237 if (MO.isUse() && !LR.LastUse->isRegTiedToDefOperand(LR.LastOpNum)) {
238 if (MO.getReg() == LR.PhysReg)
241 LR.LastUse->addRegisterKilled(LR.PhysReg, TRI, true);
278 LiveReg &LR = *LRI
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
PointerArithChecker.cpp 44 const MemRegion *LR = LV.getAsRegion();
46 if (!LR || !RV.isConstant())
51 if (isa<VarRegion>(LR) || isa<CodeTextRegion>(LR) ||
52 isa<CompoundLiteralRegion>(LR)) {
PointerSubChecker.cpp 47 const MemRegion *LR = LV.getAsRegion();
50 if (!(LR && RR))
53 const MemRegion *BaseLR = LR->getBaseRegion();
  /external/clang/test/Lexer/
string-literal-encoding.c 12 wchar_t const *d = LR"(?????)"; // expected-error {{illegal character encoding in string literal}}
26 wchar_t const *d = LR"(foo ?????)"; // expected-error {{illegal character encoding in string literal}}
string_concat.cpp 18 const char* f = u8"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
27 const char16_t* l = u"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
36 const char32_t* r = U"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  /packages/apps/LegacyCamera/jni/
mosaic_renderer_jni.cpp 59 // to the {0,gPreviewImageWidth[LR]} input image frame coordinate system before
367 gPreviewImageWidth[LR] = widthLR;
368 gPreviewImageHeight[LR] = heightLR;
373 gPreviewImage[LR] = ImageUtils::allocateImage(gPreviewImageWidth[LR],
374 gPreviewImageHeight[LR], 4);
375 ClearPreviewImage(LR);
453 ImageUtils::freeImage(gPreviewImage[LR]);
482 gSurfTexRenderer[LR].InitializeGLProgram();
484 gYVURenderer[LR].InitializeGLProgram()
    [all...]
mosaic_renderer_jni.h 20 const int LR = 0; // Low-resolution mode
feature_mos_jni.cpp 53 // Variables to keep track of the mosaic computation progress for both LR & HR.
104 if(tWidth[LR]>180)
105 quarter_res[LR] = true;
282 tWidth[LR] = int(width / H2L_FACTOR);
283 tHeight[LR] = int(height / H2L_FACTOR);
287 tImage[LR][i] = ImageUtils::allocateImage(tWidth[LR], tHeight[LR],
293 AllocateTextureMemory(tWidth[HR], tHeight[HR], tWidth[LR], tHeight[LR]);
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-type-convert-construct.cpp 14 LRstr = LR"foo(a wide raw string)foo"; // expected-warning{{ISO C++11 does not allow conversion from string literal to 'wchar_t *'}}
  /packages/apps/Camera/jni/
mosaic_renderer_jni.h 20 const int LR = 0; // Low-resolution mode
mosaic_renderer_jni.cpp 59 // to the {0,gPreviewImageWidth[LR]} input image frame coordinate system before
390 gPreviewImageWidth[LR] = widthLR;
391 gPreviewImageHeight[LR] = heightLR;
394 gPreviewImage[LR] = ImageUtils::allocateImage(gPreviewImageWidth[LR],
395 gPreviewImageHeight[LR], 4);
472 ImageUtils::freeImage(gPreviewImage[LR]);
514 gSurfTexRenderer[LR].InitializeGLProgram();
516 gYVURenderer[LR].InitializeGLProgram();
523 gBufferInput[LR].InitializeGLContext()
    [all...]
feature_mos_jni.cpp 53 // Variables to keep track of the mosaic computation progress for both LR & HR.
104 if(tWidth[LR]>180)
105 quarter_res[LR] = true;
282 tWidth[LR] = int(width / H2L_FACTOR);
283 tHeight[LR] = int(height / H2L_FACTOR);
287 tImage[LR][i] = ImageUtils::allocateImage(tWidth[LR], tHeight[LR],
293 AllocateTextureMemory(tWidth[HR], tHeight[HR], tWidth[LR], tHeight[LR]);
    [all...]
  /external/libhevc/common/arm/
ihevc_mem_fns.s 90 MOV PC,LR
120 BXEQ LR
130 BX LR
162 BX LR
191 BXEQ LR
200 BX LR
234 BX LR
264 BXEQ LR
273 BX LR
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 92 LR RN 14
112 M_STR LR,pLinkRegister ;// Store Link Register on Stack
114 MOV LR,#0
118 STM pDst!,{temp2,temp1,Last,LR}
120 STM pDst!,{temp2,temp1,Last,LR}
122 STM pDst!,{temp2,temp1,Last,LR}
124 STM pDst!,{temp2,temp1,Last,LR}
126 STM pDst!,{temp2,temp1,Last,LR}
128 STM pDst!,{temp2,temp1,Last,LR}
130 STM pDst!,{temp2,temp1,Last,LR}
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 92 LR RN 14
112 M_STR LR,pLinkRegister ;// Store Link Register on Stack
114 MOV LR,#0
118 STM pDst!,{temp2,temp1,Last,LR}
120 STM pDst!,{temp2,temp1,Last,LR}
122 STM pDst!,{temp2,temp1,Last,LR}
124 STM pDst!,{temp2,temp1,Last,LR}
126 STM pDst!,{temp2,temp1,Last,LR}
128 STM pDst!,{temp2,temp1,Last,LR}
130 STM pDst!,{temp2,temp1,Last,LR}
    [all...]
  /external/clang/test/CodeGen/
string-literal-unicode-conversion.c 61 wchar_t const *i = LR"(7?????)";
string-literal.c 86 const wchar_t *l = LR"bar(KL)bar";
  /external/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 165 LiveRange &LR,
177 void extendToIndices(LiveRange &LR, ArrayRef<SlotIndex> Indices);
223 bool isLiveInToMBB(const LiveRange &LR,
225 return LR.liveAt(getMBBStartIdx(mbb));
228 bool isLiveOutOfMBB(const LiveRange &LR,
230 return LR.liveAt(getMBBEndIdx(mbb).getPrevSlot());
382 LiveRange *LR = RegUnitRanges[Unit];
383 if (!LR) {
385 RegUnitRanges[Unit] = LR = new LiveRange();
386 computeRegUnitRange(*LR, Unit)
    [all...]
LivePhysRegs.h 139 inline raw_ostream &operator<<(raw_ostream &OS, const LivePhysRegs& LR) {
140 LR.print(OS);
  /art/runtime/arch/arm/
registers_arm.h 47 LR = 14,

Completed in 1195 milliseconds

1 2 3 4 5 6