/third_party/lzma/CPP/7zip/Archive/7z/ |
H A D | 7zIn.cpp | 723 CFolders &folders)
in ReadUnpackInfo() 733 folders.NumFolders = numFolders;
in ReadUnpackInfo() 735 folders.FoStartPackStreamIndex.Alloc(numFolders + 1);
in ReadUnpackInfo() 736 folders.FoToMainUnpackSizeIndex.Alloc(numFolders);
in ReadUnpackInfo() 737 folders.FoCodersDataOffset.Alloc(numFolders + 1);
in ReadUnpackInfo() 738 folders.FoToCoderUnpackSizes.Alloc(numFolders + 1);
in ReadUnpackInfo() 751 folders.FoCodersDataOffset[fo] = (size_t)(_inByteBack->GetPtr() - startBufPtr);
in ReadUnpackInfo() 775 if (folders.ParsedMethods.IDs.Size() < 128)
in ReadUnpackInfo() 776 folders.ParsedMethods.IDs.AddToUniqueSorted(id);
in ReadUnpackInfo() 800 if (folders in ReadUnpackInfo() 721 ReadUnpackInfo( const CObjectVector<CByteBuffer> *dataVector, CFolders &folders) ReadUnpackInfo() argument 900 ReadSubStreamsInfo( CFolders &folders, CRecordVector<UInt64> &unpackSizes, CUInt32DefVector &digests) ReadSubStreamsInfo() argument 1042 ReadStreamsInfo( const CObjectVector<CByteBuffer> *dataVector, UInt64 &dataOffset, CFolders &folders, CRecordVector<UInt64> &unpackSizes, CUInt32DefVector &digests) ReadStreamsInfo() argument 1159 CFolders folders; ReadAndDecodePackedStreams() local [all...] |
H A D | 7zOut.cpp | 361 void COutArchive::WriteUnpackInfo(const CObjectVector<CFolder> &folders, const COutFolders &outFolders)
in WriteUnpackInfo() argument 363 if (folders.IsEmpty())
in WriteUnpackInfo() 369 WriteNumber(folders.Size());
in WriteUnpackInfo() 372 FOR_VECTOR (i, folders)
in WriteUnpackInfo() 373 WriteFolder(folders[i]);
in WriteUnpackInfo() 385 void COutArchive::WriteSubStreamsInfo(const CObjectVector<CFolder> &folders,
in WriteSubStreamsInfo() argument 424 for (i = 0; i < folders.Size(); i++)
in WriteSubStreamsInfo() 496 CRecordVector<UInt64> &packSizes, CObjectVector<CFolder> &folders, COutFolders &outFolders)
in EncodeStream() 512 folders.AddNew(),
in EncodeStream() 865 CObjectVector<CFolder> folders;
in WriteDatabase() local 493 EncodeStream( DECL_EXTERNAL_CODECS_LOC_VARS CEncoder &encoder, const CByteBuffer &data, CRecordVector<UInt64> &packSizes, CObjectVector<CFolder> &folders, COutFolders &outFolders) EncodeStream() argument [all...] |
H A D | 7zDecode.cpp | 217 const CFolders &folders, unsigned folderIndex,
239 const UInt64 *packPositions = &folders.PackPositions[folders.FoStartPackStreamIndex[folderIndex]];
241 folders.ParseFolderEx(folderIndex, folderInfo);
251 UInt64 folderUnpackSize = folders.GetFolderUnpackSize(folderIndex);
348 UInt32 unpackStreamIndexStart = folders.FoToCoderUnpackSizes[folderIndex];
478 packSizesPointers[j] = &folders.CoderUnpackSizes[unpackStreamIndexStart + folderInfo.Bonds[(unsigned)bond].UnpackIndex];
492 &folders.CoderUnpackSizes[unpackStreamIndexStart + i];
|
H A D | 7zOut.h | 269 const CObjectVector<CFolder> &folders,
273 const CObjectVector<CFolder> &folders,
285 CRecordVector<UInt64> &packSizes, CObjectVector<CFolder> &folders, COutFolders &outFolders);
|
H A D | 7zIn.h | 399 CFolders &folders);
402 CFolders &folders,
409 CFolders &folders,
|
H A D | 7zDecode.h | 53 const CFolders &folders, unsigned folderIndex,
|
/third_party/vulkan-loader/tests/framework/shim/ |
H A D | shim.h | 138 PlatformShim(std::vector<fs::FolderManager>* folders) : folders(folders) {} in PlatformShim() 140 // Used to get info about which drivers & layers have been added to folders 141 std::vector<fs::FolderManager>* folders; member 230 std::vector<std::string> get_folder_contents(std::vector<fs::FolderManager>* folders, std::string folder_name) noexcept; 235 using PFN_get_platform_shim = PlatformShim* (*)(std::vector<fs::FolderManager>* folders); 240 PlatformShim* get_platform_shim(std::vector<fs::FolderManager>* folders);
|
H A D | unix_shim.cpp | 39 PlatformShim* get_platform_shim(std::vector<fs::FolderManager>* folders) { in get_platform_shim() argument 40 platform_shim = PlatformShim(folders); in get_platform_shim() 44 FRAMEWORK_EXPORT PlatformShim* get_platform_shim(std::vector<fs::FolderManager>* folders) { in get_platform_shim() argument 45 platform_shim = PlatformShim(folders); in get_platform_shim() 180 auto filenames = get_folder_contents(platform_shim.folders, real_path); in READDIR_FUNC_NAME()
|
H A D | shim_common.cpp | 63 std::vector<std::string> get_folder_contents(std::vector<fs::FolderManager>* folders, std::string folder_name) noexcept { 64 for (auto& folder : *folders) {
|
H A D | windows_shim.cpp | 497 FRAMEWORK_EXPORT PlatformShim *get_platform_shim(std::vector<fs::FolderManager> *folders) { 498 platform_shim = PlatformShim(folders);
|
/third_party/vulkan-loader/tests/framework/ |
H A D | test_environment.cpp | 330 PlatformShimWrapper::PlatformShimWrapper(std::vector<fs::FolderManager>* folders, const char* log_filter) noexcept 336 platform_shim = get_platform_shim_func(folders); 338 platform_shim = get_platform_shim(folders); 385 : settings(settings), platform_shim(&folders, settings.log_filter) { 386 // This order is important, it matches the enum ManifestLocation, used to index the folders vector 387 folders.emplace_back(FRAMEWORK_BUILD_DIRECTORY, std::string("null_dir")); 388 folders.emplace_back(FRAMEWORK_BUILD_DIRECTORY, std::string("icd_manifests")); 389 folders.emplace_back(FRAMEWORK_BUILD_DIRECTORY, std::string("icd_env_vars_manifests")); 390 folders.emplace_back(FRAMEWORK_BUILD_DIRECTORY, std::string("explicit_layer_manifests")); 391 folders [all...] |
H A D | test_environment.h | 463 PlatformShimWrapper(std::vector<fs::FolderManager>* folders, const char* log_filter) noexcept; 630 std::vector<fs::FolderManager> folders; member
|
/third_party/skia/third_party/externals/tint/fuzzers/ |
H A D | generate_wgsl_corpus.py | 37 for root, folders, files in os.walk(root_search_dir): 38 for filename in folders + files:
|
H A D | generate_spirv_corpus.py | 38 for root, folders, files in os.walk(root_search_dir): 39 for filename in folders + files:
|
/third_party/node/test/parallel/ |
H A D | test-fs-rmdir-recursive.js | 23 function makeNonEmptyDirectory(depth, files, folders, dirname, createSymLinks) { 57 for (let f = folders; f > 0; f--) { 65 folders,
|
H A D | test-fs-rm.js | 28 function makeNonEmptyDirectory(depth, files, folders, dirname, createSymLinks) { 71 for (let f = folders; f > 0; f--) { 79 folders, 545 // as in some cases rmSync successfully deletes read-only folders.
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | msvs.py | 221 folders = OrderedDict() 222 # Gather files into the final result, excluded, or folders. 232 # the sub folders. 233 if not folders.get(s[0]): 234 folders[s[0]] = [] 235 folders[s[0]].append(s[1:]) 256 # Populate all the folders. 257 for f in folders: 259 folders[f], 1568 # Convert to folders an [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | msvs.py | 221 folders = OrderedDict() 222 # Gather files into the final result, excluded, or folders. 232 # the sub folders. 233 if not folders.get(s[0]): 234 folders[s[0]] = [] 235 folders[s[0]].append(s[1:]) 256 # Populate all the folders. 257 for f in folders: 259 folders[f], 1563 # Convert to folders an [all...] |
/third_party/node/test/sequential/ |
H A D | test-module-loading.js | 142 console.error('test node_modules folders');
|