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

1 2 3 4 56 7 8 91011>>

  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.h 145 bool needsFrameBaseReg(MachineInstr *MI, int64_t Offset) const;
148 int64_t Offset) const;
150 unsigned BaseReg, int64_t Offset) const;
151 bool isFrameOffsetLegal(const MachineInstr *MI, int64_t Offset) const;
ARMBaseRegisterInfo.cpp 613 // Conservatively estimate whether the negative offset from the frame
931 needsFrameBaseReg(MachineInstr *MI, int64_t Offset) const {
937 // to materialize the offset if it won't fit in the literal field. Estimate
940 // we don't know everything for certain yet) whether this offset is likely
963 // Approximate the offset and see if it's legal for the instruction.
964 // Note that the incoming offset is based on the SP value at function entry,
971 // Estimate an offset from the frame pointer.
    [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/Blackfin/
BlackfinISelDAGToDAG.cpp 54 bool SelectADDRspii(SDValue Addr, SDValue &Base, SDValue &Offset);
98 SDValue &Offset) {
102 Offset = CurDAG->getTargetConstant(0, MVT::i32);
110 // Constant positive word offset from frame index
112 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
  /external/llvm/lib/Target/MBlaze/
MBlazeRegisterInfo.cpp 161 int Offset = (spOffset < 0) ? (stackSize - spOffset) : spOffset;
162 Offset += MI.getOperand(oi).getImm();
164 DEBUG(dbgs() << "Offset : " << Offset << "\n" << "<--------->\n");
166 MI.getOperand(oi).ChangeToImmediate(Offset);
172 // Set the stack offset where GP must be saved/loaded from.
  /external/icu4c/layout/
AnchorTables.cpp 83 Offset dtxOffset = SWAPW(xDeviceTableOffset);
84 Offset dtyOffset = SWAPW(yDeviceTableOffset);
ValueRecords.cpp 93 Offset dtOffset = getFieldValue(valueFormat, vrfXPlaDevice);
104 Offset dtOffset = getFieldValue(valueFormat, vrfYPlaDevice);
115 Offset dtOffset = getFieldValue(valueFormat, vrfXAdvDevice);
126 Offset dtOffset = getFieldValue(valueFormat, vrfYAdvDevice);
197 Offset dtOffset = getFieldValue(index, valueFormat, vrfXPlaDevice);
208 Offset dtOffset = getFieldValue(index, valueFormat, vrfYPlaDevice);
219 Offset dtOffset = getFieldValue(index, valueFormat, vrfXAdvDevice);
230 Offset dtOffset = getFieldValue(index, valueFormat, vrfYAdvDevice);
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...]
  /external/libnfc-nxp/src/
phFriNfc_DesfireMap.h 215 * \param[in] Offset Indicates whether the read operation shall start from the begining of the
216 * file/card storage \b or continue from the last offset. The last Offset set is stored
219 * start reading from the last offset set (continue where it has stopped before).
224 * \retval NFCSTATUS_INVALID_DEVICE_REQUEST If Previous Operation is Write Ndef and Offset
240 uint8_t Offset);
257 * \param[in] Offset Indicates whether the write operation shall start from the begining of the
258 * file/card storage \b or continue from the last offset. The last Offset set is stored
261 * start writing from the last offset set (continue where it has stopped before)
    [all...]
phFriNfc_MifareULMap.h 129 #define PH_FRINFC_NDEFMAP_MFUL_OTP_OFFSET 3 /*!< To initialise the Offset */
183 * \param[in] Offset Indicates whether the read operation shall start from the begining of the
184 * file/card storage \b or continue from the last offset. The last Offset set is stored
187 * start reading from the last offset set (continue where it has stopped before).
192 * \retval NFCSTATUS_INVALID_DEVICE_REQUEST If Previous Operation is Write Ndef and Offset
208 uint8_t Offset);
225 * \param[in] Offset Indicates whether the write operation shall start from the begining of the
226 * file/card storage \b or continue from the last offset. The last Offset set is store
    [all...]
  /external/llvm/bindings/ocaml/target/
target_ocaml.c 94 value Offset) {
95 return Val_int(LLVMElementAtOffset(TD, Ty, Int_val(Offset)));
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 87 bool SelectAddr(SDValue N, SDValue &Base, SDValue &Offset);
113 SelectAddr(SDValue Addr, SDValue &Base, SDValue &Offset) {
120 Offset = CurDAG->getTargetConstant(0, ValTy);
128 Offset = Addr.getOperand(0);
137 Offset = Addr;
154 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
176 Offset = LoVal.getOperand(0);
183 Offset = CurDAG->getTargetConstant(0, ValTy);
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 158 unsigned Offset = SizeVal - BytesLeft;
164 DAG.getConstant(Offset, AddrVT)),
167 Align, isVolatile, DstPtrInfo.getWithOffset(Offset));
242 unsigned Offset = SizeVal - BytesLeft;
248 DAG.getConstant(Offset, DstVT)),
250 DAG.getConstant(Offset, SrcVT)),
253 DstPtrInfo.getWithOffset(Offset),
254 SrcPtrInfo.getWithOffset(Offset)));
  /external/clang/lib/AST/
VTableBuilder.cpp 28 /// BaseOffset - Represents an offset from a derived class to a direct or
38 /// NonVirtualOffset - The offset from the derived class to the base class.
39 /// (Or the offset from the virtual base class to the base class, if the
63 /// Offset - the base offset of the overrider in the layout class.
64 CharUnits Offset;
66 OverriderInfo() : Method(0), Offset(CharUnits::Zero()) { }
75 /// construction vtable, this holds the offset from the layout class to the
129 /// the subobject with the given base offset.
181 "Did not find subobject offset!");
    [all...]
APValue.cpp 25 CharUnits Offset;
174 return ((const LV*)(const void*)Data)->Offset;
180 ((LV*)(char*)Data)->Offset = O;
NestedNameSpecifier.cpp 329 /// and offset.
330 SourceLocation LoadSourceLocation(void *Data, unsigned Offset) {
332 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(unsigned));
337 /// offset.
338 void *LoadPointer(void *Data, unsigned Offset) {
340 memcpy(&Result, static_cast<char *>(Data) + Offset, sizeof(void*));
361 unsigned Offset = getDataLength(Qualifier->getPrefix());
364 return LoadSourceLocation(Data, Offset);
369 return SourceRange(LoadSourceLocation(Data, Offset),
370 LoadSourceLocation(Data, Offset + sizeof(unsigned)))
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugAranges.cpp 42 range.Offset = set.getCompileUnitDIEOffset();
62 uint32_t offset = 0; local
70 while (set.extract(debug_aranges_data, &offset))
103 OS << format("0x%8.8x: [0x%8.8llx - 0x%8.8llx)\n", range.Offset,
109 OS << format("{0x%8.8x}: [0x%8.8llx - 0x%8.8llx)\n", Offset, LoPC, HiPC());
112 void DWARFDebugAranges::appendRange(uint32_t offset, uint64_t low_pc,
115 if (Aranges.back().Offset == offset && Aranges.back().HiPC() == low_pc) {
120 Aranges.push_back(Range(low_pc, high_pc, offset));
184 return pos->Offset;
    [all...]
  /frameworks/base/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.c 72 LVM_UINT16 Offset;
97 * Calculate the output gain table offset
99 Offset = (LVM_UINT16)(pParams->SpeakerType + (pParams->SourceFormat*(1+LVCS_EX_HEADPHONES)));
105 Gain = (LVM_UINT32)(pOutputGainTable[Offset].Loss * pInstance->TransitionGain);
117 Gain = (LVM_UINT32)(pOutputGainTable[Offset].Loss * (0x7FFF - pInstance->TransitionGain));
118 Gain = (LVM_UINT32)pOutputGainTable[Offset].UnprocLoss * (Gain >> 15);
130 pConfig->Output_Shift = pOutputGainTable[Offset].Shift;
  /external/llvm/lib/Support/
MemoryBuffer.cpp 236 off_t Offset,
263 size_t End = Offset + MapSize;
279 int64_t Offset,
298 if (shouldUseMmap(FD, FileSize, MapSize, Offset, RequiresNullTerminator,
300 off_t RealMapOffset = Offset & ~(PageSize - 1);
301 off_t Delta = Offset - RealMapOffset;
324 if (lseek(FD, Offset, SEEK_SET) == -1)
  /external/llvm/lib/Target/CellSPU/
SPURegisterInfo.cpp 272 // Now add the frame object offset to the offset from r1.
273 int Offset = MFI->getObjectOffset(FrameIndex);
284 // Offset is biased by $lr's slot at the bottom.
285 Offset += MO.getImm() + MFI->getStackSize() + SPUFrameLowering::minStackSize();
286 assert((Offset & 0xf) == 0
292 // if 'Offset' doesn't fit to the D-form instruction's
296 if ((MI.getOpcode() == SPU::AIr32 && !isInt<10>(Offset))
297 || !isInt<14>(Offset)) {
301 .addImm(Offset);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 120 /// Offset - Offset in debug info section.
122 unsigned Offset;
142 : Abbrev(Tag, dwarf::DW_CHILDREN_no), Offset(0),
150 unsigned getOffset() const { return Offset; }
156 void setOffset(unsigned O) { Offset = O; }
166 /// SiblingOffset - Return the offset of the debug information entry's
168 unsigned getSiblingOffset() const { return Offset + Size; }
170 /// addSiblingOffset - Add a sibling offset field to the front of the DIE.
372 /// EmitValue - Emit debug information entry offset
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 901 // If this is memset, we just need to see if the offset is valid in the size
919 int Offset = AnalyzeLoadFromClobberingWrite(LoadTy, LoadPtr,
921 if (Offset == -1)
922 return Offset;
925 // offset applied as appropriate.
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 100 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
101 return F->Offset;
111 report_fatal_error("unable to evaluate offset for variable '" +
116 report_fatal_error("unable to evaluate offset to undefined symbol '" +
119 report_fatal_error("unable to evaluate offset to undefined symbol '" +
122 uint64_t Offset = Target.getConstant();
124 Offset += getSymbolOffset(&Assembler.getSymbolData(
127 Offset -= getSymbolOffset(&Assembler.getSymbolData(
129 return Offset;
137 // The size is the last fragment's end offset
    [all...]
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 317 void printOffset(int64_t Offset, raw_ostream &OS) const;
337 /// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo"
340 void EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset,
343 /// EmitLabelPlusOffset - Emit something like ".long Label+Offset"
346 void EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset,
377 /// EmitSectionOffset - Emit the 4-byte offset of Label from the start of
379 /// supports it (e.g. cygwin) or by emitting it as an offset from a label at
  /external/llvm/lib/CodeGen/
StackProtector.cpp 169 unsigned AddressSpace, Offset;
170 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
172 ConstantInt::get(Type::getInt32Ty(RI->getContext()), Offset);

Completed in 968 milliseconds

1 2 3 4 56 7 8 91011>>