Searched refs:offs (Results 1 - 6 of 6) sorted by relevance

/gem5/src/gpu-compute/
H A Dbrig_object.hh83 const uint8_t *getSectionOffset(enum SectionIndex sec, int offs) const;
100 const char* getString(int offs) const;
101 const Brig::BrigData* getBrigBaseData(int offs) const;
102 const uint8_t* getData(int offs) const;
103 const Brig::BrigBase* getCodeSectionEntry(int offs) const;
104 const Brig::BrigOperand* getOperand(int offs) const;
105 unsigned getOperandPtr(int offs, int index) const;
106 const Brig::BrigInstBase* getInst(int offs) const;
H A Dbrig_object.cc83 BrigObject::getSectionOffset(enum SectionIndex sec, int offs) const
85 // allow offs == size for dummy end pointers
86 assert(offs <= sectionInfo[sec].size);
88 return sectionInfo[sec].ptr + offs;
92 BrigObject::getString(int offs) const
94 return (const char*)(getSectionOffset(DataSectionIndex, offs) + 4);
98 BrigObject::getCodeSectionEntry(int offs) const
100 return (const BrigBase*)getSectionOffset(CodeSectionIndex, offs);
104 BrigObject::getBrigBaseData(int offs) const
106 return (Brig::BrigData*)(getSectionOffset(DataSectionIndex, offs));
122 getOperandPtr(int offs, int index) const argument
[all...]
/gem5/src/dev/pci/
H A Ddevice.hh148 * @retval offs The offset from the base address,
153 getBAR(Addr addr, int &bar, Addr &offs) argument
159 offs = addr - BARAddrs[b];
/gem5/src/dev/arm/
H A Dsmmu_v3.hh150 bool inSecureBlock(uint32_t offs) const;
H A Dsmmu_v3.cc710 SMMUv3::inSecureBlock(uint32_t offs) const
712 if (offs >= offsetof(SMMURegs, _secure_regs) && offs < SMMU_SECURE_SZ)
/gem5/src/sim/
H A Dsyscall_emul.cc317 uint64_t offs = p->getSyscallArg(tc, index); local
325 off_t result = lseek(sim_fd, offs, whence);

Completed in 18 milliseconds