/external/lzma/CPP/7zip/Archive/Common/ |
D | CoderMixer2.h | 138 bool IsStream_in_PackStreams(UInt32 streamIndex) const in IsStream_in_PackStreams() 140 return FindStream_in_PackStreams(streamIndex) >= 0; in IsStream_in_PackStreams() 143 int FindStream_in_PackStreams(UInt32 streamIndex) const in FindStream_in_PackStreams() 146 if (PackStreams[i] == streamIndex) in FindStream_in_PackStreams() 156 UInt32 streamIndex = 0; in GetStream_for_Coder() local 158 streamIndex += Coders[i].NumStreams; in GetStream_for_Coder() 159 return streamIndex; in GetStream_for_Coder() 181 void GetCoder_for_Stream(UInt32 streamIndex, UInt32 &coderIndex, UInt32 &coderStreamIndex) const in GetCoder_for_Stream() 183 coderIndex = Stream_to_Coder[streamIndex]; in GetCoder_for_Stream() 184 coderStreamIndex = streamIndex - Coder_to_Stream[coderIndex]; in GetCoder_for_Stream() [all …]
|
D | CoderMixer2.cpp | 265 bool CMixer::Is_PackSize_Correct_for_Stream(UInt32 streamIndex) in Is_PackSize_Correct_for_Stream() argument 267 if (_bi.IsStream_in_PackStreams(streamIndex)) in Is_PackSize_Correct_for_Stream() 270 int bond = _bi.FindBond_for_PackStream(streamIndex); in Is_PackSize_Correct_for_Stream() 597 HRESULT CMixerST::FinishStream(UInt32 streamIndex) in FinishStream() argument 603 if (_bi.UnpackCoder == streamIndex) in FinishStream() 607 index = _bi.FindStream_in_PackStreams(streamIndex); in FinishStream() 615 streamIndex); in FinishStream()
|
/external/aac/libAACdec/src/ |
D | aacdecoder.cpp | 1485 const int streamIndex = 0; in CAacDecoder_Init() local 1642 self->flags[streamIndex] = 0; in CAacDecoder_Init() 1651 self->pUsacConfig[streamIndex] = &asc->m_sc.m_usacConfig; in CAacDecoder_Init() 1654 if (self->pUsacConfig[streamIndex]->m_usacNumElements > in CAacDecoder_Init() 1659 if (self->numUsacElements[streamIndex] != in CAacDecoder_Init() 1665 self->numUsacElements[streamIndex] = in CAacDecoder_Init() 1671 _el < (int)self->pUsacConfig[streamIndex]->m_usacNumElements; in CAacDecoder_Init() 1675 self->pUsacConfig[streamIndex]->element[_el].usacElementType) { in CAacDecoder_Init() 1684 self->pUsacConfig[streamIndex]->element[_el].usacElementType; in CAacDecoder_Init() 1722 if (self->pUsacConfig[streamIndex]->m_usacNumElements) { in CAacDecoder_Init() [all …]
|
/external/lzma/CPP/7zip/Compress/ |
D | Bcj2Coder.h | 53 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size); 54 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size); 103 STDMETHOD(GetInStreamProcessedSize2)(UInt32 streamIndex, UInt64 *value); 105 STDMETHOD(SetInStream2)(UInt32 streamIndex, ISequentialInStream *inStream); 106 STDMETHOD(ReleaseInStream2)(UInt32 streamIndex); 112 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size); 113 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size);
|
D | Bcj2Coder.cpp | 65 STDMETHODIMP CEncoder::SetOutBufSize(UInt32 streamIndex, UInt32 size) { _bufsNewSizes[streamIndex] … in SetOutBufSize() argument 324 STDMETHODIMP CDecoder::SetInBufSize(UInt32 streamIndex, UInt32 size) { _bufsNewSizes[streamIndex] =… in SetInBufSize() argument 515 STDMETHODIMP CDecoder::SetInStream2(UInt32 streamIndex, ISequentialInStream *inStream) in SetInStream2() argument 517 _inStreams[streamIndex] = inStream; in SetInStream2() 521 STDMETHODIMP CDecoder::ReleaseInStream2(UInt32 streamIndex) in ReleaseInStream2() argument 523 _inStreams[streamIndex].Release(); in ReleaseInStream2() 659 STDMETHODIMP CDecoder::GetInStreamProcessedSize2(UInt32 streamIndex, UInt64 *value) in GetInStreamProcessedSize2() argument 661 const size_t rem = dec.lims[streamIndex] - dec.bufs[streamIndex] + _extraReadSizes[streamIndex]; in GetInStreamProcessedSize2() 662 *value = _inStreamsProcessed[streamIndex] - rem; in GetInStreamProcessedSize2()
|
D | Lzma2Decoder.h | 66 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size); 67 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size);
|
D | LzmaDecoder.h | 76 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size); 77 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size);
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeWizard.cs | 631 protected void fillReverseIndex( object node, int streamIndex ) in fillReverseIndex() argument 653 indexes.Add( streamIndex ); // not there yet, add in fillReverseIndex() 658 if ( !indexes.Contains( streamIndex ) ) in fillReverseIndex() 660 indexes.Add( streamIndex ); // not there yet, add in fillReverseIndex() 723 int streamIndex = indexes[i]; in getNodeIndex() 724 object n = get( streamIndex ); in getNodeIndex() 728 return streamIndex; // found it! in getNodeIndex()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeWizard.cs | 554 protected void fillReverseIndex( object node, int streamIndex ) in fillReverseIndex() argument 576 indexes.Add( streamIndex ); // not there yet, add in fillReverseIndex() 581 if ( !indexes.Contains( streamIndex ) ) in fillReverseIndex() 583 indexes.Add( streamIndex ); // not there yet, add in fillReverseIndex() 646 int streamIndex = indexes[i]; in getNodeIndex() 647 object n = get( streamIndex ); in getNodeIndex() 651 return streamIndex; // found it! in getNodeIndex()
|
/external/lzma/CPP/7zip/ |
D | ICoder.h | 192 STDMETHOD(GetInStreamProcessedSize2)(UInt32 streamIndex, UInt64 *value) PURE; 253 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size) PURE; 254 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size) PURE; 267 STDMETHOD(SetInStream2)(UInt32 streamIndex, ISequentialInStream *inStream) PURE; 268 STDMETHOD(ReleaseInStream2)(UInt32 streamIndex) PURE;
|
/external/lzma/CPP/7zip/Common/ |
D | FilterCoder.h | 211 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size); 212 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size);
|
/external/golang-protobuf/protoc-gen-go/grpc/ |
D | grpc.go | 187 var methodIndex, streamIndex int 198 descExpr = fmt.Sprintf("&%s.Streams[%d]", serviceDescVar, streamIndex) 199 streamIndex++
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zIn.h | 285 UInt64 GetFolderPackStreamSize(CNum folderIndex, unsigned streamIndex) const in GetFolderPackStreamSize() 287 size_t i = FoStartPackStreamIndex[folderIndex] + streamIndex; in GetFolderPackStreamSize()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | frontend.cpp | 506 uint32_t streamIndex) in StreamOut() argument 533 uint32_t soMask = soState.streamMasks[streamIndex]; in StreamOut() 539 uint32_t paSlot = slot + soState.vertexAttribOffset[streamIndex]; in StreamOut() 563 …SWR_ASSERT(state.pfnSoFunc[streamIndex] != nullptr, "Trying to execute uninitialized streamout jit… in StreamOut() 564 state.pfnSoFunc[streamIndex](soContext); in StreamOut() 582 UPDATE_STAT_FE(SoPrimStorageNeeded[streamIndex], soContext.numPrimStorageNeeded); in StreamOut() 583 UPDATE_STAT_FE(SoNumPrimsWritten[streamIndex], soContext.numPrimsWritten); in StreamOut()
|
D | api.h | 357 uint32_t streamIndex);
|
D | api.cpp | 570 uint32_t streamIndex) in SwrSetSoFunc() argument 574 SWR_ASSERT(streamIndex < MAX_SO_STREAMS); in SwrSetSoFunc() 576 pState->pfnSoFunc[streamIndex] = pfnSoFunc; in SwrSetSoFunc()
|
/external/antlr/runtime/ObjC/Framework/ |
D | TreeWizard.m | 652 - (void)fillReverseIndex:(CommonTree *)node Index:(NSInteger)streamIndex 654 //System.out.println("revIndex "+node+"@"+streamIndex); 667 NSInteger streamIndexI = streamIndex;
|