Home
last modified time | relevance | path

Searched refs:formatIndex (Results 1 – 16 of 16) sorted by relevance

/external/lzma/CPP/7zip/Archive/
DArchiveExports.cpp70 int formatIndex = FindFormatCalssId(clsid); in CreateArchiver()
71 if (formatIndex < 0) in CreateArchiver()
74 const CArcInfo &arc = *g_Arcs[formatIndex]; in CreateArchiver()
92 STDAPI GetHandlerProperty2(UInt32 formatIndex, PROPID propID, PROPVARIANT *value) in GetHandlerProperty2() argument
96 if (formatIndex >= g_NumArcs) in GetHandlerProperty2()
98 const CArcInfo &arc = *g_Arcs[formatIndex]; in GetHandlerProperty2()
144 STDAPI GetIsArc(UInt32 formatIndex, Func_IsArc *isArc) in GetIsArc() argument
147 if (formatIndex >= g_NumArcs) in GetIsArc()
149 *isArc = g_Arcs[formatIndex]->IsArc; in GetIsArc()
DIArchive.h585 typedef HRESULT (WINAPI *Func_GetIsArc)(UInt32 formatIndex, Func_IsArc *isArc);
/external/lzma/CPP/7zip/UI/Common/
DLoadCodecs.h307 const wchar_t *GetFormatNamePtr(int formatIndex) const in GetFormatNamePtr() argument
309 return formatIndex < 0 ? L"#" : (const wchar_t *)Formats[formatIndex].Name; in GetFormatNamePtr()
357 HRESULT CreateInArchive(unsigned formatIndex, CMyComPtr<IInArchive> &archive) const in CreateInArchive() argument
359 const CArcInfoEx &ai = Formats[formatIndex]; in CreateInArchive()
376 HRESULT CreateOutArchive(unsigned formatIndex, CMyComPtr<IOutArchive> &archive) const in CreateOutArchive() argument
378 const CArcInfoEx &ai = Formats[formatIndex]; in CreateOutArchive()
DOpenArchive.cpp1270 HRESULT CArc::PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &ar… in PrepareToOpen() argument
1275 RINOK(op.codecs->CreateInArchive(formatIndex, archive)); in PrepareToOpen()
1283 const CArcInfoEx &ai = op.codecs->Formats[formatIndex]; in PrepareToOpen()
1301 const CArcInfoEx &ai = op.codecs->Formats[formatIndex]; in PrepareToOpen()
1616 int formatIndex = op.openType.FormatIndex; in OpenStream2() local
1618 if (formatIndex >= 0) in OpenStream2()
1621 orderIndices.Add(formatIndex); in OpenStream2()
1623 isMainFormatArr[(unsigned)formatIndex] = true; in OpenStream2()
1835 if (formatIndex >= 0) in OpenStream2()
1973 if (formatIndex < 0) in OpenStream2()
[all …]
DUpdate.cpp387 int formatIndex = MethodMode.Type.FormatIndex; in SetArcPath() local
388 if (formatIndex < 0) in SetArcPath()
394 const CArcInfoEx &arcInfo = codecs->Formats[formatIndex]; in SetArcPath()
505 int formatIndex = options.MethodMode.Type.FormatIndex; in Compress() local
509 formatIndex = arc->FormatIndex; in Compress()
510 if (formatIndex < 0) in Compress()
519 RINOK(codecs->CreateOutArchive(formatIndex, outArchive)); in Compress()
554 const CArcInfoEx &arcInfo = codecs->Formats[formatIndex]; in Compress()
DOpenArchive.h263 …HRESULT PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &archive…
/external/deqp/external/vulkancts/modules/vulkan/subgroups/
DvktSubgroupsBallotBroadcastTests.cpp654 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex) in createSubgroupsBallotBroadcastTests() local
656 const VkFormat format = formats[formatIndex]; in createSubgroupsBallotBroadcastTests()
DvktSubgroupsShuffleTests.cpp727 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex) in createSubgroupsShuffleTests() local
729 const VkFormat format = formats[formatIndex]; in createSubgroupsShuffleTests()
DvktSubgroupsQuadTests.cpp716 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex) in createSubgroupsQuadTests() local
718 const VkFormat format = formats[formatIndex]; in createSubgroupsQuadTests()
DvktSubgroupsVoteTests.cpp797 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex) in createSubgroupsVoteTests() local
799 const VkFormat format = formats[formatIndex]; in createSubgroupsVoteTests()
DvktSubgroupsClusteredTests.cpp845 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex) in createSubgroupsClusteredTests() local
847 const VkFormat format = formats[formatIndex]; in createSubgroupsClusteredTests()
DvktSubgroupsArithmeticTests.cpp973 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex) in createSubgroupsArithmeticTests() local
975 const VkFormat format = formats[formatIndex]; in createSubgroupsArithmeticTests()
/external/swiftshader/src/OpenGL/libEGL/
DDisplay.cpp186 …for(unsigned int formatIndex = 0; formatIndex < sizeof(renderTargetFormats) / sizeof(sw::Format); in initialize() local
188 sw::Format renderTargetFormat = renderTargetFormats[formatIndex]; in initialize()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessageFormat.java2353 int formatIndex = 0; in writeObject() local
2356 out.writeInt(formatIndex); in writeObject()
2359 ++formatIndex; in writeObject()
2385 int formatIndex = in.readInt(); in readObject() local
2387 setFormat(formatIndex, formatter); in readObject()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessageFormat.java2309 int formatIndex = 0; in writeObject() local
2312 out.writeInt(formatIndex); in writeObject()
2315 ++formatIndex; in writeObject()
2341 int formatIndex = in.readInt(); in readObject() local
2343 setFormat(formatIndex, formatter); in readObject()
/external/v8/tools/profviz/
Dgnuplot-4.6.3-emscripten.js2984 var formatIndex = 0;
2990 for (var formatIndex = 0; formatIndex < format.length;) {
2991 if (format[formatIndex] === '%' && format[formatIndex+1] == 'n') {
2995 formatIndex += 2;
2999 if (format[formatIndex] === '%' && format[formatIndex+1] == 'c') {
3005 formatIndex += 2;
3015 if (format[formatIndex] === '%') {
3016 formatIndex++;
3018 if (format[formatIndex] == '*') {
3020 formatIndex++;
[all …]