Lines Matching refs:_mIndex
380 inline bool isVendor() const { return _mIndex.isVendor(); } in isVendor()
382 inline bool isFlexible() const { return _mIndex.isFlexible(); } in isFlexible()
384 inline bool isGlobal() const { return _mIndex.isGlobal(); } in isGlobal()
386 inline bool forInput() const { return _mIndex.forInput(); } in forInput()
388 inline bool forOutput() const { return _mIndex.forOutput(); } in forOutput()
391 inline bool forStream() const { return _mIndex.forStream(); } in forStream()
393 inline bool forPort() const { return _mIndex.forPort(); } in forPort()
396 inline unsigned stream() const { return _mIndex.stream(); } in stream()
399 inline Type type() const { return _mIndex.type(); } in type()
403 inline uint32_t index() const { return (uint32_t)_mIndex; } in index()
406 inline CoreIndex coreIndex() const { return _mIndex.coreIndex(); } in coreIndex()
409 inline kind_t kind() const { return _mIndex.kind(); } in kind()
415 inline operator bool() const { return _mIndex.isValid() && _mSize > 0; }
446 C2Param *param = new (mem) C2Param(orig.size(), orig._mIndex); in Copy()
456 copy->_mIndex.convertToStream(output, stream); in CopyAsStream()
465 copy->_mIndex.convertToPort(output); in CopyAsPort()
474 copy->_mIndex.convertToGlobal(); in CopyAsGlobal()
489 return _mIndex.setStream(stream); in setStream()
494 return _mIndex.setPort(output); in setPort()
505 if (other._mSize <= _mSize && other._mIndex == _mIndex && _mSize > 0) { in updateFrom()
523 return o->_mIndex.type() == type.mIndex ? o : nullptr;
524 } else if (o->_mIndex.isGlobal()) {
527 return ((o->_mIndex.type() ^ type.mIndex) & ~Type::DIR_MASK) ? nullptr : o;
534 _mIndex(paramIndex) { in C2Param()
543 _mIndex(paramIndex | Index::MakeStreamId(stream)) { in C2Param()
558 return _mSize == o._mSize && _mIndex == o._mIndex; in equals()
562 Index _mIndex; member
730 : _mIndex(param->index()), in C2ParamField()
754 inline C2ParamField(U *p, R T::* pm) : _mIndex(p->index()), _mFieldId(p, pm) { } in C2ParamField()
770 : _mIndex(param->index()), _mFieldId(0u, param->size()) { } in C2ParamField()
779 return _mIndex == other._mIndex && _mFieldId == other._mFieldId;
786 return _mIndex < other._mIndex ||
787 (_mIndex == other._mIndex && _mFieldId < other._mFieldId);
794 : _mIndex(index), _mFieldId(offset, size) {} in DEFINE_OTHER_COMPARISON_OPERATORS()
799 C2Param::Index _mIndex; ///< parameter index member
1212 inline C2Param::Index index() const { return _mIndex; }
1220 : _mIndex(T::PARAM_TYPE),
1227 : _mIndex(index),
1245 : _mIndex(index),
1252 : _mIndex(index),
1258 const C2Param::Index _mIndex;