HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 151 - 175 of 2878) sorted by null

1 2 3 4 5 67 8 91011>>

  /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/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...]
minmax_mat.cu 162 const int depth = src1.depth();
164 CV_DbgAssert( depth <= CV_64F );
170 if (depth == CV_8U || depth == CV_16U)
180 if (depth == CV_8U && (src1_.cols & 3) == 0)
185 else if (depth == CV_16U && (src1_.cols & 1) == 0)
193 const func_t func = funcs_v1[op][depth];
235 const int depth = src.depth();
    [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::__anon20087
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/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/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...]
  /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/mesa3d/src/mesa/drivers/dri/i965/
brw_tex_layout.c 89 GLuint depth = mt->depth0; local
114 width, height, depth);
116 for (q = 0; q < depth; /* empty */) {
117 for (j = 0; j < pack_x_nr && q < depth; j++, q++) {
133 depth = minify(depth);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
VisualSampleEntry.java 42 * template unsigned int(16) depth = 0x0018;
70 private int depth = 24; field in class:VisualSampleEntry
103 return depth;
130 public void setDepth(int depth) {
131 this.depth = depth;
164 depth = IsoTypeReader.readUInt16(content);
  /external/opencv3/modules/core/perf/cuda/
perf_gpumat.cpp 63 const int depth = GET_PARAM(1); local
66 const int type = CV_MAKE_TYPE(depth, channels);
95 const int depth = GET_PARAM(1); local
98 const int type = CV_MAKE_TYPE(depth, channels);
132 const int depth = GET_PARAM(1); local
135 const int type = CV_MAKE_TYPE(depth, channels);
  /external/opencv3/modules/photo/perf/
perf_cuda.cpp 73 const int depth = GET_PARAM(1); local
81 const int type = CV_MAKE_TYPE(depth, channels);
117 const int depth = GET_PARAM(1); local
122 const int type = CV_MAKE_TYPE(depth, 1);
160 const int depth = GET_PARAM(1); local
165 const int type = CV_MAKE_TYPE(depth, 3);

Completed in 2246 milliseconds

1 2 3 4 5 67 8 91011>>