HomeSort by relevance Sort by last modified time
    Searched refs:Offset (Results 151 - 175 of 439) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 33 unsigned Offset) const {
80 Offset += MO.getOffset();
87 return MCOperand::CreateExpr(MipsMCSymbolRefExpr::Create(Kind, Symbol, Offset,
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 55 // stack frame. ARM (especially Thumb) has small immediate offset to
443 /// getFrameIndexReference - Provide a base+offset reference to an FI slot for
461 int Offset = MFI->getObjectOffset(FI) + MFI->getStackSize();
462 int FPOffset = Offset - AFI->getFramePtrSpillOffset();
466 Offset += SPAdj;
468 return Offset - AFI->getGPRCalleeSavedArea1Offset();
470 return Offset - AFI->getGPRCalleeSavedArea2Offset();
472 return Offset - AFI->getDPRCalleeSavedAreaOffset();
480 Offset = FPOffset;
486 return Offset;
    [all...]
  /external/clang/lib/CodeGen/
ABIInfo.h 43 /// 'CoerceToType'). If an offset is specified (in UIntData), then the
44 /// argument passed is offset by some number of bytes in the memory
83 static ABIArgInfo getDirect(llvm::Type *T = 0, unsigned Offset = 0) {
84 return ABIArgInfo(Direct, T, Offset);
  /external/icu4c/layout/
MarkToLigaturePosnSubtables.cpp 64 Offset ligatureAttachOffset = SWAPW(ligatureArray->ligatureAttachTableOffsetArray[ligatureCoverage]);
75 Offset anchorTableOffset = SWAPW(componentRecord->ligatureAnchorTableOffsetArray[markClass]);
MultipleSubstSubtables.cpp 40 Offset sequenceTableOffset = SWAPW(sequenceTableOffsetArray[coverageIndex]);
  /external/libnfc-nxp/src/
phFriNfc_MifareStdMap.h 272 * \param[in] Offset Indicates whether the read operation shall start from the begining of the
273 * file/card storage \b or continue from the last offset. The last Offset set is stored
276 * start reading from the last offset set (continue where it has stopped before).
281 * \retval NFCSTATUS_INVALID_DEVICE_REQUEST If Previous Operation is Write Ndef and Offset
296 uint8_t Offset);
314 * \param[in] Offset Indicates whether the write operation shall start from the begining of the
315 * file/card storage \b or continue from the last offset. The last Offset set is stored
318 * start writing from the last offset set (continue where it has stopped before)
    [all...]
  /external/llvm/include/llvm/Object/
MachOObject.h 51 /// The offset to the start of the load command in memory.
52 uint64_t Offset;
106 StringRef getData(size_t Offset, size_t Size) const;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 105 uint64_t Offset; // Offset into the object for the relocation.
110 RelocationEntry(StringRef t, uint64_t offset, uint32_t data, int64_t addend)
111 : Target(t), Offset(offset), Data(data), Addend(addend),
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 359 MBlazeOperand &Offset = *(MBlazeOperand*)Operands[3];
362 SMLoc O = Offset.getStartLoc();
363 SMLoc E = Offset.getEndLoc();
370 if (!Offset.isReg() && !Offset.isImm()) {
371 Error(O, "offset must be a register or immediate");
376 if (Offset.isReg())
377 Op = MBlazeOperand::CreateMem(Base.getReg(), Offset.getReg(), S, E);
379 Op = MBlazeOperand::CreateMem(Base.getReg(), Offset.getImm(), S, E);
512 // replace the last two operands (base+offset) with a singl
    [all...]
  /external/llvm/lib/Target/
Target.cpp 95 unsigned long long Offset) {
97 return unwrap(TD)->getStructLayout(STy)->getElementContainingOffset(Offset);
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 147 uint64_t Offset = isSub ? -NumBytes : NumBytes;
149 getSUBriOpcode(Is64Bit, Offset) :
150 getADDriOpcode(Is64Bit, Offset);
154 while (Offset) {
155 uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset;
169 Offset -= ThisVal;
181 Offset -= ThisVal;
254 int Offset = 0;
259 Offset += PI->getOperand(2).getImm()
    [all...]
  /external/chromium/chrome/browser/ui/views/
pinned_contents_info_bubble.cc 16 // Arrow offset is calculated from the middle of the |position_relative_to|.
17 int offset = position_relative_to.x() + (position_relative_to.width() / 2); local
18 offset -= bubble_anchor_.x();
22 offset += kLeftMargin + insets.left() + 1;
23 bubble_border_->SetArrowOffset(offset, contents_size);
31 window_bounds->Offset(0, -(kTopMargin + 1));
theme_background.cc 56 origin.Offset(0, kCustomFrameBackgroundVerticalOffset + 1);
  /external/llvm/include/llvm/Analysis/
LoopPass.h 105 void dumpPassStructure(unsigned Offset);
RegionPass.h 110 void dumpPassStructure(unsigned Offset);
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 48 /// Loc is either a stack offset or a register number.
91 unsigned Offset, MVT LocVT,
95 Ret.Loc = Offset;
105 unsigned Offset, MVT LocVT,
108 Ret = getMem(ValNo, ValVT, Offset, LocVT, HTP);
MachineInstrBuilder.h 102 int Offset = 0,
104 MI->addOperand(MachineOperand::CreateCPI(Idx, Offset, TargetFlags));
115 int64_t Offset = 0,
117 MI->addOperand(MachineOperand::CreateGA(GV, Offset, TargetFlags));
164 // Add a displacement from an existing MachineOperand with an added offset.
  /external/llvm/include/llvm/MC/
MCObjectStreamer.h 73 virtual void EmitValueToOffset(const MCExpr *Offset, unsigned char Value);
  /external/llvm/include/llvm/Support/
MemoryBuffer.h 80 int64_t Offset = 0,
  /external/llvm/include/llvm/Target/
TargetFrameLowering.h 33 /// the offset to the locals area.
35 /// The offset to the local area is the offset from the stack pointer on
45 // Maps a callee saved register to a stack slot with a fixed offset.
48 int Offset; // Offset relative to stack pointer on function entry.
84 /// getOffsetOfLocalArea - This method returns the offset of the local area
93 /// Each entry in this array contains a <register,offset> pair, indicating the
94 /// fixed offset from the incoming stack pointer that each register should be
173 /// and offset used to reference a frame index location. The offset i
    [all...]
  /external/llvm/lib/Analysis/
RegionPass.cpp 169 void RGPassManager::dumpPassStructure(unsigned Offset) {
170 errs().indent(Offset*2) << "Region Pass Manager\n";
173 P->dumpPassStructure(Offset + 1);
174 dumpLastUses(P, Offset+1);
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 227 void MCObjectStreamer::EmitValueToOffset(const MCExpr *Offset,
230 if (Offset->EvaluateAsAbsolute(Res, getAssembler())) {
231 new MCOrgFragment(*Offset, Value, getCurrentSectionData());
241 MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext());
  /external/llvm/lib/Target/XCore/
XCoreInstrInfo.h 83 uint64_t Offset,
  /external/pcre/
pcre_scanner.h 69 // Return the byte-offset that the scanner is looking in the
71 int Offset() const;
162 // the offset into comments_ that has been returned by GetNextComments
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 29 typedef uint32_t Offset;
67 Offset off = (Offset) Out.tell();
134 io::Offset off;
185 io::Offset Emit(raw_ostream &out) {
190 io::Offset Emit(raw_ostream &out, Info &InfoObj) {
198 // Store the offset for the data of this bucket.
200 assert(B.off && "Cannot write a bucket at offset 0. Please add padding.");
217 io::Offset TableOff = out.tell();
292 // Each bucket is just a 32-bit offset into the hash table file
296 unsigned offset = ReadLE32(Bucket); local
    [all...]

Completed in 172 milliseconds

1 2 3 4 5 67 8 91011>>