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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
DelayMix_16x16.c 32 LVM_INT16 *pOffset, /* Delay offset */
36 LVM_INT16 Offset = *pOffset;
42 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) + (LVM_INT32)delay[Offset]) >> 1);
46 delay[Offset] = *src;
47 Offset++;
52 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) - (LVM_INT32)delay[Offset]) >> 1);
56 delay[Offset] = *src;
57 Offset++;
61 if (Offset >= size)
63 Offset = 0
    [all...]
DelayWrite_32.c 31 LVM_UINT16 *pOffset, /* Delay offset */
35 LVM_INT16 Offset = (LVM_INT16)*pOffset;
39 delay[Offset] = *src;
40 Offset++;
44 if (Offset >= size)
46 Offset = 0;
50 /* Update the offset */
51 *pOffset = (LVM_UINT16)Offset;
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugMacro.cpp 59 uint32_t Offset = 0;
60 while (data.isValidOffset(Offset)) {
64 E.Type = data.getULEB128(&Offset);
81 E.Line = data.getULEB128(&Offset);
83 E.MacroStr = data.getCStr(&Offset);
87 E.Line = data.getULEB128(&Offset);
89 E.File = data.getULEB128(&Offset);
95 E.ExtConstant = data.getULEB128(&Offset);
97 E.ExtStr = data.getCStr(&Offset);
DWARFDebugLoc.cpp 20 OS << format("0x%8.8x: ", L.Offset);
25 OS << "Beginning address offset: " << format("0x%016" PRIx64, E.Begin)
27 OS.indent(Indent) << " Ending address offset: "
39 uint32_t Offset = 0;
40 while (data.isValidOffset(Offset+AddressSize-1)) {
43 Loc.Offset = Offset;
48 RelocAddrMap::const_iterator AI = RelocMap.find(Offset);
49 // 1. A beginning address offset. ...
50 E.Begin = data.getUnsigned(&Offset, AddressSize)
    [all...]
DWARFDebugAbbrev.cpp 20 Offset = 0;
29 Offset = BeginOffset;
79 uint32_t Offset = 0;
81 while (Data.isValidOffset(Offset)) {
82 uint32_t CUAbbrOffset = Offset;
83 if (!AbbrDecls.extract(Data, &Offset))
96 OS << format("Abbrev table for offset: 0x%8.8" PRIx64 "\n", I.first);
DWARFUnitIndex.cpp 45 uint32_t Offset = 0;
46 if (!Header.parse(IndexData, &Offset))
50 Offset, Header.NumBuckets * (8 + 4) +
61 Rows[i].Signature = IndexData.getU64(&Offset);
65 auto Index = IndexData.getU32(&Offset);
76 ColumnKinds[i] = static_cast<DWARFSectionKind>(IndexData.getU32(&Offset));
91 Contrib[i].Offset = IndexData.getU32(&Offset);
98 Contrib[i].Length = IndexData.getU32(&Offset);
139 OS << format("[0x%08x, 0x%08x) ", Contrib.Offset,
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
SystemUtils.h 22 typedef off_t Offset;
  /external/clang/test/CodeGenCXX/
2010-03-09-AnonAggregate.cpp 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents;
  /external/llvm/lib/Target/SystemZ/
SystemZInstrBuilder.h 37 int64_t Offset = 0;
39 MachinePointerInfo::getFixedStack(MF, FI, Offset), Flags,
41 return MIB.addFrameIndex(FI).addImm(Offset).addReg(0).addMemOperand(MMO);
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_Control.c 82 LVM_INT16 Offset;
118 Offset = (LVM_INT16)(pParams->SpeakerType + pParams->SourceFormat*(1+LVCS_EX_HEADPHONES));
120 pInstance->VolCorrect = pLVCS_VolCorrectTable[Offset];
130 Gain = (LVM_UINT32)(pOutputGainTable[Offset].Loss * LVM_MAXINT_16);
131 Gain = (LVM_UINT32)pOutputGainTable[Offset].UnprocLoss * (Gain >> 15);
175 Offset = (LVM_INT16)(pParams->SpeakerType + pParams->SourceFormat*(1+LVCS_EX_HEADPHONES));
177 pInstance->VolCorrect = pLVCS_VolCorrectTable[Offset];
LVCS_Equaliser.c 61 LVM_UINT16 Offset;
78 Offset = (LVM_UINT16)(pParams->SampleRate + (pParams->SpeakerType * (1+LVM_FS_48000)));
83 Coeffs.A0 = (LVM_INT16) pEqualiserCoefTable[Offset].A0;
84 Coeffs.A1 = (LVM_INT16) pEqualiserCoefTable[Offset].A1;
85 Coeffs.A2 = (LVM_INT16) pEqualiserCoefTable[Offset].A2;
86 Coeffs.B1 = (LVM_INT16)-pEqualiserCoefTable[Offset].B1;
87 Coeffs.B2 = (LVM_INT16)-pEqualiserCoefTable[Offset].B2;
99 switch(pEqualiserCoefTable[Offset].Scale)
  /art/runtime/
offsets.h 27 class Offset {
29 explicit Offset(size_t val) : val_(val) {}
43 std::ostream& operator<<(std::ostream& os, const Offset& offs);
46 class FrameOffset : public Offset {
48 explicit FrameOffset(size_t val) : Offset(val) {}
55 class ThreadOffset : public Offset {
57 explicit ThreadOffset(size_t val) : Offset(val) {}
61 class MemberOffset : public Offset {
63 explicit MemberOffset(size_t val) : Offset(val) {}
  /external/clang/include/clang/Basic/
AddressSpaces.h 25 /// This uses a high starting offset so as not to conflict with any address
28 Offset = 0xFFFF00,
30 opencl_global = Offset,
40 Count = Last-Offset
  /external/clang/include/clang/Tooling/
ReplacementsYaml.h 36 : FilePath(""), Offset(0), Length(0), ReplacementText("") {}
39 : FilePath(R.getFilePath()), Offset(R.getOffset()),
43 return clang::tooling::Replacement(FilePath, Offset, Length,
48 unsigned int Offset;
57 Io.mapRequired("Offset", Keys->Offset);
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 23 unsigned Offset = 1;
24 while (Offset < S.size() && isIdentifierBody(S[Offset]))
25 ++Offset;
27 return S.substr(0, Offset).str();
133 // Parse this offset.
138 unsigned long long Offset = 0;
139 (void)LineStr.substr(0, Idx).getAsInteger(10, Offset);
141 CurrentLayout.FieldOffsets.push_back(Offset);
143 // Skip over this offset, the following comma, and any spaces
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_type_hash.h 26 sptr Offset;
30 DynamicTypeInfo(const char *MDTN, sptr Offset, const char *STN)
31 : MostDerivedTypeName(MDTN), Offset(Offset), SubobjectTypeName(STN) {}
37 /// Get the offset from the most-derived type to this base class.
38 sptr getOffset() const { return Offset; }
39 /// Get the name of the most-derived type at the specified offset.
50 /// at offset 0.
  /external/libchrome/sandbox/linux/bpf_dsl/
codegen.cc 61 return Program(program_.rbegin() + Offset(head), program_.rend());
90 return Append(code, k, Offset(jt), Offset(jf));
101 CHECK_EQ(0U, Offset(jt)) << "ICE: Failed to setup next instruction";
108 if (Offset(target) <= range) {
113 if (Offset(equivalent_.at(target)) <= range) {
118 Node jump = Append(BPF_JMP | BPF_JA, Offset(target), 0, 0);
142 size_t CodeGen::Offset(Node target) const {
143 CHECK_LT(target, program_.size()) << "Bogus offset target node";
  /external/llvm/include/llvm/CodeGen/
DwarfStringPoolEntry.h 22 unsigned Offset;
41 unsigned getOffset() const { return I->second.Offset; }
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugAbbrev.h 21 uint32_t Offset;
30 uint32_t getOffset() const { return Offset; }
DWARFDebugLoc.h 34 /// The beginning offset where this location list is stored in the debug_loc
36 unsigned Offset;
67 unsigned Offset;
DWARFDebugRangeList.h 26 // A beginning address offset. This address offset has the size of an
31 // An ending address offset. This address offset again has the size of
38 // which consists of a 0 for the beginning address offset
39 // and a 0 for the ending address offset.
44 // 1. The value of the largest representable address offset
59 // Offset in .debug_ranges section.
60 uint32_t Offset;
  /external/llvm/include/llvm/IR/
MDBuilder.h 134 uint64_t Offset;
137 TBAAStructField(uint64_t Offset, uint64_t Size, MDNode *TBAA) :
138 Offset(Offset), Size(Size), TBAA(TBAA) {}
146 /// with the given name, a list of pairs (offset, field type in the type DAG).
152 /// given name, an offset and a parent in the TBAA type DAG.
154 uint64_t Offset = 0);
157 /// base type, access type and offset relative to the base type.
159 uint64_t Offset, bool IsConstant = false);
  /external/llvm/include/llvm/MC/
MachineLocation.h 11 // from a base address plus an offset. Register indirection can be specified by
12 // explicitly passing an offset to the constructor.
29 int Offset; // Displacement if not register.
37 : IsRegister(false), Register(0), Offset(0) {}
40 : IsRegister(true), Register(R), Offset(0) {}
41 /// Create a register-indirect location with an offset.
43 : IsRegister(false), Register(R), Offset(O) {}
47 Offset == Other.Offset;
55 int getOffset() const { return Offset; }
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 35 size_t Offset; // Offset from the beginning of the frame;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFI386.h 54 uint64_t Offset = RelI->getOffset();
60 DEBUG(dbgs() << "\t\tIn Section " << SectionID << " Offset " << Offset
66 RelocationEntry RE(SectionID, Offset, RelType, 0, -1, 0, 0, 0, false, 0);
80 RelocationEntry(SectionID, Offset, RelType, 0, TargetSectionID,
87 RelocationEntry(TargetSectionID, Offset, RelType, 0);
92 RelocationEntry RE = RelocationEntry(SectionID, Offset, RelType,
108 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
125 DEBUG(dbgs() << "\t\tOffset: " << RE.Offset
142 DEBUG(dbgs() << "\t\tOffset: " << RE.Offset
    [all...]

Completed in 1275 milliseconds

1 2 3 4 5 6 7 8 91011>>