Searched refs:Offset (Results 201 - 225 of 950) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILISelDAGToDAG.cpp70 bool SelectADDR8BitOffset(SDValue Addr, SDValue& Base, SDValue& Offset);
71 bool SelectADDRReg(SDValue Addr, SDValue& Base, SDValue& Offset);
72 bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset);
319 SDValue& Offset) {
342 Offset = CurDAG->getTargetConstant(OffsetNode->getZExtValue() >> 2,
351 Offset = CurDAG->getTargetConstant(0, MVT::i32);
356 SDValue &Offset)
365 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
373 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
379 Offset
318 SelectADDR8BitOffset(SDValue Addr, SDValue& Base, SDValue& Offset) argument
355 SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset) argument
383 SelectADDRReg(SDValue Addr, SDValue& Base, SDValue& Offset) argument
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp75 bool SelectMEMriS11_2(SDValue& Addr, SDValue &Base, SDValue &Offset);
77 bool SelectADDRrr(SDValue &Addr, SDValue &Base, SDValue &Offset);
91 bool SelectAddr(SDNode *Op, SDValue Addr, SDValue &Base, SDValue &Offset);
365 static bool OffsetFitsS11(EVT MemType, int64_t Offset) { argument
366 if (MemType == MVT::i64 && isShiftedInt<11,3>(Offset)) {
369 if (MemType == MVT::i32 && isShiftedInt<11,2>(Offset)) {
372 if (MemType == MVT::i16 && isShiftedInt<11,1>(Offset)) {
375 if (MemType == MVT::i8 && isInt<11>(Offset)) {
396 int64_t Offset = cast<GlobalAddressSDNode>(Base)->getOffset(); local
397 if (Offset !
440 SDValue Offset = LD->getOffset(); local
507 SDValue Offset = LD->getOffset(); local
583 SDValue Offset = LD->getOffset(); local
695 SDValue Offset = ST->getOffset(); local
779 int64_t Offset = cast<GlobalAddressSDNode>(Base)->getOffset(); local
1397 SelectADDRri(SDValue& Addr, SDValue &Base, SDValue &Offset) argument
1414 SelectADDRriS11_0(SDValue& Addr, SDValue &Base, SDValue &Offset) argument
1431 SelectADDRriS11_1(SDValue& Addr, SDValue &Base, SDValue &Offset) argument
1448 SelectADDRriS11_2(SDValue& Addr, SDValue &Base, SDValue &Offset) argument
1465 SelectADDRriU6_0(SDValue& Addr, SDValue &Base, SDValue &Offset) argument
1482 SelectADDRriU6_1(SDValue& Addr, SDValue &Base, SDValue &Offset) argument
1499 SelectADDRriU6_2(SDValue& Addr, SDValue &Base, SDValue &Offset) argument
1516 SelectMEMriS11_2(SDValue& Addr, SDValue &Base, SDValue &Offset) argument
1527 SelectADDRriS11_3(SDValue& Addr, SDValue &Base, SDValue &Offset) argument
1567 SelectAddr(SDNode *Op, SDValue Addr, SDValue &Base, SDValue &Offset) argument
[all...]
H A DHexagonAsmPrinter.cpp154 const MachineOperand &Offset = MI->getOperand(OpNo+1); local
161 if (Offset.isImm()) {
162 if (Offset.getImm())
163 O << " + #" << Offset.getImm();
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
H A Dname_table.cc351 int32_t size = NameTable::Offset::kNameRecordStart +
352 name_entry_map_.size() * NameTable::Offset::kNameRecordSize;
369 NameTable::Offset::kNameRecordStart +
370 name_entry_map_.size() * NameTable::Offset::kNameRecordSize;
373 new_data->WriteUShort(NameTable::Offset::kFormat, 0);
374 new_data->WriteUShort(NameTable::Offset::kCount, name_entry_map_.size());
375 new_data->WriteUShort(NameTable::Offset::kStringOffset,
377 int32_t name_record_offset = NameTable::Offset::kNameRecordStart;
386 name_record_offset + NameTable::Offset::kNameRecordPlatformId,
389 name_record_offset + NameTable::Offset
[all...]
/external/sfntly/cpp/src/sfntly/table/core/
H A Dname_table.cc351 int32_t size = NameTable::Offset::kNameRecordStart +
352 name_entry_map_.size() * NameTable::Offset::kNameRecordSize;
369 NameTable::Offset::kNameRecordStart +
370 name_entry_map_.size() * NameTable::Offset::kNameRecordSize;
373 new_data->WriteUShort(NameTable::Offset::kFormat, 0);
374 new_data->WriteUShort(NameTable::Offset::kCount, name_entry_map_.size());
375 new_data->WriteUShort(NameTable::Offset::kStringOffset,
377 int32_t name_record_offset = NameTable::Offset::kNameRecordStart;
386 name_record_offset + NameTable::Offset::kNameRecordPlatformId,
389 name_record_offset + NameTable::Offset
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp356 void insertUse(Instruction &I, const APInt &Offset, uint64_t Size, argument
360 if (Size == 0 || Offset.uge(AllocSize)) {
361 DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte use @" << Offset
369 uint64_t BeginOffset = Offset.getZExtValue();
380 DEBUG(dbgs() << "WARNING: Clamping a " << Size << " byte use @" << Offset
409 APInt GEPOffset = Offset;
422 APInt(Offset.getBitWidth(), SL->getElementOffset(ElementIdx));
425 APInt Index = OpC->getValue().sextOrTrunc(Offset.getBitWidth());
426 GEPOffset += Index * APInt(Offset.getBitWidth(),
441 void handleLoadOrStore(Type *Ty, Instruction &I, const APInt &Offset, argument
1329 getNaturalGEPRecursively(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, Type *Ty, APInt &Offset, Type *TargetTy, SmallVectorImpl<Value *> &Indices, Twine NamePrefix) argument
1402 getNaturalGEPWithOffset(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, APInt Offset, Type *TargetTy, SmallVectorImpl<Value *> &Indices, Twine NamePrefix) argument
1442 getAdjustedPtr(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, APInt Offset, Type *PointerTy, Twine NamePrefix) argument
1851 extractInteger(const DataLayout &DL, IRBuilderTy &IRB, Value *V, IntegerType *Ty, uint64_t Offset, const Twine &Name) argument
1874 insertInteger(const DataLayout &DL, IRBuilderTy &IRB, Value *Old, Value *V, uint64_t Offset, const Twine &Name) argument
2116 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset; local
2161 getIndex(uint64_t Offset) argument
2193 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset; local
2292 uint64_t Offset = BeginOffset - NewAllocaBeginOffset; local
2468 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset; local
2639 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset; local
2654 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset; local
2995 getTypePartition(const DataLayout &DL, Type *Ty, uint64_t Offset, uint64_t Size) argument
3259 removeFinishedSplitUses(SmallVectorImpl<AllocaSlices::iterator> &SplitUses, uint64_t &MaxSplitUseEndOffset, uint64_t Offset) argument
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dbasic_types.cc13 void WebPoint::Offset(int x_, int y_) { function in class:WebPoint
/external/chromium_org/third_party/icu/source/common/
H A Dpropname.cpp145 PropertyAliases::chooseNameInGroup(Offset offset,
151 const Offset* p = (const Offset*) getPointer(offset);
155 Offset a = *p;
163 Offset a = e2o->getOffset(prop);
186 Offset a;
370 ds->swapArray16(ds, inMap->getOffsetArray(), (tempMap->enumLimit-tempMap->enumStart)*sizeof(Offset),
417 ds->swapArray16(ds, inBytes+pos, tempMap->count*sizeof(Offset),
425 Offset name, index;
455 const Offset *inNameArra
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_memory.h89 * Offset of a field in a struct, in bytes.
91 #define Offset(TYPE, MEMBER) ((uintptr_t)&(((TYPE *)NULL)->MEMBER)) macro
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Deblc_table.h31 struct Offset { struct in class:sfntly::EblcTable
90 BitmapGlyph::Offset::kBigGlyphMetricsLength,
95 BigGlyphMetrics::Offset::kMetricsLength,
115 BitmapGlyph::Offset::kBigGlyphMetricsLength,
/external/icu/icu4c/source/layout/
H A DAlternateSubstSubtables.cpp28 Offset alternateSetTableOffset = SWAPW(alternateSetTableOffsetArray[coverageIndex]);
H A DOpenTypeUtilities.h23 static Offset getTagOffset(LETag tag, const LEReferenceToArrayOf<TagAndOffsetRecord> &records, LEErrorCode &success);
/external/libnfc-nxp/src/
H A DphFriNfc_TopazMap.h279 * \param[in] Offset Indicates whether the read operation shall start from the begining of the
280 * file/card storage \b or continue from the last offset. The last Offset set is stored
288 * \retval NFCSTATUS_INVALID_DEVICE_REQUEST If Previous Operation is Write Ndef and Offset
304 uint8_t Offset);
323 * \param[in] Offset Indicates whether the write operation shall start from the begining of the
324 * file/card storage \b or continue from the last offset. The last Offset set is stored
332 * \retval NFCSTATUS_INVALID_DEVICE_REQUEST If Previous Operation is Write Ndef and Offset
349 uint8_t Offset);
498 * \param[in] Offset Indicates whether the read operation shall start from the begining of the
499 * file/card storage \b or continue from the last offset. The last Offset se
[all...]
/external/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyldChecker.h86 uint64_t readMemoryAtSymbol(StringRef Symbol, int64_t Offset,
/external/llvm/include/llvm/MC/
H A DMCExternalSymbolizer.h50 uint64_t Offset, uint64_t InstSize) override;
H A DMCSymbolizer.h67 /// @param Offset - Byte offset of the operand inside the inst.
72 bool IsBranch, uint64_t Offset,
/external/llvm/lib/DebugInfo/
H A DDWARFDebugArangeSet.h50 uint32_t Offset; member in class:llvm::DWARFDebugArangeSet
H A DDWARFDebugRangeList.h59 // Offset in .debug_ranges section.
60 uint32_t Offset; member in class:llvm::DWARFDebugRangeList
/external/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.h149 bool needsFrameBaseReg(MachineInstr *MI, int64_t Offset) const override;
152 int64_t Offset) const override;
154 int64_t Offset) const override;
156 int64_t Offset) const override;
/external/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.h36 SDValue &Offset, SDValue &Alias) override;
H A DMipsMCInstLower.h39 MachineOperandType MOTy, unsigned Offset) const;
/external/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.h38 MachineOperandType MOTy, unsigned Offset) const;
/external/llvm/test/MC/ELF/
H A Dcompression.s51 .long .Lsection_abbrev # Offset Into Abbrev. Section
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_memory.h89 * Offset of a field in a struct, in bytes.
91 #define Offset(TYPE, MEMBER) ((uintptr_t)&(((TYPE *)NULL)->MEMBER)) macro
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Deblc_table.h31 struct Offset { struct in class:sfntly::EblcTable
90 BitmapGlyph::Offset::kBigGlyphMetricsLength,
95 BigGlyphMetrics::Offset::kMetricsLength,
115 BitmapGlyph::Offset::kBigGlyphMetricsLength,

Completed in 566 milliseconds

1234567891011>>