HomeSort by relevance Sort by last modified time
    Searched refs:Depth (Results 1 - 25 of 684) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javassist/src/main/javassist/runtime/
Cflow.java 26 private static class Depth {
27 private int depth; field in class:Cflow.Depth
28 Depth() { depth = 0; }
29 int get() { return depth; }
30 void inc() { ++depth; }
31 void dec() { --depth; }
35 return new Depth();
41 public void enter() { ((Depth)get()).inc(); }
46 public void exit() { ((Depth)get()).dec();
    [all...]
  /external/libcxxabi/test/
dynamic_cast_stress.pass.cpp 16 template <std::size_t Indx, std::size_t Depth>
18 : public virtual C<Indx, Depth-1>,
19 public virtual C<Indx+1, Depth-1>
30 template <std::size_t Indx, std::size_t Depth>
32 : public virtual C<Indx, Depth-1>,
33 public virtual C<Indx+1, Depth-1>
37 template <class Indx, std::size_t Depth>
40 template <std::size_t ...Indx, std::size_t Depth>
41 struct makeB<std::__tuple_indices<Indx...>, Depth>
42 : public B<Indx, Depth>..
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/
dynamic_cast_stress.pass.cpp 16 template <std::size_t Indx, std::size_t Depth>
18 : public virtual C<Indx, Depth-1>,
19 public virtual C<Indx+1, Depth-1>
30 template <std::size_t Indx, std::size_t Depth>
32 : public virtual C<Indx, Depth-1>,
33 public virtual C<Indx+1, Depth-1>
37 template <class Indx, std::size_t Depth>
40 template <std::size_t ...Indx, std::size_t Depth>
41 struct makeB<std::__tuple_indices<Indx...>, Depth>
42 : public B<Indx, Depth>..
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth;
50 Scoreboard():Data(nullptr), Depth(0), Head(0) { }
55 size_t getDepth() const { return Depth; }
57 // Depth is expected to be a power-of-2.
58 assert(Depth && !(Depth & (Depth - 1)) &&
61 return Data[(Head + idx) & (Depth-1)];
66 Depth = d;
67 Data = new unsigned[Depth];
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 47 size_t Depth;
51 Scoreboard():Data(NULL), Depth(0), Head(0) { }
56 size_t getDepth() const { return Depth; }
58 // Depth is expected to be a power-of-2.
59 assert(Depth && !(Depth & (Depth - 1)) &&
62 return Data[(Head + idx) & (Depth-1)];
67 Depth = d;
68 Data = new unsigned[Depth];
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth = 0;
58 size_t getDepth() const { return Depth; }
61 // Depth is expected to be a power-of-2.
62 assert(Depth && !(Depth & (Depth - 1)) &&
65 return Data[(Head + idx) & (Depth-1)];
70 Depth = d;
71 Data = new unsigned[Depth];
74 memset(Data, 0, Depth * sizeof(Data[0]))
    [all...]
  /external/mesa3d/src/mesa/main/
depth.c 29 #include "depth.h"
42 _mesa_ClearDepth( GLclampd depth )
47 _mesa_debug(ctx, "glClearDepth(%f)\n", depth);
49 ctx->Depth.Clear = CLAMP( depth, 0.0, 1.0 );
54 _mesa_ClearDepthf( GLclampf depth )
56 _mesa_ClearDepth(depth);
68 if (ctx->Depth.Func == func)
87 ctx->Depth.Func = func;
104 * GL_TRUE indicates depth buffer writing is enabled (default
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugInfoEntry.h 27 /// The integer depth of this DIE within the compile unit DIEs where the
28 /// compile/type unit DIE has a depth of zero.
29 uint32_t Depth = 0;
45 uint32_t Depth);
48 uint32_t getDepth() const { return Depth; }
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFDebugInfoEntry.h 27 /// The integer depth of this DIE within the compile unit DIEs where the
28 /// compile/type unit DIE has a depth of zero.
29 uint32_t Depth = 0;
45 uint32_t Depth);
48 uint32_t getDepth() const { return Depth; }
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFDebugInfoEntry.h 27 /// The integer depth of this DIE within the compile unit DIEs where the
28 /// compile/type unit DIE has a depth of zero.
29 uint32_t Depth = 0;
45 uint32_t Depth);
48 uint32_t getDepth() const { return Depth; }
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFDebugInfoEntry.h 28 /// The integer depth of this DIE within the compile unit DIEs where the
29 /// compile/type unit DIE has a depth of zero.
30 uint32_t Depth = 0;
45 uint32_t Depth);
48 uint32_t getDepth() const { return Depth; }
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFDebugInfoEntry.h 28 /// The integer depth of this DIE within the compile unit DIEs where the
29 /// compile/type unit DIE has a depth of zero.
30 uint32_t Depth = 0;
45 uint32_t Depth);
48 uint32_t getDepth() const { return Depth; }

Completed in 1045 milliseconds

1 2 3 4 5 6 7 8 91011>>