Home
last modified time | relevance | path

Searched refs:Levels (Results 1 – 25 of 52) sorted by relevance

123

/external/mesa3d/src/gallium/state_trackers/nine/
Dtexture9.c43 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()
382 UINT Width, UINT Height, UINT Levels, in NineTexture9_new() argument
390 Width, Height, Levels, in NineTexture9_new()
Dcubetexture9.c36 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()
339 UINT EdgeLength, UINT Levels, in NineCubeTexture9_new() argument
347 EdgeLength, Levels, in NineCubeTexture9_new()
Dvolumetexture9.c33 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()
280 UINT Width, UINT Height, UINT Depth, UINT Levels, in NineVolumeTexture9_new() argument
288 Width, Height, Depth, Levels, in NineVolumeTexture9_new()
Dvolumetexture9.h43 UINT Width, UINT Height, UINT Depth, UINT Levels,
Dtexture9.h44 UINT Width, UINT Height, UINT Levels,
Dcubetexture9.h44 UINT EdgeLength, UINT Levels,
Ddevice9.h306 UINT Levels,
318 UINT Levels,
328 UINT Levels,
Dnine_lock.c754 UINT Levels, in LockDevice9_CreateTexture() argument
763 …r = NineDevice9_CreateTexture(This, Width, Height, Levels, Usage, Format, Pool, ppTexture, pShared… in LockDevice9_CreateTexture()
773 UINT Levels, in LockDevice9_CreateVolumeTexture() argument
782 …r = NineDevice9_CreateVolumeTexture(This, Width, Height, Depth, Levels, Usage, Format, Pool, ppVol… in LockDevice9_CreateVolumeTexture()
790 UINT Levels, in LockDevice9_CreateCubeTexture() argument
799 …r = NineDevice9_CreateCubeTexture(This, EdgeLength, Levels, Usage, Format, Pool, ppCubeTexture, pS… in LockDevice9_CreateCubeTexture()
Ddevice9.c995 UINT Levels, in NineDevice9_CreateTexture() argument
1006 "ppOut=%p pSharedHandle=%p\n", This, Width, Height, Levels, in NineDevice9_CreateTexture()
1016 hr = NineTexture9_new(This, Width, Height, Levels, Usage, Format, Pool, in NineDevice9_CreateTexture()
1029 UINT Levels, in NineDevice9_CreateVolumeTexture() argument
1040 "ppOut=%p pSharedHandle=%p\n", This, Width, Height, Depth, Levels, in NineDevice9_CreateVolumeTexture()
1049 hr = NineVolumeTexture9_new(This, Width, Height, Depth, Levels, in NineDevice9_CreateVolumeTexture()
1060 UINT Levels, in NineDevice9_CreateCubeTexture() argument
1071 "pSharedHandle=%p\n", This, EdgeLength, Levels, in NineDevice9_CreateCubeTexture()
1081 hr = NineCubeTexture9_new(This, EdgeLength, Levels, Usage, Format, Pool, in NineDevice9_CreateCubeTexture()
/external/cldr/tools/java/org/unicode/cldr/tool/
DCheckHtmlFiles.java259 static class Levels implements Comparable<Levels> { class in CheckHtmlFiles
263 public Levels(int h2_start) { in Levels() method in CheckHtmlFiles.Levels
268 public Levels() { in Levels() method in CheckHtmlFiles.Levels
277 Levels next(int level, Output<Boolean> missingLevel) { in next()
319 public static Levels parse(String group) { in parse()
320 Levels result = new Levels(); in parse()
338 public int compareTo(Levels other) { in compareTo()
347 public void set(Levels other) { in set()
355 private Levels levels = new Levels();
427 public void setLevels(int line, Levels levels, Set<String> errors) { in setLevels()
[all …]
/external/llvm/lib/Analysis/
DCFLGraph.h53 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()
DDependenceAnalysis.cpp239 : Dependence(Source, Destination), Levels(CommonLevels), in FullDependence()
250 assert(0 < Level && Level <= Levels && "Level out of range"); in getDirection()
257 assert(0 < Level && Level <= Levels && "Level out of range"); in getDistance()
266 assert(0 < Level && Level <= Levels && "Level out of range"); in isScalar()
274 assert(0 < Level && Level <= Levels && "Level out of range"); in isPeelFirst()
282 assert(0 < Level && Level <= Levels && "Level out of range"); in isPeelLast()
289 assert(0 < Level && Level <= Levels && "Level out of range"); in isSplitable()
585 unsigned Levels = getLevels(); in dump() local
587 for (unsigned II = 1; II <= Levels; ++II) { in dump()
612 if (II < Levels) in dump()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DCFLGraph.h76 std::vector<NodeInfo> Levels; variable
80 auto NumLevels = Levels.size(); in addNodeToLevel()
83 Levels.resize(Level + 1); in addNodeToLevel()
88 assert(Level < Levels.size()); in getNodeInfoAtLevel()
89 return Levels[Level]; in getNodeInfoAtLevel()
92 assert(Level < Levels.size()); in getNodeInfoAtLevel()
93 return Levels[Level]; in getNodeInfoAtLevel()
96 unsigned getNumLevels() const { return Levels.size(); } in getNumLevels()
DDependenceAnalysis.cpp239 : Dependence(Source, Destination), Levels(CommonLevels), in FullDependence()
250 assert(0 < Level && Level <= Levels && "Level out of range"); in getDirection()
257 assert(0 < Level && Level <= Levels && "Level out of range"); in getDistance()
266 assert(0 < Level && Level <= Levels && "Level out of range"); in isScalar()
274 assert(0 < Level && Level <= Levels && "Level out of range"); in isPeelFirst()
282 assert(0 < Level && Level <= Levels && "Level out of range"); in isPeelLast()
289 assert(0 < Level && Level <= Levels && "Level out of range"); in isSplitable()
586 unsigned Levels = getLevels(); in dump() local
588 for (unsigned II = 1; II <= Levels; ++II) { in dump()
613 if (II < Levels) in dump()
/external/llvm/include/llvm/Analysis/
DDependenceAnalysis.h223 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/
DScopedPrinter.h75 void indent(int Levels = 1) { IndentLevel += Levels; }
77 void unindent(int Levels = 1) {
78 IndentLevel = std::max(0, IndentLevel - Levels);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DScopedPrinter.h75 void indent(int Levels = 1) { IndentLevel += Levels; }
77 void unindent(int Levels = 1) {
78 IndentLevel = std::max(0, IndentLevel - Levels);
/external/selinux/mcstrans/share/examples/pipes/
Dsetrans.conf8 Base=Sensitivity Levels
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DDependenceAnalysis.h218 unsigned Levels);
235 unsigned getLevels() const override { return Levels; } in getLevels()
263 unsigned short Levels;
/external/selinux/mcstrans/share/examples/nato/
Dsetrans.conf8 Base=Sensitivity Levels
/external/zlib/src/contrib/delphi/
DZLib.pas409 Levels: array [TCompressionLevel] of ShortInt =
415 CCheck(deflateInit_(FZRec, Levels[CompressionLevel], zlib_version, sizeof(FZRec)));
/external/grpc-grpc/doc/
Dcompression.md69 ### Compression Levels and Algorithms
76 Levels map to concrete algorithms and/or their settings (such as "low" mapping
Dcompression_cookbook.md44 ## Levels vs Algorithms
/external/llvm/lib/Transforms/Scalar/
DLoopInterchange.cpp130 unsigned Levels = D->getLevels(); in populateDependencyMatrix() local
132 for (unsigned II = 1; II <= Levels; ++II) { in populateDependencyMatrix()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopInterchange.cpp133 unsigned Levels = D->getLevels(); in populateDependencyMatrix() local
135 for (unsigned II = 1; II <= Levels; ++II) { in populateDependencyMatrix()

123