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

1 2 3 4 5 6 7 891011>>

  /external/llvm/lib/MC/
MCNullStreamer.cpp 82 virtual void EmitValueToOffset(const MCExpr *Offset,
MCPureStreamer.cpp 49 virtual void EmitValueToOffset(const MCExpr *Offset,
188 void MCPureStreamer::EmitValueToOffset(const MCExpr *Offset,
190 new MCOrgFragment(*Offset, Value, getCurrentSectionData());
MCDwarf.cpp 40 // Minimum line offset in a special line info. opcode. This value
599 if (VerboseAsm) Streamer.AddComment(Twine("Offset " + Twine(CFAOffset)));
614 int Offset = Dst.getOffset();
616 Offset -= CFAOffset;
617 Offset = Offset / dataAlignmentFactor;
619 if (Offset < 0) {
624 if (VerboseAsm) Streamer.AddComment(Twine("Offset ") + Twine(Offset));
625 Streamer.EmitSLEB128IntValue(Offset);
915 const MCExpr *offset = MakeStartMinusEndExpr(streamer, cieStart, *fdeStart, local
920 const MCExpr *offset = MakeStartMinusEndExpr(streamer, *SectionStart, local
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 404 // with no shift amount for the frame offset.
441 static inline unsigned getAM3Opc(AddrOpc Opc, unsigned char Offset,
444 return ((int)isSub << 8) | Offset | (IdxMode << 9);
491 static inline unsigned getAM5Opc(AddrOpc Opc, unsigned char Offset) {
493 return ((int)isSub << 8) | Offset;
ARMAsmBackend.cpp 62 // Name Offset (bits) Size (bits) Flags
212 // ARM PC-relative values are offset by 8.
216 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
239 // ARM PC-relative values are offset by 8.
273 // Offset by 8 just as above.
312 // The value doesn't encode the low bit (always zero) and is offset by
329 // The value doesn't encode the low two bits (always zero) and is offset by
347 // Offset by 4, and don't encode the low two bits. Two bytes of that
352 // Offset by 4 and don't encode the lower bit, which is always 0.
357 // Offset by 4 and don't encode the lower bit, which is always 0
    [all...]
ARMMachObjectWriter.cpp 295 // If this is a difference or a defined symbol plus an offset, then we need a
314 // an offset, it also needs a scattered relocation entry.
317 uint32_t Offset = Target.getConstant();
319 Offset += 1 << Log2Size;
320 if (Offset && SD && !Writer->doesSymbolRequireExternRelocation(SD))
350 // For external relocations, make sure to offset the fixup value to
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.h 44 /// MO_GOT - Represents the offset into the global offset table at which
48 /// MO_GOT_CALL - Represents the offset into the global offset table at
54 /// MO_GPREL - Represents the offset from the current gp value to be used
63 /// MO_TLSGD - Represents the offset into the global offset table at which
64 // the module ID and TSL block offset reside during execution (General
68 /// MO_GOTTPREL - Represents the offset from the thread pointer (Initial
72 /// MO_TPREL_HI/LO - Represents the hi and low part of the offset fro
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGStopElement.cpp 36 DEFINE_ANIMATED_NUMBER(SVGStopElement, SVGNames::offsetAttr, Offset, offset)
  /external/icu4c/layout/
LookupProcessor.cpp 122 Offset scriptListOffset, Offset featureListOffset, Offset lookupListOffset,
  /external/llvm/lib/CodeGen/
ELFWriter.cpp 393 // start in the right offset in the section
397 // GblSym->Value should contain the virtual offset inside the section.
405 // GblSym->Value should contain the symbol offset inside the section,
441 // as padding to ensure that the next field starts at the right offset.
491 // Resolve a constant expression which returns a (Constant, Offset)
493 // the offset 'Res.second', otherwise emit a global constant like
544 int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), idxVec);
545 return std::make_pair(ptrVal, Offset);
595 ELFSection &GblS, int64_t Offset) {
601 Offset);
    [all...]
  /frameworks/base/media/libeffects/lvm/lib/Bass/src/
LVDBE_Control.c 113 LVM_UINT16 Offset = (LVM_UINT16)((LVM_UINT16)pParams->SampleRate + (LVM_UINT16)(pParams->CentreFrequency * (1+LVDBE_FS_48000)));
125 (BQ_C32_Coefs_t *)&LVDBE_HPF_Table[Offset]);
137 (BP_C32_Coefs_t *)&LVDBE_BPF_Table[Offset]);
212 LVM_UINT16 dBOffset; /* Table offset */
  /external/clang/lib/Basic/
SourceManager.cpp 188 /// is a #line at the specified FID/Offset location which changes the presumed
190 void LineTableInfo::AddLineNote(int FID, unsigned Offset,
194 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
212 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, Kind,
221 void LineTableInfo::AddLineNote(int FID, unsigned Offset,
229 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
236 IncludeOffset = Offset-1;
248 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, FileKind,
254 /// it. If there is no line entry before Offset in FID, return null.
256 unsigned Offset) {
    [all...]
  /external/llvm/lib/Target/
TargetData.cpp 10 // This file defines target properties related to datatype size/offset/alignment
76 /// getElementContainingOffset - Given a valid offset into the structure,
78 unsigned StructLayout::getElementContainingOffset(uint64_t Offset) const {
80 std::upper_bound(&MemberOffsets[0], &MemberOffsets[NumElements], Offset);
81 assert(SI != &MemberOffsets[0] && "Offset not in structure type!");
83 assert(*SI <= Offset && "upper_bound didn't work");
84 assert((SI == &MemberOffsets[0] || *(SI-1) <= Offset) &&
85 (SI+1 == &MemberOffsets[NumElements] || *(SI+1) > Offset) &&
88 // Multiple fields can have the same offset if any of them are zero sized.
89 // For example, in { i32, [0 x i32], i32 }, searching for offset 4 will sto
    [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 71 uint64_t Size, uint32_t Offset,
83 outs() << " ('offset', " << Offset << ")\n";
114 StringRef Data = Obj.getData(Offset, Size);
152 Sect->Size, Sect->Offset, Sect->Align,
188 Sect->Size, Sect->Offset, Sect->Align,
  /external/libnfc-nxp/src/
phFriNfc_DesfireMap.c 239 uint8_t Offset)
248 /* store the offset in to map context*/
249 NdefMap->Offset = Offset;
251 if( (Offset == PH_FRINFC_NDEFMAP_SEEK_CUR) &&
256 Offset is set to Continue Operation */
303 uint8_t Offset)
321 Offset is set to Continue Operation */
332 NdefMap->Offset = Offset;
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 75 /// Offset - The offset of this fragment in its section. This is ~0 until
77 uint64_t Offset;
132 // Enforce invariant that fixups are in offset order.
303 /// Offset - The offset this fragment should start at.
304 const MCExpr *Offset;
312 Offset(&_Offset), Value(_Value) {}
317 const MCExpr &getOffset() const { return *Offset; }
519 /// Offset - The offset to apply to the fragment address to form this symbol'
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 227 /// UnfoldedOffset - An additional constant offset which added near the
228 /// use. This requires a temporary register, but the offset itself can
839 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
843 else if (Offset != 0)
844 ImmCost += APInt(64, Offset, true).getMinSignedBits();
914 /// this fixup needs, minus an offset (below).
917 /// Offset - A constant offset to be added to the LSRUse expression.
920 int64_t Offset;
    [all...]
  /external/llvm/include/llvm/ADT/
IntervalMap.h 383 /// @return (node, offset) for Position.
748 /// Entry - Each step in the path is a node pointer and an offset into that
753 unsigned offset;
755 Entry(void *Node, unsigned Size, unsigned Offset)
756 : node(Node), size(Size), offset(Offset) {}
758 Entry(NodeRef Node, unsigned Offset)
759 : node(&Node.subtree(0)), size(Node.size()), offset(Offset) {}
775 unsigned offset(unsigned Level) const { return path[Level].offset;
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp 228 unsigned Offset = VA.getLocMemOffset()+StackOffset;
233 if (Offset % 8 == 0) {
235 Offset,
246 Offset,
253 Offset+4,
269 Offset,
279 // Sparc is big endian, so add an offset based on the ObjectVT.
280 unsigned Offset = 4-std::max(1U, VA.getValVT().getSizeInBits()/8);
282 DAG.getConstant(Offset, MVT::i32));
318 // Remember the vararg offset for the va_start implementation
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 458 MachineInstr &MI = *II; // ; SPILL_CR <SrcReg>, <offset>, <FI>
550 // Figure out if the offset in the instruction is shifted right two bits. This
563 // Now add the frame object offset to the offset from r1.
564 int Offset = MFI->getObjectOffset(FrameIndex);
566 Offset += MI.getOperand(OffsetOperandNo).getImm();
568 Offset += MI.getOperand(OffsetOperandNo).getImm() << 2;
572 // to Offset to get the correct offset.
576 Offset += MFI->getStackSize()
    [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 84 CharUnits offset);
192 /// - the virtual offset is (memptr.ptr - 1)
197 /// - the virtual offset is (memptr.ptr)
202 /// to a vtable pointer from which the virtual offset is applied.
258 // offset within the vtable (+1 for the virtual flag on non-ARM).
266 // Apply the offset.
305 // Apply the offset, which we assume is non-null.
306 llvm::Value *Addr = Builder.CreateInBoundsGEP(Base, MemPtr, "memptr.offset");
317 /// Obligatory offset/adjustment diagram:
318 /// <-- offset --> <-- adjustment --
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 728 /// FindElementAtOffset - Given a type and a constant offset, determine whether
730 /// the specified offset. If so, fill them into NewIndices and return the
732 Type *InstCombiner::FindElementAtOffset(Type *Ty, int64_t Offset,
738 // might be zero (even if the offset isn't zero) if the indexed type
743 FirstIdx = Offset/TySize;
744 Offset -= FirstIdx*TySize;
747 if (Offset < 0) {
749 Offset += TySize;
750 assert(Offset >= 0);
752 assert((uint64_t)Offset < (uint64_t)TySize && "Out of range offset")
    [all...]
  /external/clang/lib/Lex/
PTHLexer.cpp 201 uint32_t Offset;
205 // Read the token offset from the side-table.
206 Offset = ReadLE32(CurPPCondPtr);
212 HashEntryI = TokBuf + Offset;
232 Offset = TmpOffset;
299 uint32_t Offset = ReadLE32(OffsetPtr);
300 return FileStartLoc.getLocWithOffset(Offset);
596 // return a variant that indicates whether or not there is an offset within
607 // Compute the offset of the token data within the buffer.
  /external/clang/include/clang/Basic/
SourceLocation.h 72 /// Technically, a source location is simply an offset into the manager's view
75 /// actually maintains two blocks of input buffers. One, starting at offset
77 /// starting at the highest possible offset and growing downwards, contains
108 /// \brief Return the offset into the manager's global input view.
128 /// \brief Return a source location with the specified offset from this
130 SourceLocation getLocWithOffset(int Offset) const {
131 assert(((getOffset()+Offset) & MacroIDBit) == 0 && "offset overflow");
133 L.ID = ID+Offset;
296 /// Offset pair. The first element is the FileID, the second is th
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 130 uint64_t Offset,
149 /// differences between the two addresses is the offset. It also returns the
371 /// Rewrite MI to access 'Offset' bytes from the FP. Return false if the
372 /// offset could not be handled directly in MI, and return the left-over
375 unsigned FrameReg, int &Offset,
379 unsigned FrameReg, int &Offset,

Completed in 1398 milliseconds

1 2 3 4 5 6 7 891011>>