/external/webrtc/modules/audio_processing/ |
D | rms_level.cc | 110 RmsLevel::Levels RmsLevel::AverageAndPeak() { in AverageAndPeak() 114 Levels levels = (sample_count_ == 0) in AverageAndPeak() 115 ? Levels{RmsLevel::kMinLevelDb, RmsLevel::kMinLevelDb} in AverageAndPeak() 116 : Levels{ComputeRms(sum_square_ / sample_count_), in AverageAndPeak()
|
D | rms_level.h | 32 struct Levels { struct 62 Levels AverageAndPeak();
|
/external/mesa3d/src/gallium/frontends/nine/ |
D | texture9.c | 43 UINT Width, UINT Height, UINT Levels, in NineTexture9_ctor() argument 59 "pSharedHandle=%p\n", This, Width, Height, Levels, in NineTexture9_ctor() 71 (Pool == D3DPOOL_SYSTEMMEM && Levels == 1) || in NineTexture9_ctor() 75 (Pool != D3DPOOL_SYSTEMMEM && Pool != D3DPOOL_SCRATCH && Levels <= 1), in NineTexture9_ctor() 106 Levels = 0; in NineTexture9_ctor() 128 if (Levels) in NineTexture9_ctor() 129 info->last_level = Levels - 1; in NineTexture9_ctor() 383 UINT Width, UINT Height, UINT Levels, in NineTexture9_new() argument 391 Width, Height, Levels, in NineTexture9_new()
|
D | cubetexture9.c | 36 UINT EdgeLength, UINT Levels, in NineCubeTexture9_ctor() argument 53 This, pParams, EdgeLength, Levels, Usage, in NineCubeTexture9_ctor() 62 (Pool != D3DPOOL_SYSTEMMEM && Levels <= 1), D3DERR_INVALIDCALL); in NineCubeTexture9_ctor() 65 Levels = 0; in NineCubeTexture9_ctor() 87 if (Levels) in NineCubeTexture9_ctor() 88 info->last_level = Levels - 1; in NineCubeTexture9_ctor() 340 UINT EdgeLength, UINT Levels, in NineCubeTexture9_new() argument 348 EdgeLength, Levels, in NineCubeTexture9_new()
|
D | volumetexture9.c | 33 UINT Width, UINT Height, UINT Depth, UINT Levels, in NineVolumeTexture9_ctor() argument 48 This, pParams, Width, Height, Depth, Levels, in NineVolumeTexture9_ctor() 85 if (Levels) in NineVolumeTexture9_ctor() 86 info->last_level = Levels - 1; in NineVolumeTexture9_ctor() 282 UINT Width, UINT Height, UINT Depth, UINT Levels, in NineVolumeTexture9_new() argument 290 Width, Height, Depth, Levels, in NineVolumeTexture9_new()
|
D | texture9.h | 44 UINT Width, UINT Height, UINT Levels,
|
D | volumetexture9.h | 43 UINT Width, UINT Height, UINT Depth, UINT Levels,
|
D | cubetexture9.h | 44 UINT EdgeLength, UINT Levels,
|
D | device9.h | 320 UINT Levels, 332 UINT Levels, 342 UINT Levels,
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | CheckHtmlFiles.java | 260 static class Levels implements Comparable<Levels> { class in CheckHtmlFiles 264 public Levels(int h2_start) { in Levels() method in CheckHtmlFiles.Levels 269 public Levels() { in Levels() method in CheckHtmlFiles.Levels 278 Levels next(int level, Output<Boolean> missingLevel) { in next() 320 public static Levels parse(String group) { in parse() 321 Levels result = new Levels(); in parse() 339 public int compareTo(Levels other) { in compareTo() 348 public void set(Levels other) { in set() 356 private Levels levels = new Levels(); 428 public void setLevels(int line, Levels levels, Set<String> errors) { in setLevels() [all …]
|
/external/llvm/lib/Analysis/ |
D | CFLGraph.h | 53 std::vector<NodeInfo> Levels; variable 57 auto NumLevels = Levels.size(); in addNodeToLevel() 60 Levels.resize(Level + 1); in addNodeToLevel() 65 assert(Level < Levels.size()); in getNodeInfoAtLevel() 66 return Levels[Level]; in getNodeInfoAtLevel() 69 assert(Level < Levels.size()); in getNodeInfoAtLevel() 70 return Levels[Level]; in getNodeInfoAtLevel() 73 unsigned getNumLevels() const { return Levels.size(); } in getNumLevels()
|
/external/llvm-project/clang/lib/AST/Interp/ |
D | InterpFrame.cpp | 91 llvm::SmallVector<Pointer, 2> Levels; in print() local 93 Levels.push_back(F); in print() 98 for (auto It = Levels.rbegin(); It != Levels.rend(); ++It) { in print()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CFLGraph.h | 74 std::vector<NodeInfo> Levels; variable 78 auto NumLevels = Levels.size(); in addNodeToLevel() 81 Levels.resize(Level + 1); in addNodeToLevel() 86 assert(Level < Levels.size()); in getNodeInfoAtLevel() 87 return Levels[Level]; in getNodeInfoAtLevel() 90 assert(Level < Levels.size()); in getNodeInfoAtLevel() 91 return Levels[Level]; in getNodeInfoAtLevel() 94 unsigned getNumLevels() const { return Levels.size(); } in getNumLevels()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | CFLGraph.h | 74 std::vector<NodeInfo> Levels; variable 78 auto NumLevels = Levels.size(); in addNodeToLevel() 81 Levels.resize(Level + 1); in addNodeToLevel() 86 assert(Level < Levels.size()); in getNodeInfoAtLevel() 87 return Levels[Level]; in getNodeInfoAtLevel() 90 assert(Level < Levels.size()); in getNodeInfoAtLevel() 91 return Levels[Level]; in getNodeInfoAtLevel() 94 unsigned getNumLevels() const { return Levels.size(); } in getNumLevels()
|
/external/llvm/include/llvm/Analysis/ |
D | DependenceAnalysis.h | 223 unsigned Levels); 226 : Dependence(std::move(RHS)), Levels(RHS.Levels), in FullDependence() 245 unsigned getLevels() const override { return Levels; } in getLevels() 273 unsigned short Levels;
|
/external/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 75 void indent(int Levels = 1) { IndentLevel += Levels; } 77 void unindent(int Levels = 1) { 78 IndentLevel = std::max(0, IndentLevel - Levels);
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 74 void indent(int Levels = 1) { IndentLevel += Levels; } 76 void unindent(int Levels = 1) { 77 IndentLevel = std::max(0, IndentLevel - Levels);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 74 void indent(int Levels = 1) { IndentLevel += Levels; } 76 void unindent(int Levels = 1) { 77 IndentLevel = std::max(0, IndentLevel - Levels);
|
/external/tensorflow/tensorflow/core/profiler/ |
D | profiler_options.proto | 30 // Levels of host tracing: (version >= 1) 40 // Levels of device tracing: (version >= 1)
|
/external/selinux/mcstrans/share/examples/pipes/ |
D | setrans.conf | 8 Base=Sensitivity Levels
|
/external/selinux/mcstrans/share/examples/nato/ |
D | setrans.conf | 8 Base=Sensitivity Levels
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | DependenceAnalysis.h | 217 unsigned Levels); 234 unsigned getLevels() const override { return Levels; } in getLevels() 262 unsigned short Levels;
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | DependenceAnalysis.h | 218 unsigned Levels); 235 unsigned getLevels() const override { return Levels; } in getLevels() 263 unsigned short Levels;
|
/external/rust/crates/libz-sys/src/zlib/contrib/delphi/ |
D | ZLib.pas | 409 Levels: array [TCompressionLevel] of ShortInt = 415 CCheck(deflateInit_(FZRec, Levels[CompressionLevel], zlib_version, sizeof(FZRec)));
|
/external/grpc-grpc/doc/ |
D | compression.md | 69 ### Compression Levels and Algorithms 76 Levels map to concrete algorithms and/or their settings (such as "low" mapping
|