Home
last modified time | relevance | path

Searched refs:Props (Results 1 – 12 of 12) sorted by relevance

/external/lzma/CPP/7zip/Common/
DMethodProps.h29 CObjectVector<CProp> Props; member
31 void Clear() { Props.Clear(); } in Clear()
35 FOR_VECTOR (i, Props) in AreThereNonOptionalProps()
36 if (!Props[i].IsOptional) in AreThereNonOptionalProps()
49 Props.Add(prop); in AddPropString()
64 if (Props[i].Value.vt == VT_UI4) in Get_NumThreads()
65 return (int)Props[i].Value.ulVal; in Get_NumThreads()
74 if (Props[i].Value.vt == VT_UI4) in Get_DicSize()
76 res = Props[i].Value.ulVal; in Get_DicSize()
88 if (Props[i].Value.vt == VT_UI4) in Get_Lzma_Algo()
[all …]
DMethodProps.cpp144 Props.Add(prop); in AddProp32()
184 CCoderProps coderProps(Props.Size() + (dataSizeReduce ? 1 : 0)); in SetCoderProps()
185 FOR_VECTOR (i, Props) in SetCoderProps()
186 coderProps.AddProp(Props[i]); in SetCoderProps()
200 for (int i = Props.Size() - 1; i >= 0; i--) in FindProp()
201 if (Props[i].Id == id) in FindProp()
211 if (Props[i].Value.vt != VT_UI4) in GetLevel()
213 UInt32 level = Props[i].Value.ulVal; in GetLevel()
367 Props.Add(prop); in SetParam()
419 Props.Add(prop); in ParseParamsFromPROPVARIANT()
/external/llvm/lib/Transforms/Scalar/
DLoopUnswitch.cpp275 LoopProperties &Props = PropsIt->second; in countLoop() local
296 Props.SizeEstimation = Metrics.NumInsts; in countLoop()
297 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation); in countLoop()
298 Props.WasUnswitchedCount = 0; in countLoop()
299 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount; in countLoop()
310 CurrentLoopProperties = &Props; in countLoop()
311 CurLoopInstructions = &Props.UnswitchedVals; in countLoop()
322 LoopProperties &Props = LIt->second; in forgetLoop() local
323 MaxSize += (Props.CanBeUnswitchedCount + Props.WasUnswitchedCount) * in forgetLoop()
324 Props.SizeEstimation; in forgetLoop()
/external/lzma/CPP/7zip/Archive/7z/
D7zEncode.cpp246 outStreamSpec->CopyToBuffer(encodingInfo.Props); in Encode()
292 folderItem.Coders[numMethods - 1 - i].Props = _codersInfo[i].Props; in Encode()
D7zItem.h25 CByteBuffer Props; member
D7zOut.cpp261 size_t propsSize = coder.Props.Size(); in WriteFolder()
286 WriteBytes(coder.Props, propsSize); in WriteFolder()
D7zDecode.cpp241 const CByteBuffer &props = coderInfo.Props; in Decode()
D7zIn.cpp455 coder.Props.Alloc((size_t)propsSize); in ParseFolder()
456 ReadBytes((Byte *)coder.Props, (size_t)propsSize); in ParseFolder()
459 coder.Props.Free(); in ParseFolder()
/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp875 FOR_VECTOR (j, m.Props) in UpdateItems()
877 const CProp &prop = m.Props[j]; in UpdateItems()
910 FOR_VECTOR (j, _filterMethod.Props) in UpdateItems()
912 const CProp &prop = _filterMethod.Props[j]; in UpdateItems()
/external/pdfium/third_party/lcms2-2.6/src/
Dcmscgats.c2403 char **Props; in cmsIT8EnumProperties() local
2418 Props = (char **) AllocChunk(it8, sizeof(char *) * n); in cmsIT8EnumProperties()
2423 Props[n++] = p -> Keyword; in cmsIT8EnumProperties()
2426 *PropertyNames = Props; in cmsIT8EnumProperties()
2435 const char **Props; in cmsIT8EnumPropertyMulti() local
2457 Props = (const char **) AllocChunk(it8, sizeof(char *) * n); in cmsIT8EnumPropertyMulti()
2463 Props[n++] = p ->Subkey; in cmsIT8EnumPropertyMulti()
2466 *SubpropertyNames = Props; in cmsIT8EnumPropertyMulti()
/external/llvm/utils/TableGen/
DCodeGenRegisters.cpp724 StringRef Name, Key Props) in CodeGenRegisterClass() argument
725 : Members(*Props.Members), in CodeGenRegisterClass()
730 SpillSize(Props.SpillSize), in CodeGenRegisterClass()
731 SpillAlignment(Props.SpillAlignment), in CodeGenRegisterClass()
DCodeGenRegisters.h423 CodeGenRegisterClass(CodeGenRegBank&, StringRef Name, Key Props);