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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
exec-got-1.d 3 Offset .*
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
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;
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...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
OsPath.c 63 INTN Offset;
92 for (Offset = Length; Offset > 0; Offset--) {
93 if ((Return[Offset] == '/') || (Return[Offset] == '\\')) {
94 Return[Offset] = '\0';
133 INTN Offset;
143 for (Offset = 0; Offset < Length; Offset++) {
    [all...]
  /external/clang/test/CodeGenCXX/
2010-03-09-AnonAggregate.cpp 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents;
  /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...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 55 OMX_INT Offset = *pOffset;
58 armAssert(Offset>=0 && Offset<=7);
63 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
90 OMX_INT Offset = *pOffset;
98 armAssert(Offset>=0 && Offset<=7);
103 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM_Bitstream.c 55 OMX_INT Offset = *pOffset;
58 armAssert(Offset>=0 && Offset<=7);
63 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
90 OMX_INT Offset = *pOffset;
98 armAssert(Offset>=0 && Offset<=7);
103 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM_Bitstream.c 55 OMX_INT Offset = *pOffset;
58 armAssert(Offset>=0 && Offset<=7);
63 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
90 OMX_INT Offset = *pOffset;
98 armAssert(Offset>=0 && Offset<=7);
103 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
    [all...]
  /art/runtime/
offsets.h 28 class Offset {
30 explicit Offset(size_t val) : val_(val) {}
44 std::ostream& operator<<(std::ostream& os, const Offset& offs);
47 class FrameOffset : public Offset {
49 explicit FrameOffset(size_t val) : Offset(val) {}
56 class ThreadOffset : public Offset {
58 explicit ThreadOffset(size_t val) : Offset(val) {}
65 class MemberOffset : public Offset {
67 explicit MemberOffset(size_t val) : Offset(val) {}
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/
PchAudio.asl 27 Offset(0x00), // 0x4C, Dock Control Register
30 Offset(0x01), // 04Dh, Dock Status Register
34 Offset(0x08), // 0x54, Power Management Control and Status Register
PchPcie.asl 26 Offset(0x10), // LCTL - Link Control Register
29 Offset(0x12), // LSTS - Link Status Register
32 Offset(0x1A), // SLSTS[7:0] - Slot Status Register
39 Offset(0x20), // RSTS - Root Status Register
  /device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/
I440FxPiix4.h 33 #define POWER_MGMT_REGISTER_PIIX4(Offset) PCI_LIB_ADDRESS (0, 1, 3, (Offset))
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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.
26 int Offset = 0; // Displacement if not register.
38 /// Create a register-indirect location with an offset.
39 MachineLocation(unsigned R, int O) : Register(R), Offset(O) {}
43 Offset == Other.Offset;
51 int getOffset() const { return Offset; }
54 void setOffset(int O) { Offset = O; }
60 Offset = 0
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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.
26 int Offset = 0; // Displacement if not register.
38 /// Create a register-indirect location with an offset.
39 MachineLocation(unsigned R, int O) : Register(R), Offset(O) {}
43 Offset == Other.Offset;
51 int getOffset() const { return Offset; }
54 void setOffset(int O) { Offset = O; }
60 Offset = 0
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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.
26 int Offset = 0; // Displacement if not register.
38 /// Create a register-indirect location with an offset.
39 MachineLocation(unsigned R, int O) : Register(R), Offset(O) {}
43 Offset == Other.Offset;
51 int getOffset() const { return Offset; }
54 void setOffset(int O) { Offset = O; }
60 Offset = 0
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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.
26 int Offset = 0; // Displacement if not register.
38 /// Create a register-indirect location with an offset.
39 MachineLocation(unsigned R, int O) : Register(R), Offset(O) {}
43 Offset == Other.Offset;
51 int getOffset() const { return Offset; }
54 void setOffset(int O) { Offset = O; }
60 Offset = 0
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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.
26 int Offset = 0; // Displacement if not register.
38 /// Create a register-indirect location with an offset.
39 MachineLocation(unsigned R, int O) : Register(R), Offset(O) {}
43 Offset == Other.Offset;
51 int getOffset() const { return Offset; }
54 void setOffset(int O) { Offset = O; }
60 Offset = 0
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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.
26 int Offset = 0; // Displacement if not register.
38 /// Create a register-indirect location with an offset.
39 MachineLocation(unsigned R, int O) : Register(R), Offset(O) {}
43 Offset == Other.Offset;
51 int getOffset() const { return Offset; }
54 void setOffset(int O) { Offset = O; }
60 Offset = 0
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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.
26 int Offset = 0; // Displacement if not register.
38 /// Create a register-indirect location with an offset.
39 MachineLocation(unsigned R, int O) : Register(R), Offset(O) {}
43 Offset == Other.Offset;
51 int getOffset() const { return Offset; }
54 void setOffset(int O) { Offset = O; }
60 Offset = 0
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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.
26 int Offset = 0; // Displacement if not register.
38 /// Create a register-indirect location with an offset.
39 MachineLocation(unsigned R, int O) : Register(R), Offset(O) {}
43 Offset == Other.Offset;
51 int getOffset() const { return Offset; }
54 void setOffset(int O) { Offset = O; }
60 Offset = 0
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mt/
badsignedimmhigh.s 0 ; Offset greater than #32767 should cause an error.
badunsignedimmlow.s 0 ; Offset less than #0 should cause an error.
  /external/clang/include/clang/Basic/
AddressSpaces.h 25 /// This uses a high starting offset so as not to conflict with any address
28 Offset = 0x7FFF00,
30 opencl_global = Offset,
40 Count = Last-Offset
  /external/llvm/lib/Target/PowerPC/
PPCInstrBuilder.h 29 /// reference has base register as the FrameIndex offset until it is resolved.
30 /// This allows a constant offset to be specified as well...
33 addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0,
36 return MIB.addImm(Offset).addFrameIndex(FI);
38 return MIB.addFrameIndex(FI).addImm(Offset);

Completed in 2146 milliseconds

1 2 3 4 5 6 7 8 91011>>