HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 126 - 150 of 3688) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
move_assign.pass.cpp 42 // it.depth() == 1
50 while (it.depth() != 1) {
54 TEST_ASSERT(it.depth() == 1);
64 // it.depth() == 2
72 while (it.depth() != 2) {
76 TEST_ASSERT(it.depth() == 2);
101 TEST_CHECK(to.depth() == from_copy.depth());
129 TEST_CHECK(it2.depth() != it.depth());
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
copy_assign.pass.cpp 36 // it.depth() == 1
44 while (it.depth() != 1) {
48 TEST_ASSERT(it.depth() == 1);
59 // it.depth() == 2
67 while (it.depth() != 2) {
71 TEST_ASSERT(it.depth() == 2);
92 TEST_CHECK(to.depth() == from.depth());
117 TEST_CHECK(it2.depth() != it.depth());
    [all...]
move_assign.pass.cpp 42 // it.depth() == 1
50 while (it.depth() != 1) {
54 TEST_ASSERT(it.depth() == 1);
64 // it.depth() == 2
72 while (it.depth() != 2) {
76 TEST_ASSERT(it.depth() == 2);
101 TEST_CHECK(to.depth() == from_copy.depth());
129 TEST_CHECK(it2.depth() != it.depth());
    [all...]
  /external/python/cpython3/Parser/
asdl_c.py 21 def reflow_lines(s, depth):
22 """Reflow the line s indented depth tabs.
26 exclusively on depth * TABSIZE. All following lines -- these are
31 size = MAX_COL - depth * TABSIZE
90 def emit(self, s, depth, reflow=True):
93 lines = reflow_lines(s, depth)
97 line = (" " * TABSIZE * depth) + line + "\n"
106 def visitType(self, type, depth=0):
107 self.visit(type.value, type.name, depth)
109 def visitSum(self, sum, name, depth)
    [all...]
  /external/mesa3d/src/mesa/main/
texstorage.h 39 GLsizei height, GLsizei depth, bool dsa);
42 * Texture width, height and depth check shared with the
47 * "An INVALID_VALUE error is generated if width, height, depth
55 _mesa_valid_tex_storage_dim(GLsizei width, GLsizei height, GLsizei depth)
57 if (width < 1 || height < 1 || depth < 1)
81 GLsizei width, GLsizei height, GLsizei depth);
95 GLsizei width, GLsizei height, GLsizei depth);
111 GLsizei width, GLsizei height, GLsizei depth);
121 GLsizei height, GLsizei depth);
  /external/python/cpython2/Parser/
asdl_c.py 28 def reflow_lines(s, depth):
29 """Reflow the line s indented depth tabs.
33 exclusively on depth * TABSIZE. All following lines -- these are
38 size = MAX_COL - depth * TABSIZE
89 def emit(self, s, depth, reflow=True):
92 lines = reflow_lines(s, depth)
96 line = (" " * TABSIZE * depth) + line + "\n"
105 def visitType(self, type, depth=0):
106 self.visit(type.value, type.name, depth)
108 def visitSum(self, sum, name, depth)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl_c.py 28 def reflow_lines(s, depth):
29 """Reflow the line s indented depth tabs.
33 exclusively on depth * TABSIZE. All following lines -- these are
38 size = MAX_COL - depth * TABSIZE
89 def emit(self, s, depth, reflow=True):
92 lines = reflow_lines(s, depth)
96 line = (" " * TABSIZE * depth) + line + "\n"
105 def visitType(self, type, depth=0):
106 self.visit(type.value, type.name, depth)
108 def visitSum(self, sum, name, depth):
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
fdt.c 162 int fdt_next_node(const void *fdt, int offset, int *depth)
181 if (depth)
182 (*depth)++;
186 if (depth && ((--(*depth)) < 0))
192 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth))
204 int depth = 0; local
206 offset = fdt_next_node(fdt, offset, &depth);
207 if (offset < 0 || depth != 1)
215 int depth = 1 local
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
fdt.c 161 int fdt_next_node(const void *fdt, int offset, int *depth)
180 if (depth)
181 (*depth)++;
185 if (depth && ((--(*depth)) < 0))
191 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth))
203 int depth = 0; local
205 offset = fdt_next_node(fdt, offset, &depth);
206 if (offset < 0 || depth != 1)
214 int depth = 1; local
    [all...]
  /external/dtc/libfdt/
fdt.c 162 int fdt_next_node(const void *fdt, int offset, int *depth)
181 if (depth)
182 (*depth)++;
186 if (depth && ((--(*depth)) < 0))
192 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth))
204 int depth = 0; local
206 offset = fdt_next_node(fdt, offset, &depth);
207 if (offset < 0 || depth != 1)
215 int depth = 1 local
    [all...]
  /external/gemmlowp/internal/
compute.h 51 void Compute(int depth) {
52 depth = RoundUp<Format::kDepth>(depth);
53 assert(depth <= block_params_.l2_depth);
54 for (int d = 0; d < depth; d += block_params_.l1_depth) {
55 int ds = std::min(block_params_.l1_depth, depth - d);
80 int depth) GEMMLOWP_NOINLINE {
87 packed_rhs_.current_data(), start_depth, depth);
92 int start_depth, int depth) {
95 assert(depth % Format::kDepth == 0)
    [all...]
  /external/mesa3d/src/mesa/program/
symbol_table.c 48 /** Scope depth where this symbol was defined. */
49 unsigned depth; member in struct:symbol
80 /** Current scope depth. */
81 unsigned depth; member in struct:_mesa_symbol_table
91 table->depth--;
127 table->depth++;
154 assert(sym->depth <= table->depth);
155 return sym->depth - table->depth;
    [all...]
  /frameworks/base/sax/java/android/sax/
RootElement.java 100 int depth = -1; field in class:RootElement.Handler
112 int depth = ++this.depth; local
114 if (depth == 0) {
128 if (depth == current.depth + 1) {
183 if (depth == current.depth) {
204 depth--;
  /frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/
UT_multi_kernel.java 31 private boolean Test(int width, int height, int depth) {
39 if (depth > 0) {
40 typeBuilder.setZ(depth);
44 if (depth < 1) {
45 depth = 1;
55 float a[] = new float[width * height * depth * 4];
56 float b[] = new float[width * height * depth * 4];
60 for (int i = 0; i < width * height * depth * 4; i++) {
79 for (int i = 0; i < width * height * depth * 4; i++) {
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
CommandSetNode.java 61 void genJavaClassSpecifics(PrintWriter writer, int depth) {
62 indent(writer, depth);
64 indent(writer, depth);
68 void genJava(PrintWriter writer, int depth) {
69 genJavaClass(writer, depth);
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
one_hot_op.cc 47 errors::InvalidArgument("depth must be a scalar, but got: ",
59 int64 depth; variable
60 OP_REQUIRES_OK(ctx, ctx->ConstantInputAsIntScalar(1, &depth));
62 ctx, depth >= 0,
63 errors::InvalidArgument("depth must be non-negative, got: ", depth));
67 ctx, XlaHelpers::OneHot(ctx->builder(), depth, axis, input_type(0),
79 REGISTER_XLA_OP(Name("OneHot").CompileTimeConstInput("depth"), OneHotOp);
  /external/tensorflow/tensorflow/core/kernels/
eigen_softmax_test.cc 29 const int depth = 1024; local
33 Tensor<float, 2> input(depth, batch);
36 Tensor<float, 2> reference(depth, batch);
42 bcast[0] = depth;
58 for (int i = 0; i < depth; ++i) {
summary_image_op.cc 79 const int depth = static_cast<int>(tensor.dim_size(3)); variable
84 auto ith_image = [&tensor, batch_size, hw, depth](int i) {
85 auto values = tensor.shaped<uint8, 3>({batch_size, hw, depth});
87 &values(i, 0, 0), Eigen::DSizes<Eigen::DenseIndex, 2>(hw, depth));
90 c, AddImages(base_tag, batch_size, w, h, depth, ith_image, &s));
92 NormalizeAndAddImages<Eigen::half>(c, tensor, h, w, hw, depth, batch_size,
95 NormalizeAndAddImages<float>(c, tensor, h, w, hw, depth, batch_size,
98 NormalizeAndAddImages<double>(c, tensor, h, w, hw, depth, batch_size,
109 int w, int hw, int depth, int batch_size,
112 OP_REQUIRES(c, bad_color_.dim_size(0) >= depth,
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
sample_service_unittest.cc 157 void PrintSpacer(int depth) {
158 for (int i = 0; i < depth; ++i)
162 void Print(int depth, const char* name, bool value) {
163 PrintSpacer(depth);
167 void Print(int depth, const char* name, int32_t value) {
168 PrintSpacer(depth);
172 void Print(int depth, const char* name, uint8_t value) {
173 PrintSpacer(depth);
178 void Print(int depth,
181 PrintSpacer(depth);
282 int depth = 1; variable
    [all...]
  /frameworks/base/cmds/statsd/src/logd/
LogEvent.cpp 179 int depth = -1; local
189 if (depth < 0 || depth > 2) {
194 FieldValue(Field(mTagId, pos, depth), Value((int32_t)elem.data.int32)));
196 pos[depth]++;
200 if (depth < 0 || depth > 2) {
201 ALOGE("Depth > 2. Not supported!");
205 mValues.push_back(FieldValue(Field(mTagId, pos, depth), Value(elem.data.float32)));
207 pos[depth]++
    [all...]
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLESTextureUtils.h 9 GLsizei width, GLsizei height, GLsizei depth,
21 GLsizei width, GLsizei height, GLsizei depth,
31 GLsizei width, GLsizei height, GLsizei depth,
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_clear.c 51 double depth, unsigned stencil)
78 /* Clearing only depth or stencil in a combined depth-stencil buffer. */
79 util_clear_depth_stencil(pipe, zsbuf, zs_buffers, depth, stencil,
85 cv = util_pack64_z_stencil(zsbuf->format, depth, stencil);
  /external/owasp/sanitizer/src/main/org/owasp/html/
Trie.java 57 private Trie(List<Map.Entry<String, Integer>> elements, int depth) {
58 this(elements, depth, 0, elements.size());
63 * @param depth the depth in the tree.
70 List<Map.Entry<String, Integer>> elements, int depth,
72 this.terminal = depth == elements.get(start).getKey().length();
89 char ch = elements.get(i).getKey().charAt(depth);
100 char lastCh = elements.get(start).getKey().charAt(depth);
102 char ch = elements.get(i).getKey().charAt(depth);
106 elements, depth + 1, childStart, i)
    [all...]
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
split_collection_operators.cc 44 int32 node_id, int32 depth) const {
48 new DenseClassificationGrowStats(params_, depth));
52 new SparseClassificationGrowStats(params_, depth));
56 new LeastSquaresRegressionGrowStats(params_, depth));
60 new FixedSizeSparseClassificationGrowStats(params_, depth));
72 stats_[slot.node_id()] = CreateGrowStats(slot.node_id(), slot.depth());
84 new_slot->set_depth(pair.second->depth());
88 void SplitCollectionOperator::InitializeSlot(int32 node_id, int32 depth) {
89 stats_[node_id] = std::unique_ptr<GrowStats>(CreateGrowStats(node_id, depth));
140 int32* depth) const
    [all...]
  /test/vts/drivers/hal/libcodecoverage/
GcdaParser.cpp 55 unsigned depth = 0; local
85 if (depth && depth < tag_depth &&
86 !GCOV_TAG_IS_SUBTAG(tags[depth - 1], tag)) {
89 depth = tag_depth;
90 tags[depth - 1] = tag;

Completed in 733 milliseconds

1 2 3 4 56 7 8 91011>>