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

1 2 3 4 5 67 8 91011>>

  /external/icu4c/layout/
ContextualSubstSubtables.cpp 118 le_bool ContextualSubstitutionBase::matchGlyphCoverages(const Offset *coverageTableOffsetArray, le_uint16 glyphCount,
130 Offset coverageTableOffset = SWAPW(coverageTableOffsetArray[glyph]);
201 Offset subRuleSetTableOffset = SWAPW(subRuleSetTableOffsetArray[coverageIndex]);
208 Offset subRuleTableOffset =
253 Offset subClassSetTableOffset = SWAPW(subClassSetTableOffsetArray[setClass]);
260 Offset subClassRuleTableOffset =
378 Offset chainSubRuleSetTableOffset = SWAPW(chainSubRuleSetTableOffsetArray[coverageIndex]);
386 Offset chainSubRuleTableOffset =
456 Offset chainSubClassSetTableOffset = SWAPW(chainSubClassSetTableOffsetArray[setClass]);
464 Offset chainSubClassRuleTableOffset
    [all...]
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/llvm/include/llvm/CodeGen/
AsmPrinter.h 325 void printOffset(int64_t Offset, raw_ostream &OS) const;
345 /// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo"
348 void EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset,
351 /// EmitLabelPlusOffset - Emit something like ".long Label+Offset"
354 void EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset,
385 /// EmitSectionOffset - Emit the 4-byte offset of Label from the start of
387 /// supports it (e.g. cygwin) or by emitting it as an offset from a label at
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);
  /external/llvm/lib/CodeGen/
StackProtector.cpp 164 unsigned AddressSpace, Offset;
165 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
167 ConstantInt::get(Type::getInt32Ty(RI->getContext()), Offset);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 81 /// data fragment, at the offset specified by the fixup and following the
92 unsigned Offset = Fixup.getOffset();
115 CurVal |= (uint64_t)((uint8_t)Data[Offset + Idx]) << (i*8);
124 Data[Offset + Idx] = (uint8_t)((CurVal >> (i*8)) & 0xff);
135 // name offset bits flags
  /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
86 static ABIArgInfo getDirect(llvm::Type *T = 0, unsigned Offset = 0,
88 return ABIArgInfo(Direct, T, Offset, false, false, Padding);
  /external/clang/lib/Edit/
Commit.cpp 20 SourceLocation Loc = SM.getLocForStartOfFile(Offset.getFID());
21 Loc = Loc.getLocWithOffset(Offset.getOffset());
185 data.Offset = Offs;
200 data.Offset = Offs;
215 data.Offset = Offs;
284 if (act.Offset.getFID() == Offs.getFID() &&
285 Offs > act.Offset && Offs < act.Offset.getWithOffset(act.Length))
  /external/libnfc-nxp/src/
phFriNfc_MifareStdMap.h 276 * \param[in] Offset Indicates whether the read operation shall start from the begining of the
277 * file/card storage \b or continue from the last offset. The last Offset set is stored
280 * start reading from the last offset set (continue where it has stopped before).
285 * \retval NFCSTATUS_INVALID_DEVICE_REQUEST If Previous Operation is Write Ndef and Offset
300 uint8_t Offset);
318 * \param[in] Offset Indicates whether the write operation shall start from the begining of the
319 * file/card storage \b or continue from the last offset. The last Offset set is stored
322 * 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/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 356 MBlazeOperand &Offset = *(MBlazeOperand*)Operands[3];
359 SMLoc O = Offset.getStartLoc();
360 SMLoc E = Offset.getEndLoc();
367 if (!Offset.isReg() && !Offset.isImm()) {
368 Error(O, "offset must be a register or immediate");
373 if (Offset.isReg())
374 Op = MBlazeOperand::CreateMem(Base.getReg(), Offset.getReg(), S, E);
376 Op = MBlazeOperand::CreateMem(Base.getReg(), Offset.getImm(), S, E);
509 // 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);
  /frameworks/compile/mclinker/include/mcld/LD/
LDSection.h 79 /// offset - An integer specifying the offset of this section in the file.
80 /// Before layouting, output's LDSection::offset() should return zero.
81 uint64_t offset() const function in class:mcld::LDSection
86 /// Before layouting, output's LDSection::offset() should return zero.
125 void setOffset(uint64_t Offset)
126 { m_Offset = Offset; }
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 61 /// unknown offset bits. This does not include alignment padding caused by
62 /// known offset bits.
65 /// @param KnownBits Number of known low offset bits.
72 /// WorstCaseAlign - Assuming only the low KnownBits bits in Offset are exact,
84 static inline unsigned WorstCaseAlign(unsigned Offset, unsigned LogAlign,
87 Offset += UnknownPadding(LogAlign, KnownBits);
90 return RoundUpToAlignment(Offset, 1u << LogAlign);
106 /// BasicBlockInfo - Information about the offset and size of a single
109 /// Offset - Distance from the beginning of the function to the beginning
112 /// The offset is always aligned as required by the basic block
    [all...]
ARMISelDAGToDAG.cpp 115 bool SelectLdStSOReg(SDValue N, SDValue &Base, SDValue &Offset, SDValue &Opc);
118 SDValue &Offset, SDValue &Opc);
119 bool SelectAddrMode2Base(SDValue N, SDValue &Base, SDValue &Offset,
121 return SelectAddrMode2Worker(N, Base, Offset, Opc) == AM2_BASE;
124 bool SelectAddrMode2ShOp(SDValue N, SDValue &Base, SDValue &Offset,
126 return SelectAddrMode2Worker(N, Base, Offset, Opc) == AM2_SHOP;
129 bool SelectAddrMode2(SDValue N, SDValue &Base, SDValue &Offset,
131 SelectAddrMode2Worker(N, Base, Offset, Opc);
132 // return SelectAddrMode2ShOp(N, Base, Offset, Opc);
138 SDValue &Offset, SDValue &Opc)
    [all...]
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 151 uint64_t Offset = isSub ? -NumBytes : NumBytes;
157 ? getSUBriOpcode(Is64Bit, Offset)
158 : getADDriOpcode(Is64Bit, Offset);
163 while (Offset) {
164 uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset;
178 Offset -= ThisVal;
198 Offset -= ThisVal;
272 int Offset = 0;
278 Offset += PI->getOperand(2).getImm()
    [all...]
  /external/aac/libAACdec/src/
aac_rom.h 136 UCHAR Offset;
  /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/MC/
MCObjectStreamer.h 75 virtual bool 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 29 /// the offset to the locals area.
31 /// The offset to the local area is the offset from the stack pointer on
41 // Maps a callee saved register to a stack slot with a fixed offset.
44 int Offset; // Offset relative to stack pointer on function entry.
80 /// getOffsetOfLocalArea - This method returns the offset of the local area
89 /// Each entry in this array contains a <register,offset> pair, indicating the
90 /// fixed offset from the incoming stack pointer that each register should be
169 /// and offset used to reference a frame index location. The offset i
    [all...]

Completed in 1023 milliseconds

1 2 3 4 5 67 8 91011>>