HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 176 - 200 of 3356) sorted by null

1 2 3 4 5 6 78 91011>>

  /art/runtime/
thread_pool_test.cc 103 TreeTask(ThreadPool* const thread_pool, AtomicInteger* count, int depth)
106 depth_(depth) {}
132 static const int depth = 8; local
133 thread_pool.AddTask(self, new TreeTask(&thread_pool, &count, depth));
136 EXPECT_EQ((1 << depth) - 1, count.LoadSequentiallyConsistent());
  /external/gemmlowp/internal/
compute.h 65 int depth) GEMMLOWP_NOINLINE {
72 packed_rhs_.current_data(), start_depth, depth);
76 int start_depth, int depth) {
79 assert(depth % Format::kDepth == 0);
83 ComputeRun(start_row + r, start_col + c, start_depth, depth);
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_clear.c 41 double depth,
89 ret = SVGA3D_ClearRect(svga->swc, flags, uc.ui, depth, stencil,
109 double depth, unsigned stencil)
121 ret = try_clear( svga, buffers, color, depth, stencil );
128 ret = try_clear( svga, buffers, color, depth, stencil );
  /external/mesa3d/src/glx/apple/
glxreply.c 59 GLint width, GLint height, GLint depth, GLenum format,
70 depth = reply.pad5;
75 if ((depth == 0) || (max_dim < 3)) {
76 depth = 1;
96 __glEmptyImage(gc, 3, width, height, depth, format, type, buf, dest);
  /external/opencv3/modules/imgcodecs/src/
grfmt_hdr.cpp 94 if(_img.depth() == img.depth()) {
135 if(img.depth() != CV_32F) {
160 bool HdrEncoder::isFormatSupported( int depth ) const {
161 return depth != CV_64F;
  /packages/apps/LegacyCamera/src/com/android/camera/
PreferenceInflater.java 87 int depth = parser.getDepth(); local
88 if (depth > list.size()) {
91 list.set(depth - 1, pref);
93 if (depth > 1) {
94 ((PreferenceGroup) list.get(depth - 2)).addChild(pref);
  /system/core/libpixelflinger/
clear.cpp 30 static void ggl_clearDepthx(void* c, GGLclampx depth);
45 c->state.clear.depth = FIXED_ONE;
111 if (c->state.buffers.depth.format == 0)
136 uint32_t depth = fixedToZ(c->state.clear.depth); local
137 c->state.clear.depthPacked = (depth<<16)|depth;
140 memset2d(c, c->state.buffers.depth, packed, l, t, w, h);
157 static void ggl_clearDepthx(void* con, GGLclampx depth)
160 c->state.clear.depth = gglClampx(depth)
    [all...]
  /external/doclava/src/com/google/doclava/
Hierarchy.java 57 int depth = depth(nodes, "java.lang.Object"); local
60 hdf.setValue("colspan", "" + depth);
62 recurse(nodes, "java.lang.Object", hdf.getChild("classes.0"), depth, depth);
76 private static int depth(HashMap<String, TreeSet<String>> nodes, String name) { method in class:Hierarchy
81 int n = depth(nodes, s);
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular_MKL.h 52 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const Scalar* lhs, Index lhsStride, \
57 ::run(size,depth,lhs,lhsStride,rhs,rhsStride,res,resStride,alpha); \
63 ::run(size,depth,lhs,lhsStride,rhs,rhsStride,res,resStride,alpha); \
82 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const EIGTYPE* lhs, Index lhsStride, \
87 MKL_INT lda=lhsStride, ldc=resStride, n=size, k=depth; \
107 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const EIGTYPE* lhs, Index lhsStride, \
112 MKL_INT lda=lhsStride, ldc=resStride, n=size, k=depth; \
  /external/libchrome/base/json/
json_writer.cc 58 bool JSONWriter::BuildJSONString(const Value& node, size_t depth) {
142 if (!BuildJSONString(*value, depth))
177 IndentLine(depth + 1U);
184 if (!BuildJSONString(itr.value(), depth + 1U))
192 IndentLine(depth);
208 void JSONWriter::IndentLine(size_t depth) {
209 json_string_->append(depth * 3U, ' ');
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
ModelBuilder.java 187 public Model createBox (float width, float height, float depth, final Material material, final long attributes) {
188 return createBox(width, height, depth, GL20.GL_TRIANGLES, material, attributes);
195 public Model createBox (float width, float height, float depth, int primitiveType, final Material material,
198 part("box", primitiveType, attributes, material).box(width, height, depth);
229 public Model createCylinder (float width, float height, float depth, int divisions, final Material material,
231 return createCylinder(width, height, depth, divisions, GL20.GL_TRIANGLES, material, attributes);
238 public Model createCylinder (float width, float height, float depth, int divisions, int primitiveType,
240 return createCylinder(width, height, depth, divisions, primitiveType, material, attributes, 0, 360);
247 public Model createCylinder (float width, float height, float depth, int divisions, final Material material,
249 return createCylinder(width, height, depth, divisions, GL20.GL_TRIANGLES, material, attributes, angleFrom, angleTo);
    [all...]
  /external/libweave/third_party/chromium/base/json/
json_writer.cc 58 bool JSONWriter::BuildJSONString(const Value& node, size_t depth) {
142 if (!BuildJSONString(*value, depth))
177 IndentLine(depth + 1U);
184 if (!BuildJSONString(itr.value(), depth + 1U))
192 IndentLine(depth);
208 void JSONWriter::IndentLine(size_t depth) {
209 json_string_->append(depth * 3U, ' ');
  /external/opencv3/modules/cudaarithm/src/cuda/
bitwise_mat.cu 69 const int depth = src.depth();
71 CV_DbgAssert( depth <= CV_32F );
108 if (depth == CV_32F || depth == CV_32S)
115 else if (depth == CV_16S || depth == CV_16U)
175 const int depth = src1.depth();
177 CV_DbgAssert( depth <= CV_32F )
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_lookahead.c 62 unsigned int depth) {
65 // Clamp the lookahead queue depth
66 depth = clamp(depth, 1, MAX_LAG_BUFFERS);
69 depth += MAX_PRE_FRAMES;
75 ctx->max_sz = depth;
76 ctx->buf = calloc(depth, sizeof(*ctx->buf));
79 for (i = 0; i < depth; i++)
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_pixelformat.c 63 unsigned char depth; member in struct:stw_pf_depth_info::__anon20925
95 /* pure depth */
100 /* combined depth-stencil */
125 const struct stw_pf_depth_info *depth,
140 assert(util_format_get_component_bits(depth->format, UTIL_FORMAT_COLORSPACE_ZS, 0) == depth->bits.depth);
141 assert(util_format_get_component_bits(depth->format, UTIL_FORMAT_COLORSPACE_ZS, 1) == depth->bits.stencil);
179 pfi->pfd.cDepthBits = depth->bits.depth
245 const struct stw_pf_depth_info *depth = &stw_pf_depth_stencil[ds]; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_tex_layout.c 161 GLuint depth = mt->depth0; local
171 width, height, depth);
177 depth = minify(depth);
180 /* Fixup depth image_offsets: */
181 depth = mt->depth0;
184 for (i = 0; i < depth; i++) {
189 depth = minify(depth);
192 /* Multiply slice size by texture depth for total size. It'
407 GLuint depth = mt->depth0; local
    [all...]
  /external/v8/test/mjsunit/regress/
regress-2055.js 31 function test1(depth) {
32 if (--depth < 0) {
35 return [ 0, test1(depth) ];
40 function test2(depth) {
41 if (--depth < 0) {
44 var o = [ 0, test2(depth) ];
45 return (depth == 0) ? 0.5 : o;
regress-475705.js 6 // stack depth that causes a stack overflow. The issue only arises without
12 function use_space_then_do_test(depth) {
14 // The "+ depth" is to avoid the regexp compilation cache.
15 var regexp_src = repeat(".(.)", 12) + depth;
16 use_space(depth, regexp_src);
  /external/opencv3/modules/cudaarithm/perf/
perf_reductions.cpp 60 const int depth = GET_PARAM(1); local
63 cv::Mat src(size, depth);
64 if (depth == CV_8U)
137 const int depth = GET_PARAM(1); local
140 const int type = CV_MAKE_TYPE(depth, channels);
173 const int depth = GET_PARAM(1); local
176 const int type = CV_MAKE_TYPE(depth, channels);
205 const int depth = GET_PARAM(1); local
208 const int type = CV_MAKE_TYPE(depth, channels);
236 const int depth = GET_PARAM(1) local
273 const int depth = GET_PARAM(1); local
312 const int depth = GET_PARAM(1); local
354 const int depth = GET_PARAM(1); local
    [all...]
  /external/ImageMagick/MagickCore/
attribute.c 264 % GetImageDepth() returns the depth of a particular image channel.
290 depth,
297 Compute image depth.
351 depth=current_depth[0];
353 if (depth < current_depth[i])
354 depth=current_depth[i];
356 return(depth);
366 Scale pixels to desired (optimized with depth map).
374 depth;
376 for (depth=1; depth < MAGICKCORE_QUANTUM_DEPTH; depth++
287 depth, local
371 depth; local
541 depth; local
    [all...]
  /external/opencv3/modules/core/test/
test_arithm.cpp 25 virtual void getValueRange(int depth, double& minval, double& maxval)
27 minval = depth < CV_32S ? cvtest::getMinVal(depth) : depth == CV_32S ? -1000000 : -1000.;
28 maxval = depth < CV_32S ? cvtest::getMaxVal(depth) : depth == CV_32S ? 1000000 : 1000.;
42 virtual double getMaxErr(int depth) { return depth < CV_32F ? 1 : depth == CV_32F ? 1e-5 : 1e-12;
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDbvt.h 731 int depth=1; local
737 sStkNN p=stkStack[--depth];
738 if(depth>treshold)
747 stkStack[depth++]=sStkNN(p.a->childs[0],p.a->childs[0]);
748 stkStack[depth++]=sStkNN(p.a->childs[1],p.a->childs[1]);
749 stkStack[depth++]=sStkNN(p.a->childs[0],p.a->childs[1]);
758 stkStack[depth++]=sStkNN(p.a->childs[0],p.b->childs[0]);
759 stkStack[depth++]=sStkNN(p.a->childs[1],p.b->childs[0]);
760 stkStack[depth++]=sStkNN(p.a->childs[0],p.b->childs[1]);
761 stkStack[depth++]=sStkNN(p.a->childs[1],p.b->childs[1])
796 int depth=1; local
862 int depth=1; local
970 int depth=1; local
1031 int depth=1; local
    [all...]
  /external/llvm/lib/Analysis/
RegionPrinter.cpp 103 unsigned depth = 0) {
105 O.indent(2 * depth) << "subgraph cluster_" << static_cast<const void*>(&R)
107 O.indent(2 * (depth + 1)) << "label = \"\";\n";
110 O.indent(2 * (depth + 1)) << "style = filled;\n";
111 O.indent(2 * (depth + 1)) << "color = "
115 O.indent(2 * (depth + 1)) << "style = solid;\n";
116 O.indent(2 * (depth + 1)) << "color = "
121 printRegionCluster(**RI, GW, depth + 1);
127 O.indent(2 * (depth + 1)) << "Node"
131 O.indent(2 * depth) << "}\n"
    [all...]
  /external/mesa3d/src/mesa/program/
symbol_table.c 61 /** Scope depth where this symbol was defined. */
62 unsigned depth; member in struct:symbol
110 /** Current scope depth. */
111 unsigned depth; member in struct:_mesa_symbol_table
165 table->depth--;
193 table->depth++;
292 assert(sym->depth <= table->depth);
293 return sym->depth - table->depth;
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_registry.py 75 def __init__(self, app, var, value, depth):
79 self.depth = depth
84 line = ('\nInserted by middleware!\nInsertValue at depth %s is %s'
85 % (self.depth, str(regobj)))
101 depth %s is %s' % (self.depth, str(regobj)))
146 assert "InsertValue at depth 0 is {'bye': 'friends'}" in res
147 assert "AppendValue at depth 0 is {'bye': 'friends'}" in res
156 for depth in valuelist
    [all...]

Completed in 1482 milliseconds

1 2 3 4 5 6 78 91011>>