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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Support/
StringRefMemoryObject.cpp 24 uint64_t Offset = Addr - Base;
25 if (Addr >= Base + getExtent() || Offset + Size > getExtent() || Addr < Base)
27 memcpy(Buf, Bytes.data() + Offset, Size);
  /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;
  /frameworks/compile/mclinker/include/mcld/Support/
SystemUtils.h 20 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/include/llvm/IR/
MDBuilder.h 85 uint64_t Offset;
88 TBAAStructField(uint64_t Offset, uint64_t Size, MDNode *TBAA) :
89 Offset(Offset), Size(Size), TBAA(TBAA) {}
97 /// with the given name, a list of pairs (offset, field type in the type DAG).
103 /// given name, an offset and a parent in the TBAA type DAG.
105 uint64_t Offset = 0);
108 /// base type, access type and offset relative to the base type.
110 uint64_t Offset);
  /external/llvm/lib/DebugInfo/
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...]
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 40 // all stack references are done thought a positive offset
46 // Offset
59 // Offset - offset from sp after stack allocation on function prologue
106 int64_t Offset = 0;
110 Offset = std::max(Offset, -MFI->getObjectOffset(I));
115 Offset = RoundUpToAlignment(Offset + Size, Size);
126 Offset = RoundUpToAlignment(Offset + MFI->getObjectSize(I), MaxAlign)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrBuilder.h 37 int64_t Offset = 0;
40 PseudoSourceValue::getFixedStack(FI), Offset),
43 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 26 class Offset {
28 explicit Offset(size_t val) : val_(val) {}
42 std::ostream& operator<<(std::ostream& os, const Offset& offs);
45 class FrameOffset : public Offset {
47 explicit FrameOffset(size_t val) : Offset(val) {}
54 class ThreadOffset : public Offset {
56 explicit ThreadOffset(size_t val) : Offset(val) {}
60 class MemberOffset : public Offset {
62 explicit MemberOffset(size_t val) : Offset(val) {}
  /external/chromium_org/chrome/test/chromedriver/
basic_types.cc 13 void WebPoint::Offset(int x_, int y_) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_memory.h 89 * Offset of a field in a struct, in bytes.
91 #define Offset(TYPE, MEMBER) ((uintptr_t)&(((TYPE *)NULL)->MEMBER))
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
texture_builtins.py 8 Offset = 2
83 if variant & Offset:
84 print "\n (declare (const_in) " + vec_type("i", sampler_dim) + " offset)",
97 if variant & Offset:
98 print "(var_ref offset)",
230 generate_fiu_sigs("txl", "1D", Offset)
231 generate_fiu_sigs("txl", "2D", Offset)
232 generate_fiu_sigs("txl", "3D", Offset)
233 generate_fiu_sigs("txl", "1DArray", Offset)
234 generate_fiu_sigs("txl", "2DArray", Offset)
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/
font_factory.h 97 struct Offset {
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
big_glyph_metrics.h 27 struct Offset {
ebdt_table.h 29 struct Offset {
97 CALLER_ATTACH BitmapGlyph* Glyph(int32_t offset,
small_glyph_metrics.h 28 struct Offset {
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
horizontal_device_metrics_table.h 58 struct Offset {
horizontal_metrics_table.h 60 struct Offset {
66 // Offset within an hMetric
  /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,
39 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.
47 /// at offset 0.

Completed in 2600 milliseconds

1 2 3 4 5 6 7 8 91011>>