HomeSort by relevance Sort by last modified time
    Searched defs:depth (Results 201 - 225 of 1911) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/dtc/
fdtdump.c 60 int depth, sz, shift; local
64 depth = 0;
111 printf("%*s%s {\n", depth * shift, "", s);
113 depth++;
118 depth--;
120 printf("%*s};\n", depth * shift, "");
125 printf("%*s// [NOP]\n", depth * shift, "");
130 fprintf(stderr, "%*s ** Unknown tag 0x%08x\n", depth * shift, "", tag);
143 printf("%*s%s", depth * shift, "", s);
fdtget.c 156 int depth = 1; /* the assumed depth of this node */ local
163 if (level <= depth) {
187 if (level <= depth)
  /external/dtc/libfdt/
fdt_ro.c 161 int depth; local
165 for (depth = 0;
166 (offset >= 0) && (depth >= 0);
167 offset = fdt_next_node(fdt, offset, &depth))
168 if ((depth == 1)
172 if (depth < 0)
392 int offset, depth, namelen; local
400 for (offset = 0, depth = 0;
402 offset = fdt_next_node(fdt, offset, &depth)) {
403 while (pdepth > depth) {
444 int offset, depth; local
    [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular.h 44 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const LhsScalar* lhs, Index lhsStride,
52 ::run(size,depth,rhs,rhsStride,lhs,lhsStride,res,resStride,alpha,blocking);
61 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const LhsScalar* _lhs, Index lhsStride,
92 for(Index k2=0; k2<depth; k2+=kc)
94 const Index actual_kc = (std::min)(k2+kc,depth)-k2;
145 void operator()(ResScalar* _res, Index resStride, const LhsScalar* blockA, const RhsScalar* blockB, Index size, Index depth, const ResScalar& alpha)
158 const RhsScalar* actual_b = blockB+j*depth;
161 gebp_kernel(res.getSubMapper(0, j), blockA, actual_b, j, depth, actualBlockSize, alpha,
169 gebp_kernel(ResMapper(buffer.data(), BlockSize), blockA+depth*i, actual_b, actualBlockSize, depth, actualBlockSize, alpha local
276 Index depth = actualLhs.cols(); local
    [all...]
TriangularMatrixMatrix.h 21 // void operator()(Scalar* blockA, const EIGEN_RESTRICT Scalar* _lhs, int lhsStride, int depth, int rows)
29 // for(int k=0; k<depth; k++)
35 // for(int k=0; k<depth; k++)
60 Index rows, Index cols, Index depth,
74 ::run(cols, rows, depth, rhs, rhsStride, lhs, lhsStride, res, resStride, alpha, blocking);
117 Index depth = IsLower ? diagSize : _depth; local
151 for(Index k2=IsLower ? depth : 0;
152 IsLower ? k2>0 : k2<depth;
155 Index actual_kc = (std::min)(IsLower ? k2 : depth-k2, kc);
268 Index depth = IsLower ? _depth : diagSize local
    [all...]
  /external/eigen/test/
sparse_product.cpp 36 const Index depth = internal::random<Index>(1,n); local
52 DenseMatrix refMat2 = DenseMatrix::Zero(rows, depth);
53 DenseMatrix refMat2t = DenseMatrix::Zero(depth, rows);
54 DenseMatrix refMat3 = DenseMatrix::Zero(depth, cols);
55 DenseMatrix refMat3t = DenseMatrix::Zero(cols, depth);
58 DenseMatrix refMat5 = DenseMatrix::Random(depth, cols);
62 SparseMatrixType m2 (rows, depth);
63 SparseMatrixType m2t(depth, rows);
64 SparseMatrixType m3 (depth, cols);
65 SparseMatrixType m3t(cols, depth);
    [all...]
  /external/fio/
blktrace.c 342 int this_depth, depth; local
359 this_depth = depth = 0;
397 depth = max(depth, this_depth);
427 * the depth grows to insane values. Limit it to something sane(r).
429 if (!depth || depth > 1024)
430 depth = 1024;
463 td->o.iodepth = td->o.iodepth_low = depth;
  /external/gemmlowp/test/
benchmark.cc 58 int rows, depth, cols; member in struct:gemmlowp::gemm_t
59 gemm_t() : rows(0), depth(0), cols(0) {}
60 gemm_t(int r, int d, int c) : rows(r), depth(d), cols(c) {}
66 (a.depth < b.depth || (a.depth <= b.depth && (a.cols < b.cols))));
78 int depth = gemm.depth; local
81 sizeof(Scalar) * (rows * depth + depth * cols + rows * cols)
    [all...]
  /external/google-benchmark/test/
benchmark_test.cc 33 double CalculatePi(int depth) {
35 for (int i = 0; i < depth; ++i) {
75 static const int depth = 1024; local
77 benchmark::DoNotOptimize(CalculatePi(depth));
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
MessagePatternUtilDemo.java 29 private static final void printMessage(MessagePatternUtil.MessageNode msg, int depth) {
30 String indent = manySpaces.substring(0, depth * 2);
38 printArg((MessagePatternUtil.ArgNode)contents, depth);
47 private static final void printArg(MessagePatternUtil.ArgNode arg, int depth) {
48 System.out.print(manySpaces.substring(0, depth * 2) + "arg: «" + arg.getName() + "»");
63 printComplexArgStyle(arg.getComplexStyle(), depth + 1); local
69 int depth) {
71 System.out.println(manySpaces.substring(0, depth * 2) + "offset: " + style.getOffset());
73 String indent = manySpaces.substring(0, depth * 2);
94 printMessage(variant.getMessage(), depth + 1) local
169 genCodeForPlural(arg.getComplexStyle(), depth, firstResult, argName); local
172 genCodeForSelect(arg.getComplexStyle(), depth, firstResult, argName); local
199 genCode(otherVariant.getMessage(), depth, firstResult, pluralNumber); local
216 genCode(otherVariant.getMessage(), depth, firstResult, ""); local
219 genCode(otherVariant.getMessage(), depth + 1, firstResult, ""); local
236 genCode(variant.getMessage(), depth, firstResult, pluralNumber); local
254 genCode(variant.getMessage(), depth, firstResult, pluralNumber); local
    [all...]
  /external/kernel-headers/original/uapi/drm/
virtgpu_drm.h 80 __u32 depth; member in struct:drm_virtgpu_resource_create
  /external/libcxx/utils/google-benchmark/test/
benchmark_test.cc 33 double CalculatePi(int depth) {
35 for (int i = 0; i < depth; ++i) {
75 static const int depth = 1024; local
77 benchmark::DoNotOptimize(CalculatePi(depth));
  /external/libdrm/include/drm/
virtgpu_drm.h 77 uint32_t depth; member in struct:drm_virtgpu_resource_create
  /external/libmojo/third_party/jinja2/
runtime.py 256 def __init__(self, name, context, stack, depth):
260 self._depth = depth
310 depth = property(lambda x: x.depth0 + 1) variable in class:LoopContext
  /external/libunwind/src/x86_64/
Gtrace.c 378 int depth = 128;
383 if ((ret = unw_tdep_trace(&cur, addrs, &depth)) < 0)
385 depth = 0;
388 while ((ret = unw_step(&cur)) > 0 && depth < 128)
392 addresses[depth++] = (void *) ip;
404 int depth = 0; local
436 while (depth < maxdepth)
439 Debug (2, "depth %d cfa 0x%lx rip 0x%lx rsp 0x%lx rbp 0x%lx\n",
440 depth, cfa, rip, rsp, rbp);
525 buffer[depth++] = (void *) (rip - d->use_prev_instr)
    [all...]
  /external/ltp/testcases/kernel/sched/pthreads/
pth_str03.c 61 int depth = 3; variable
64 int cdepth; /* current depth */
118 depth = atoi(optarg);
119 if (depth <= 0)
161 * Caculate the number of child nodes for a given breadth and depth tree.
251 /* Increase the current depth variable, as the tree is now
361 printf("info_p=%p, cdepth=%d, depth=%d\n", info_p, cdepth,
362 depth);
366 if (cdepth <= depth) {
434 tst_resm(TINFO, "thread %d is a leaf node, depth=%d", my_index
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_video_buffer.c 219 unsigned depth, unsigned usage, unsigned plane)
222 templ->target = depth > 1 ? PIPE_TEXTURE_3D : PIPE_TEXTURE_2D;
226 templ->depth0 = depth;
352 unsigned i, j, depth, surf; local
358 depth = buffer->interlaced ? 2 : 1;
359 for (i = 0, surf = 0; i < depth; ++i ) {
437 unsigned depth, unsigned usage)
447 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[0], depth, usage, 0);
457 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[1], depth, usage, 1);
465 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[2], depth, usage, 2)
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_translate.c 1346 const uint depth = UREG(REG_TYPE_OD, 0); local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_jit.h 53 uint32_t depth; member in struct:lp_jit_texture
155 void *depth,
lp_state_fs.h 52 struct pipe_depth_state depth; member in struct:lp_fragment_shader_variant_key
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture.c 125 /* Depth stencil formats.
500 /* 16-bit depth, no stencil */
503 /* 24-bit depth, ignored stencil */
505 /* 24-bit depth, 8-bit stencil */
811 unsigned width, height, depth; local
816 depth = u_minify(desc->depth0, level);
820 txdepth = util_logbase2(depth) & 0xf;
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_compute_internal.c 506 unsigned height, depth; local
523 depth = view->base.texture->depth0;
541 S_030004_TEX_DEPTH(depth - 1) |
563 view->base.texture->width0*height*depth;
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_blit.c 120 float depth = 1.0f; local
145 util_blitter_custom_depth_stencil(rctx->blitter, zsurf, cbsurf, ~0, rctx->custom_dsa_flush, depth);
170 if (!tex->depth)
184 if (!tex->depth)
196 double depth, unsigned stencil)
204 color, depth, stencil);
225 double depth,
233 util_blitter_clear_depth_stencil(rctx->blitter, dst, clear_flags, depth, stencil,
341 if (rsrc->depth && !rsrc->is_flushing_texture)
354 sbox.depth = src_box->depth
    [all...]
  /external/mesa3d/src/gallium/state_trackers/dri/drm/
dri2.c 107 int att, depth; local
144 depth = 32;
147 depth = 24;
150 depth = 16;
154 depth = 16;
159 depth = 24;
163 depth = 32;
167 depth = 32;
170 depth = util_format_get_blocksizebits(format);
177 attachments[num_attachments++] = depth;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
native_ximage.c 102 unsigned int w, h, border, depth; local
105 &root, &x, &y, &w, &h, &border, &depth);
272 xsurf->xdraw.depth = xsurf->visual.depth;
299 uint depth; local
301 depth = x11_drawable_get_depth(xdpy->xscr, (Drawable) pix);
303 switch (depth) {
356 switch (vinfo->depth) {
392 * One with depth/stencil buffer; one without
476 xdraw.depth = xconf->visual->depth
    [all...]

Completed in 1370 milliseconds

1 2 3 4 5 6 7 891011>>