/third_party/lzma/CPP/7zip/Archive/7z/ |
D | 7zExtract.cpp | 259 const UInt32 fileIndex = allFilesMode ? i : indices[i]; 260 const CNum folderIndex = _db.FileIndexToFolderIndexMap[fileIndex]; 263 if (folderIndex != prevFolder || fileIndex < nextFile) 265 for (CNum index = nextFile; index <= fileIndex; index++) 267 nextFile = fileIndex + 1; 317 UInt32 fileIndex = allFilesMode ? i : indices[i]; 318 const CNum folderIndex = _db.FileIndexToFolderIndexMap[fileIndex]; 325 UInt32 nextFile = fileIndex + 1; 326 fileIndex = _db.FolderStartFileIndex[folderIndex]; 340 for (k = fileIndex; k < nextFile; k++) [all …]
|
D | 7zIn.h | 295 UInt64 GetFilePackSize(CNum fileIndex) const in GetFilePackSize() 297 CNum folderIndex = FileIndexToFolderIndexMap[fileIndex]; in GetFilePackSize() 299 if (FolderStartFileIndex[folderIndex] == fileIndex) in GetFilePackSize()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/ |
D | vktTextureTestUtil.cpp | 1711 for (size_t fileIndex = 0; fileIndex < filenames.size(); ++fileIndex) in loadTexture2D() local 1715 tcu::ImageIO::loadImage(level, archive, filenames[fileIndex].c_str()); in loadTexture2D() 1720 if (fileIndex == 0) in loadTexture2D() 1723 tcu::copy(texture->getLevel((int)fileIndex, 0), level.getAccess()); in loadTexture2D() 1729 for (size_t fileIndex = 0; fileIndex < filenames.size(); ++fileIndex) in loadTexture2D() local 1734 tcu::ImageIO::loadPKM(level, archive, filenames[fileIndex].c_str()); in loadTexture2D() 1744 if (fileIndex == 0) in loadTexture2D() 1750 tcu::copy(texture->getLevel((int)fileIndex, 0), commonFormatBuffer); in loadTexture2D() 1772 for (size_t fileIndex = 0; fileIndex < filenames.size(); ++fileIndex) in loadTextureCube() local 1776 tcu::ImageIO::loadImage(level, archive, filenames[fileIndex].c_str()); in loadTextureCube() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/ |
D | vktTextureTestUtil.cpp | 1711 for (size_t fileIndex = 0; fileIndex < filenames.size(); ++fileIndex) in loadTexture2D() local 1715 tcu::ImageIO::loadImage(level, archive, filenames[fileIndex].c_str()); in loadTexture2D() 1720 if (fileIndex == 0) in loadTexture2D() 1723 tcu::copy(texture->getLevel((int)fileIndex, 0), level.getAccess()); in loadTexture2D() 1729 for (size_t fileIndex = 0; fileIndex < filenames.size(); ++fileIndex) in loadTexture2D() local 1734 tcu::ImageIO::loadPKM(level, archive, filenames[fileIndex].c_str()); in loadTexture2D() 1744 if (fileIndex == 0) in loadTexture2D() 1750 tcu::copy(texture->getLevel((int)fileIndex, 0), commonFormatBuffer); in loadTexture2D() 1772 for (size_t fileIndex = 0; fileIndex < filenames.size(); ++fileIndex) in loadTextureCube() local 1776 tcu::ImageIO::loadImage(level, archive, filenames[fileIndex].c_str()); in loadTextureCube() [all …]
|
/third_party/lzma/CPP/7zip/UI/Common/ |
D | ArchiveOpenCallback.h | 135 void AtCloseFile(unsigned fileIndex) in AtCloseFile() argument 137 FileNames_WasUsed[fileIndex] = false; in AtCloseFile() 138 Volumes.CloseFile(fileIndex); in AtCloseFile()
|
D | ArchiveOpenCallback.cpp | 345 const unsigned fileIndex = Volumes.Streams.Add(s); 346 Volumes.InsertToList(fileIndex); 354 inFile->FileIndex = fileIndex;
|
/third_party/lzma/CS/7zip/Compress/LzmaAlone/ |
D | LzmaAlone.cs | 11 public int fileIndex; field in SevenZip.CDoubleStream 29 if (fileIndex == 0) in Read() 36 fileIndex++; in Read() 38 if (fileIndex == 1) in Read() 310 doubleStream.fileIndex = 0; in Main2()
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | completionsIncomplete.ts | 9 …efix: string, fileCount: number, exportCount: number, getExportPrefix: (fileIndex: number) => stri… 10 return fill(fileCount, fileIndex => createExportingModuleFile( 11 `${pathPrefix}_${fileIndex}.ts`, 12 getExportPrefix(fileIndex), 16 …Name: string, fileCount: number, exportCount: number, getExportPrefix: (fileIndex: number) => stri…
|
/third_party/lzma/CPP/7zip/UI/FileManager/ |
D | BrowseDialog.cpp | 697 const int fileIndex = GetRealItemIndex(index); in Reload() local 698 if (fileIndex != kParentIndex) in Reload() 699 selected = fs2us(_files[fileIndex].Name); in Reload() 724 const int fileIndex = GetRealItemIndex(index); in SetPathEditText() local 725 if (fileIndex == kParentIndex) in SetPathEditText() 731 const CFileInfo &file = _files[fileIndex]; in SetPathEditText() 781 const int fileIndex = GetRealItemIndex(index); in OnItemEnter() local 782 if (fileIndex == kParentIndex) in OnItemEnter() 786 const CFileInfo &file = _files[fileIndex]; in OnItemEnter()
|
/third_party/lzma/C/ |
D | 7z.h | 146 size_t SzArEx_GetFileNameUtf16(const CSzArEx *p, size_t fileIndex, UInt16 *dest); 178 UInt32 fileIndex, /* index of file */
|
D | 7zArcIn.c | 1653 UInt32 fileIndex, in SzArEx_Extract() argument 1662 const UInt32 folderIndex = p->FileToFolder[fileIndex]; in SzArEx_Extract() 1713 const UInt64 unpackPos = p->UnpackPositions[fileIndex]; in SzArEx_Extract() 1715 *outSizeProcessed = (size_t)(p->UnpackPositions[(size_t)fileIndex + 1] - unpackPos); in SzArEx_Extract() 1718 if (SzBitWithVals_Check(&p->CRCs, fileIndex)) in SzArEx_Extract() 1719 if (CrcCalc(*tempBuf + *offset, *outSizeProcessed) != p->CRCs.Vals[fileIndex]) in SzArEx_Extract() 1727 size_t SzArEx_GetFileNameUtf16(const CSzArEx *p, size_t fileIndex, UInt16 *dest) in SzArEx_GetFileNameUtf16() argument 1729 const size_t offs = p->FileNameOffsets[fileIndex]; in SzArEx_GetFileNameUtf16() 1730 const size_t len = p->FileNameOffsets[fileIndex + 1] - offs; in SzArEx_GetFileNameUtf16()
|
/third_party/mesa3d/src/nouveau/codegen/ |
D | nv50_ir.cpp | 283 reg.fileIndex = fidx; in Symbol() 294 Symbol *that = new_Symbol(prog, reg.file, reg.fileIndex); in clone() 494 if (that->reg.file != reg.file || that->reg.fileIndex != reg.fileIndex) in interfers() 522 if (that->reg.file != reg.file || that->reg.fileIndex != reg.fileIndex) in equals() 545 if (reg.file != that->reg.file || reg.fileIndex != that->reg.fileIndex) in equals()
|
D | nv50_ir_emit_nv50.cpp | 413 code[1] |= (i->getSrc(1)->reg.fileIndex << 22); in setSrcFileBits() 422 code[1] |= (i->getSrc(1)->reg.fileIndex << 22); in setSrcFileBits() 426 code[1] |= (i->getSrc(2)->reg.fileIndex << 22); in setSrcFileBits() 430 code[1] |= 0x00200000 | (i->getSrc(2)->reg.fileIndex << 22); in setSrcFileBits() 657 code[1] = 0x20000000 | (i->getSrc(0)->reg.fileIndex << 22); in emitLOAD() 667 code[0] = 0xd0000001 | (i->getSrc(0)->reg.fileIndex << 16); in emitLOAD() 704 code[0] = 0xd0000001 | (i->getSrc(0)->reg.fileIndex << 16); in emitSTORE() 1917 code[0] |= i->getSrc(0)->reg.fileIndex << 23; in emitATOM() 1921 code[0] |= i->getSrc(0)->reg.fileIndex << 16; in emitATOM()
|
D | nv50_ir.h | 581 int8_t fileIndex; // signed, may be indirect for CONST[] member 807 inline void setFile(DataFile file, uint8_t fileIndex = 0) 810 reg.fileIndex = fileIndex;
|
D | nv50_ir_emit_nvc0.cpp | 412 code[1] |= i->getSrc(s)->reg.fileIndex << 10; in emitForm_A() 451 code[1] |= 0x4000 | (i->src(0).get()->reg.fileIndex << 10); in emitForm_B() 486 switch (i->src(s).get()->reg.fileIndex) { in emitForm_S() 513 switch (src.get()->reg.fileIndex) { in emitShortSrc2() 809 code[1] |= i->getSrc(2)->reg.fileIndex << 10; in emitSHLADD() 1508 code[1] |= i->getSrc(0)->reg.fileIndex << 10; in emitFlow() 1943 opc = 0x14000000 | (i->src(0).get()->reg.fileIndex << 10); in emitLOAD() 2335 code[1] |= i->getSrc(s)->reg.fileIndex << 8; in setSUConst16() 2990 if (i->getSrc(s)->reg.fileIndex > 1 && in getMinEncodingSize() 2991 i->getSrc(s)->reg.fileIndex != 16) in getMinEncodingSize()
|
D | nv50_ir_lowering_nvc0.cpp | 858 i->src(0).get()->reg.fileIndex += offset >> 16; in visit() 1443 bufq->getSrc(0)->reg.fileIndex * 16)); in handleBUFQ() 1666 base = loadBufInfo64(ind, atom->getSrc(0)->reg.fileIndex * 16); in handleATOM() 1676 Value *length = loadBufLength32(ind, atom->getSrc(0)->reg.fileIndex * 16); in handleATOM() 2809 i->getSrc(0)->reg.fileIndex = 0; in handleLDST() 2823 int8_t fileIndex = i->getSrc(0)->reg.fileIndex - 1; in handleLDST() local 2828 (fileIndex >= 6 || ind)) { in handleLDST() 2839 ind, bld.loadImm(NULL, fileIndex)), in handleLDST() 2841 fileIndex = 0; in handleLDST() 2845 Value *ptr = loadUboInfo64(ind, fileIndex * 16); in handleLDST() [all …]
|
D | nv50_ir_build_util.cpp | 446 BuildUtil::mkSymbol(DataFile file, int8_t fileIndex, DataType ty, in mkSymbol() argument 449 Symbol *sym = new_Symbol(prog, file, fileIndex); in mkSymbol()
|
D | nv50_ir_emit_gv100.h | 300 emitField(buf, 5, v->reg.fileIndex); in emitCBUF()
|
D | nv50_ir_build_util.h | 178 Symbol *mkSymbol(DataFile file, int8_t fileIndex,
|
D | nv50_ir_peephole.cpp | 2702 int8_t fileIndex; member in nv50_ir::MemoryOpt::Record 2912 fileIndex = mem->reg.fileIndex; in set() 2974 it->fileIndex != sym->reg.fileIndex || in findRecord() 3111 if (this->fileIndex != that.fileIndex && this->rel[1] == that.rel[1]) in overlaps()
|
D | nv50_ir_emit_gk110.cpp | 326 code[1] |= res.fileIndex << 5; in setCAddress14() 1734 code[1] |= i->getSrc(s)->reg.fileIndex << 5; in setSUConst16() 2244 code[1] = 0x7c800000 | (i->src(0).get()->reg.fileIndex << 7); in emitLOAD()
|
D | nv50_ir_print.cpp | 586 PRINT("%s%c%i[", colour[TXT_MEM], c, reg.fileIndex); in print()
|
/third_party/lzma/DOC/ |
D | 7zC.txt | 123 UInt32 fileIndex, /* index of file */
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | Compiler.cpp | 109 static int fileIndex = 0; in DumpFuzzerCase() local 112 o << "corpus/" << fileIndex++ << ".sample"; in DumpFuzzerCase()
|
/third_party/typescript/tests/cases/fourslash/ |
D | fourslash.ts | 237 position(position: number, fileIndex?: number): any;
|