/external/lzma/CPP/7zip/Common/ |
D | MethodProps.h | 32 CObjectVector<CProp> Props; member 34 void Clear() { Props.Clear(); } in Clear() 38 FOR_VECTOR (i, Props) in AreThereNonOptionalProps() 39 if (!Props[i].IsOptional) in AreThereNonOptionalProps() 50 CProp &prop = Props.AddNew(); in AddProp_Ascii() 68 if (Props[i].Value.vt == VT_UI4) in Get_NumThreads() 69 return (int)Props[i].Value.ulVal; in Get_NumThreads() 78 if (Props[i].Value.vt == VT_UI4) in Get_DicSize() 80 res = Props[i].Value.ulVal; in Get_DicSize() 92 if (Props[i].Value.vt == VT_UI4) in Get_Lzma_Algo() [all …]
|
D | MethodProps.cpp | 166 CProp &prop = Props.AddNew(); in AddProp32() 174 CProp &prop = Props.AddNew(); in AddPropBool() 217 CCoderProps coderProps(Props.Size() + (dataSizeReduce ? 1 : 0)); in SetCoderProps() 218 FOR_VECTOR (i, Props) in SetCoderProps() 219 coderProps.AddProp(Props[i]); in SetCoderProps() 233 for (int i = Props.Size() - 1; i >= 0; i--) in FindProp() 234 if (Props[i].Id == id) in FindProp() 244 if (Props[i].Value.vt != VT_UI4) in GetLevel() 246 UInt32 level = Props[i].Value.ulVal; in GetLevel() 427 Props.Add(prop); in SetParam() [all …]
|
/external/skia/infra/bots/task_drivers/run_wasm_gm_tests/ |
D | run_wasm_gm_tests.go | 126 ctx = td.StartStep(ctx, td.Props("setup goldctl").Infra()) 166 ctx = td.StartStep(ctx, td.Props("download known hashes").Infra()) 183 ctx = td.StartStep(ctx, td.Props("setup npm").Infra()) 193 ctx = td.StartStep(ctx, td.Props("run GMs and unit tests")) 196 err := td.Do(ctx, td.Props("Run GMs and Unit Tests"), func(ctx context.Context) error { 226 ctx = td.StartStep(ctx, td.Props("process test data").Infra()) 233 err := td.Do(ctx, td.Props("Load results from "+resultFile), func(ctx context.Context) error { 247 …err = td.Do(ctx, td.Props(fmt.Sprintf("Call goldtl on %d results", len(results))), func(ctx contex… 282 ctx = td.StartStep(ctx, td.Props("finalize goldctl data").Infra())
|
/external/skia/infra/bots/task_drivers/perf_puppeteer_render_skps/ |
D | perf_puppeteer_render_skps.go | 122 ctx = td.StartStep(ctx, td.Props("setup").Infra()) 158 ctx = td.StartStep(ctx, td.Props("perf skps in "+skpsPath)) 163 err := td.Do(ctx, td.Props("locate skpfiles"), func(ctx context.Context) error { 190 err = td.Do(ctx, td.Props(fmt.Sprintf("Benchmark %s", name)), func(ctx context.Context) error { 237 ctx = td.StartStep(ctx, td.Props("process perf output "+perfJSONPath)) 241 err := td.Do(ctx, td.Props("locate input JSON files"), func(ctx context.Context) error { 257 err = td.Do(ctx, td.Props("Process "+skp), func(ctx context.Context) error { 286 …err = td.Do(ctx, td.Props("Writing perf JSON file to "+outputFilePath), func(ctx context.Context) …
|
/external/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/ |
D | perf_puppeteer_skottie_frames.go | 121 ctx = td.StartStep(ctx, td.Props("setup").Infra()) 138 ctx = td.StartStep(ctx, td.Props("perf lotties in "+lottiesPath)) 151 err := td.Do(ctx, td.Props("locate lottie folders"), func(ctx context.Context) error { 171 err = td.Do(ctx, td.Props("Benchmark "+name), func(ctx context.Context) error { 218 ctx = td.StartStep(ctx, td.Props("process perf output "+perfJSONPath)) 222 err := td.Do(ctx, td.Props("locate input JSON files"), func(ctx context.Context) error { 238 err = td.Do(ctx, td.Props("Process "+lottie), func(ctx context.Context) error { 265 …err = td.Do(ctx, td.Props("Writing perf JSON file to "+outputFilePath), func(ctx context.Context) …
|
/external/skia/infra/bots/task_drivers/perf_puppeteer_canvas/ |
D | perf_puppeteer_canvas.go | 117 ctx = td.StartStep(ctx, td.Props("setup").Infra()) 132 ctx = td.StartStep(ctx, td.Props("perf canvas tests")) 135 err := td.Do(ctx, td.Props("Benchmark Canvas"), func(ctx context.Context) error { 189 ctx = td.StartStep(ctx, td.Props("process perf output "+perfJSONPath)) 192 err := td.Do(ctx, td.Props("Process "+perfJSONPath), func(ctx context.Context) error { 224 …err = td.Do(ctx, td.Props("Writing perf JSON file to "+outputFilePath), func(ctx context.Context) …
|
/external/skia/infra/bots/task_drivers/cifuzz/ |
D | cifuzz.go | 108 ctx = td.StartStep(ctx, td.Props("setup cifuzz").Infra()) 140 ctx = td.StartStep(ctx, td.Props("prepare skia checkout for build").Infra()) 159 ctx = td.StartStep(ctx, td.Props("build skia fuzzers and run them")) 217 ctx = td.StartStep(ctx, td.Props("copy output directory").Infra())
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecord.cpp | 128 uint16_t Props; in deserialize() local 134 Props = L->Properties; in deserialize() 135 uint16_t WrtValue = (Props & WinRTKindMask) >> WinRTKindShift; in deserialize() 137 uint16_t HfaMask = (Props & HfaKindMask) >> HfaKindShift; in deserialize() 140 ClassOptions Options = static_cast<ClassOptions>(Props); in deserialize() 150 uint16_t Props; in deserialize() local 156 Props = L->Properties; in deserialize() 158 uint16_t HfaMask = (Props & HfaKindMask) >> HfaKindShift; in deserialize() 160 ClassOptions Options = static_cast<ClassOptions>(Props); in deserialize()
|
D | TypeDumper.cpp | 261 uint16_t Props = static_cast<uint16_t>(Class.getOptions()); in visitClass() local 263 W->printFlags("Properties", Props, makeArrayRef(ClassOptionNames)); in visitClass() 269 if (Props & uint16_t(ClassOptions::HasUniqueName)) in visitClass() 276 uint16_t Props = static_cast<uint16_t>(Union.getOptions()); in visitUnion() local 278 W->printFlags("Properties", Props, makeArrayRef(ClassOptionNames)); in visitUnion() 282 if (Props & uint16_t(ClassOptions::HasUniqueName)) in visitUnion() 289 uint16_t Props = static_cast<uint16_t>(Enum.getOptions()); in visitEnum() local 296 if (Props & uint16_t(ClassOptions::HasUniqueName)) in visitEnum()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopUnswitch.cpp | 271 LoopProperties &Props = PropsIt->second; in countLoop() local 292 Props.SizeEstimation = Metrics.NumInsts; in countLoop() 293 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation); in countLoop() 294 Props.WasUnswitchedCount = 0; in countLoop() 295 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount; in countLoop() 306 CurrentLoopProperties = &Props; in countLoop() 307 CurLoopInstructions = &Props.UnswitchedVals; in countLoop() 318 LoopProperties &Props = LIt->second; in forgetLoop() local 319 MaxSize += (Props.CanBeUnswitchedCount + Props.WasUnswitchedCount) * in forgetLoop() 320 Props.SizeEstimation; in forgetLoop()
|
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/akka/ |
D | PingPongAkkaBenchmark.kt | 74 val pongRef = system.actorOf(Props.create(PongActorAkka::class.java) in runPingPongs() 76 val pingRef = system.actorOf(Props.create(PingActorAkka::class.java, pongRef, latch) in runPingPongs()
|
D | StatefulActorAkkaBenchmark.kt | 111 … system.actorOf(Props.create(RequestorActor::class.java, computations, initLatch, stopLatch) in createRequestorActors() 118 system.actorOf(Props.create( in createComputationActors()
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | TypeDumpVisitor.cpp | 247 uint16_t Props = static_cast<uint16_t>(Class.getOptions()); in visitKnownRecord() local 249 W->printFlags("Properties", Props, makeArrayRef(ClassOptionNames)); in visitKnownRecord() 255 if (Props & uint16_t(ClassOptions::HasUniqueName)) in visitKnownRecord() 261 uint16_t Props = static_cast<uint16_t>(Union.getOptions()); in visitKnownRecord() local 263 W->printFlags("Properties", Props, makeArrayRef(ClassOptionNames)); in visitKnownRecord() 267 if (Props & uint16_t(ClassOptions::HasUniqueName)) in visitKnownRecord() 273 uint16_t Props = static_cast<uint16_t>(Enum.getOptions()); in visitKnownRecord() local 280 if (Props & uint16_t(ClassOptions::HasUniqueName)) in visitKnownRecord()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | TypeDumpVisitor.cpp | 247 uint16_t Props = static_cast<uint16_t>(Class.getOptions()); in visitKnownRecord() local 249 W->printFlags("Properties", Props, makeArrayRef(ClassOptionNames)); in visitKnownRecord() 255 if (Props & uint16_t(ClassOptions::HasUniqueName)) in visitKnownRecord() 261 uint16_t Props = static_cast<uint16_t>(Union.getOptions()); in visitKnownRecord() local 263 W->printFlags("Properties", Props, makeArrayRef(ClassOptionNames)); in visitKnownRecord() 267 if (Props & uint16_t(ClassOptions::HasUniqueName)) in visitKnownRecord() 273 uint16_t Props = static_cast<uint16_t>(Enum.getOptions()); in visitKnownRecord() local 280 if (Props & uint16_t(ClassOptions::HasUniqueName)) in visitKnownRecord()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | LoopUnswitch.cpp | 285 LoopProperties &Props = PropsIt->second; in countLoop() local 306 Props.SizeEstimation = Metrics.NumInsts; in countLoop() 307 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation); in countLoop() 308 Props.WasUnswitchedCount = 0; in countLoop() 309 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount; in countLoop() 320 CurrentLoopProperties = &Props; in countLoop() 321 CurLoopInstructions = &Props.UnswitchedVals; in countLoop() 331 LoopProperties &Props = LIt->second; in forgetLoop() local 332 MaxSize += (Props.CanBeUnswitchedCount + Props.WasUnswitchedCount) * in forgetLoop() 333 Props.SizeEstimation; in forgetLoop()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopUnswitch.cpp | 282 LoopProperties &Props = PropsIt->second; in countLoop() local 303 Props.SizeEstimation = Metrics.NumInsts; in countLoop() 304 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation); in countLoop() 305 Props.WasUnswitchedCount = 0; in countLoop() 306 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount; in countLoop() 317 CurrentLoopProperties = &Props; in countLoop() 318 CurLoopInstructions = &Props.UnswitchedVals; in countLoop() 328 LoopProperties &Props = LIt->second; in forgetLoop() local 329 MaxSize += (Props.CanBeUnswitchedCount + Props.WasUnswitchedCount) * in forgetLoop() 330 Props.SizeEstimation; in forgetLoop()
|
/external/llvm-project/clang/include/clang/Index/ |
D | IndexSymbol.h | 167 void applyForEachSymbolProperty(SymbolPropertySet Props, 169 void printSymbolProperties(SymbolPropertySet Props, raw_ostream &OS);
|
/external/skia/infra/bots/task_drivers/g3_canary/ |
D | g3_canary.go | 95 …err = td.Do(ctx, td.Props("Trigger new task if not already running"), func(ctx context.Context) er… 131 ctx = td.StartStep(ctx, td.Props("Trigger canary roll")) 158 ctx := td.StartStep(parentCtx, td.Props("Wait for canary roll"))
|
/external/skia/infra/bots/task_drivers/compile_wasm_gm_tests/ |
D | compile_wasm_gm_tests.go | 75 ctx = td.StartStep(ctx, td.Props("setup docker").Infra()) 87 ctx = td.StartStep(ctx, td.Props("copy compiled JS and wasm into output"))
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonConstPropagation.cpp | 373 bool evaluateCMPpi(uint32_t Cmp, uint32_t Props, const APInt &A2, 436 uint32_t Props = (NonZero | Finite); in deduce() local 438 return Props | NegOrZero; in deduce() 439 return Props | PosOrZero; in deduce() 444 uint32_t Props = CF->isNegative() ? (NegOrZero|NonZero) in deduce() local 447 return (Props & ~NumericProperties) | (Zero|Finite); in deduce() 448 Props = (Props & ~NumericProperties) | NonZero; in deduce() 450 return (Props & ~NumericProperties) | NaN; in deduce() 453 return (Props & ~NumericProperties) | Infinity; in deduce() 454 Props |= Finite; in deduce() [all …]
|
/external/llvm-project/llvm/lib/Target/Hexagon/ |
D | HexagonConstPropagation.cpp | 372 bool evaluateCMPpi(uint32_t Cmp, uint32_t Props, const APInt &A2, 435 uint32_t Props = (NonZero | Finite); in deduce() local 437 return Props | NegOrZero; in deduce() 438 return Props | PosOrZero; in deduce() 443 uint32_t Props = CF->isNegative() ? (NegOrZero|NonZero) in deduce() local 446 return (Props & ~NumericProperties) | (Zero|Finite); in deduce() 447 Props = (Props & ~NumericProperties) | NonZero; in deduce() 449 return (Props & ~NumericProperties) | NaN; in deduce() 452 return (Props & ~NumericProperties) | Infinity; in deduce() 453 Props |= Finite; in deduce() [all …]
|
/external/skia/infra/bots/task_drivers/canary/ |
D | canary.go | 98 …if err := td.Do(ctx, td.Props(fmt.Sprintf("Trigger canary roll%s", retryText)).Infra(), func(ctx c… 125 ctx := td.StartStep(parentCtx, td.Props(stepName))
|
/external/llvm-project/clang/lib/Index/ |
D | IndexSymbol.cpp | 559 void index::applyForEachSymbolProperty(SymbolPropertySet Props, in applyForEachSymbolProperty() argument 562 if (Props & (SymbolPropertySet)SymbolProperty::K) \ in applyForEachSymbolProperty() 578 void index::printSymbolProperties(SymbolPropertySet Props, raw_ostream &OS) { in printSymbolProperties() argument 580 applyForEachSymbolProperty(Props, [&](SymbolProperty Prop) { in printSymbolProperties()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zItem.h | 23 CByteBuffer Props; member
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | AMDGPUPropagateAttributes.cpp | 106 Clone(const FnProperties &Props, Function *OrigF, Function *NewF) : in Clone() argument 107 Properties(Props), OrigF(OrigF), NewF(NewF) {} in Clone()
|