HomeSort by relevance Sort by last modified time
    Searched defs:Offset (Results 126 - 150 of 433) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/sfntly/cpp/src/sfntly/table/core/
font_header_table.h 139 struct Offset {
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Control.c 272 LVM_INT16 Offset;
300 Offset = (LVM_INT16)(EffectLevel - 1 + TrebleBoostSteps * (pParams->SampleRate - TrebleBoostMinRate));
303 &LVM_TrebleBoostCoefs[Offset]);
343 LVM_UINT16 dBOffset; /* Table offset */
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_ExpandFrame_I_s.s 66 Offset RN 11
88 MUL Offset, iExpandPels, iPlaneStep ;// E*Step
107 SUB pDstTop, pTop, Offset
138 SUB pDstTop, pTop, Offset
168 SUB pDstRight, Temp, Offset
170 SUB pDstLeft, pSrcDstPlane, Offset
175 SUB Offset, iPlaneStep, iExpandPels
193 ADD pDstLeft, pDstLeft, Offset
194 ADD pDstRight, pDstRight, Offset
214 ADD pDstLeft, pDstLeft, Offset
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 24 typedef uint32_t Offset;
33 typedef uint64_t Offset;
46 typedef llvm::ELF::Elf32_Off Off; // File offset
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.cpp 47 uint32_t offset = 0; local
50 frag->setOffset(offset);
51 offset += frag->size();
69 uint32_t offset = 0; local
72 offset = got_base - (plt_base + 16);
74 offset = (plt_base + 16) - got_base;
90 data[4] = offset;
109 uint64_t PLTEntryAddress = plt_base + ARMPLT0::EntrySize; // Offset of PLT0
123 // Offset is the distance between the last PLT entry and the associated
125 int32_t Offset = (GOTEntryAddress - (PLTEntryAddress + 8))
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/error/
error.h 95 GetParseError_En(ok.Code()), ok.Offset());
106 ParseResult(ParseErrorCode code, size_t offset) : code_(code), offset_(offset) {}
110 //! Get the error offset, if \ref IsError(), 0 otherwise.
111 size_t Offset() const { return offset_; }
124 //! Update error code and offset.
125 void Set(ParseErrorCode code, size_t offset = 0) { code_ = code; offset_ = offset; }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
filehc.h 18 DWORD Offset;
  /art/compiler/debug/dwarf/
debug_frame_opcode_writer.h 73 void ALWAYS_INLINE RelOffset(Reg reg, int offset) {
74 Offset(reg, offset - current_cfa_offset_);
83 void ALWAYS_INLINE RelOffsetForMany(Reg reg_base, int offset,
92 RelOffset(Reg(reg_base.num() + i), offset); local
93 offset += reg_size;
117 void ALWAYS_INLINE Offset(Reg reg, int offset) {
120 int factored_offset = FactorDataOffset(offset); // May change sign.
191 void ALWAYS_INLINE DefCFA(Reg reg, int offset) {
    [all...]
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 366 /// and offset.
367 SourceLocation LoadSourceLocation(void *Data, unsigned Offset) {
369 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(unsigned));
374 /// offset.
375 void *LoadPointer(void *Data, unsigned Offset) {
377 memcpy(&Result, static_cast<char *>(Data) + Offset, sizeof(void*));
398 unsigned Offset = getDataLength(Qualifier->getPrefix());
401 return LoadSourceLocation(Data, Offset);
407 return SourceRange(LoadSourceLocation(Data, Offset),
408 LoadSourceLocation(Data, Offset + sizeof(unsigned)))
    [all...]
  /external/clang/lib/Format/
WhitespaceManager.cpp 75 const FormatToken &Tok, unsigned Offset, unsigned ReplaceChars,
80 SourceLocation Start = Tok.getStartOfNonWhitespace().getLocWithOffset(Offset);
497 unsigned Offset =
500 Text.append(EscapedNewlineColumn - Offset - 1, ' ');
502 Offset = 0;
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 45 /// The offset of each token in AsmToks within AsmString.
77 // Since we're using original tokens, apply that offset.
83 // The total length we've consumed is the relative offset
106 unsigned &Offset) override {
107 return TheParser.getActions().LookupInlineAsmField(Base, Member, Offset,
124 // Try to find a token whose offset matches the first token.
146 // Compute an offset into the inline asm buffer.
151 unsigned Offset = SMLoc.getPointer() - LBuf->getBufferStart();
153 // Figure out which token that offset points into.
155 std::lower_bound(AsmTokOffsets.begin(), AsmTokOffsets.end(), Offset);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
PaddingChecker.cpp 170 CharUnits Offset = ASTContext.toCharUnitsFromBits(RL.getFieldOffset(0));
179 PaddingSum += (FieldOffset - Offset);
180 Offset = FieldOffset + FieldSize;
182 PaddingSum += RL.getSize() - Offset;
188 /// This will usually be at offset 0.
190 /// offset.
193 /// 3. If no fields can fit, pad by rounding the current offset up to the
196 /// 4. Increment the current offset by the size of the chosen field.
199 /// 7. Add tail padding by rounding the current offset up to the structure
  /external/clang/lib/Tooling/Core/
Replacement.cpp 34 Replacement::Replacement(StringRef FilePath, unsigned Offset, unsigned Length,
36 : FilePath(FilePath), ReplacementRange(Offset, Length),
66 // FIXME: We cannot check whether Offset + Length is in the file, as
148 unsigned Offset = 0;
151 Offset += R.getReplacementText().size() - R.getLength();
160 return Position + Offset;
309 Offset(R.getOffset() + (MergeSecond ? 0 : Delta)), Length(R.getLength()),
321 unsigned End = Offset + Text.size();
327 StringRef Head = TextRef.substr(0, R.getOffset() + Delta - Offset);
328 StringRef Tail = TextRef.substr(REnd - Offset);
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 79 size_t Offset = GetBufferOffset();
80 assert((Offset & 3) == 0 && "Not 32-bit aligned");
81 return Offset / 4;
103 /// Backpatch a 32-bit word in the output at the given bit offset
  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 43 /// Offset - This is an offset from the base Value*.
44 int64_t Offset;
46 explicit MachinePointerInfo(const Value *v = nullptr, int64_t offset = 0)
47 : V(v), Offset(offset) {}
50 int64_t offset = 0)
51 : V(v), Offset(offset) {}
56 return MachinePointerInfo(V.get<const Value*>(), Offset+O)
    [all...]
StackMaps.h 144 int64_t Offset;
145 Location() : Type(Unprocessed), Size(0), Reg(0), Offset(0) {}
146 Location(LocationType Type, unsigned Size, unsigned Reg, int64_t Offset)
147 : Type(Type), Size(Size), Reg(Reg), Offset(Offset) {}
231 /// instruction are stored, and outputs a label to record the offset of
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnit.h 38 /// Returns the Unit that contains the given section offset in the
40 virtual DWARFUnit *getUnitForOffset(uint32_t Offset) const = 0;
73 UnitType *getUnitForOffset(uint32_t Offset) const override {
75 this->begin(), this->end(), Offset,
92 uint32_t Offset = 0;
93 while (Data.isValidOffset(Offset)) {
96 Index.getFromOffset(Offset));
97 if (!U->extract(Data, &Offset))
100 Offset = this->back()->getNextUnitOffset();
122 uint32_t Offset;
    [all...]
  /external/llvm/include/llvm/MC/
MCSymbol.h 50 /// A symbol can contain an Offset, or Value, or be Common, but never more
126 /// The offset to apply to the fragment address to form this symbol's value.
127 uint64_t Offset;
154 Offset = 0;
317 "Cannot get offset for a common/variable symbol");
318 return Offset;
323 "Cannot set offset for a common/variable symbol");
324 Offset = Value;
  /external/llvm/include/llvm/Object/
ELFYAML.h 134 llvm::yaml::Hex64 Offset;
  /external/llvm/include/llvm/Support/
ARMWinEH.h 251 /// | Ep Start Idx | Cond |Res| Epilogue Start Offset |
255 /// epilogue scopes, which are sorted by their offset.
257 /// Epilogue Start Offset: 18-bit field encoding the offset of epilogue relative
352 size_t Offset = HeaderWords(*this);
353 return makeArrayRef(&Data[Offset], EpilogueCount());
357 const size_t Offset = HeaderWords(*this)
360 reinterpret_cast<const uint8_t *>(&Data[Offset]);
GraphWriter.h 247 unsigned Offset =
249 DestPort = static_cast<int>(Offset);
  /external/llvm/lib/CodeGen/
LocalStackSlotAllocation.cpp 52 int64_t LocalOffset; // Local offset of the frame idx referenced
55 FrameRef(MachineBasicBlock::iterator I, int64_t Offset, int Idx) :
56 MI(I), LocalOffset(Offset), FrameIdx(Idx) {}
70 void AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, int64_t &Offset,
75 int64_t &Offset, unsigned &MaxAlign);
133 /// AdjustStackOffset - Helper function used to adjust the stack frame offset.
135 int FrameIdx, int64_t &Offset,
140 Offset += MFI->getObjectSize(FrameIdx);
149 Offset = (Offset + Align - 1) / Align * Align
    [all...]
StackMaps.cpp 142 unsigned Offset = 0;
147 Offset = TRI->getSubRegIdxOffset(SubRegIdx);
149 Locs.emplace_back(Location::Register, RC->getSize(), DwarfRegNum, Offset);
190 if (Loc.Offset)
191 OS << " + " << Loc.Offset;
199 OS << "+" << Loc.Offset;
202 OS << "Constant " << Loc.Offset;
205 OS << "Constant Index " << Loc.Offset;
209 << ", .short " << Loc.Reg << ", .int " << Loc.Offset << "]\n";
309 if (Loc.Type == Location::Constant && !isInt<32>(Loc.Offset)) {
    [all...]
StackProtector.cpp 336 unsigned AddressSpace, Offset;
337 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
339 ConstantInt::get(Type::getInt32Ty(RI->getContext()), Offset);
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugFrame.cpp 32 FrameEntry(FrameKind K, uint64_t Offset, uint64_t Length)
33 : Kind(K), Offset(Offset), Length(Length) {}
39 virtual uint64_t getOffset() const { return Offset; }
42 /// starting at *Offset and ending at EndOffset. If everything
43 /// goes well, *Offset should be equal to EndOffset when this method
45 virtual void parseInstructions(DataExtractor Data, uint32_t *Offset,
57 /// \brief Offset of this entry in the section.
58 uint64_t Offset;
100 void FrameEntry::parseInstructions(DataExtractor Data, uint32_t *Offset,
    [all...]

Completed in 361 milliseconds

1 2 3 4 56 7 8 91011>>