HomeSort by relevance Sort by last modified time
    Searched defs:bond (Results 1 - 7 of 7) sorted by null

  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.cpp 39 NCoderMixer2::CBond &bond = bi.Bonds[i]; local
41 bond.PackIndex = folderBond.PackIndex;
42 bond.UnpackIndex = folderBond.UnpackIndex;
456 int bond = folderInfo.FindBond_for_PackStream(packStreamIndex); local
458 if (bond >= 0)
459 packSizesPointers[j] = &folders.CoderUnpackSizes[unpackStreamIndexStart + folderInfo.Bonds[(unsigned)bond].UnpackIndex];
7zEncode.cpp 473 int bond = _bindInfo.FindBond_for_UnpackStream(_DestOut_to_SrcIn[i]); local
475 if (bond < 0)
481 streamSize = _mixer->GetBondStreamSize(bond);
551 NCoderMixer2::CBond bond; local
552 bond.PackIndex = numOutStreams;
553 bond.UnpackIndex = i + 1; // it's next coder
554 _bindInfo.Bonds.Add(bond);
573 const CBond2 &bond = _options.Bonds[i]; local
574 if (bond.InCoder >= _bindInfo.Coders.Size()
575 || bond.OutCoder >= _bindInfo.Coders.Size()
609 int bond = _bindInfo.FindBond_for_PackStream(outIndex); local
631 NCoderMixer2::CBond bond; local
    [all...]
7zHandlerOut.cpp 104 CBond2 &bond = methodMode.Bonds[k]; local
105 bond.InCoder++;
106 bond.OutCoder++;
890 CBond2 bond; local
891 RINOK(ParseBond(name, bond.OutCoder, bond.OutStream));
896 RINOK(ParseBond(name, bond.InCoder, inStream));
901 _bonds.Add(bond);
914 const CBond2 &bond = _bonds[k]; local
915 if (bond.InCoder < (UInt32)numEmptyMethods ||
921 CBond2 &bond = _bonds[k]; local
930 const CBond2 &bond = _bonds[k]; local
    [all...]
7zOut.cpp 294 const CBond &bond = folder.Bonds[i]; local
295 WriteNumber(bond.PackIndex);
296 WriteNumber(bond.UnpackIndex);
7zUpdate.cpp 943 CBond2 bond; local
944 bond.OutCoder = 0;
945 bond.OutStream = 0;
946 bond.InCoder = c;
947 mode.Bonds.Add(bond);
981 CBond2 bond; local
982 bond.OutCoder = i;
983 bond.OutStream = 0;
984 bond.InCoder = i + 1;
985 mode.Bonds.Add(bond);
993 CBond2 bond; local
1023 CBond2 &bond = mode.Bonds[k]; local
    [all...]
  /external/autotest/client/bin/net/
net_utils.py 278 if bond().is_enabled():
302 if bond().is_enabled():
454 def bond(): function
  /external/lzma/CPP/7zip/Archive/Common/
CoderMixer2.cpp 149 int bond = BindInfo->FindBond_for_PackStream(ind); local
150 if (bond < 0)
152 if (!CheckCoder(BindInfo->Bonds[bond].UnpackIndex))
249 int bond = _bi.FindBond_for_UnpackStream(coderIndex); local
250 if (bond < 0)
255 _bi.GetCoder_for_Stream(_bi.Bonds[bond].PackIndex, coderIndex, coderStreamIndex);
257 UInt32 nextCoder = _bi.Stream_to_Coder[_bi.Bonds[bond].PackIndex];
270 int bond = _bi.FindBond_for_PackStream(streamIndex); local
271 if (bond < 0)
274 UInt32 nextCoder = _bi.Bonds[bond].UnpackIndex;
304 int bond = _bi.FindBond_for_PackStream(si); local
447 int bond = FindBond_for_Stream( local
501 int bond = FindBond_for_Stream( local
613 int bond = FindBond_for_Stream( local
677 int bond = _bi.FindBond_for_PackStream(st); local
965 int bond = _bi.FindBond_for_PackStream(st); local
999 const CBond &bond = _bi.Bonds[i]; local
    [all...]

Completed in 366 milliseconds