Searched refs:depth (Results 251 - 275 of 1467) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dmemory.cpp128 size_t width, size_t height, size_t depth,
132 _format(*format), _width(width), _height(height), _depth(depth),
169 image::depth() const { function in class:image
203 size_t width, size_t height, size_t depth,
206 image(ctx, flags, format, width, height, depth,
207 row_pitch, slice_pitch, depth * slice_pitch,
126 image(clover::context &ctx, cl_mem_flags flags, const cl_image_format *format, size_t width, size_t height, size_t depth, size_t row_pitch, size_t slice_pitch, size_t size, void *host_ptr) argument
201 image3d(clover::context &ctx, cl_mem_flags flags, const cl_image_format *format, size_t width, size_t height, size_t depth, size_t row_pitch, size_t slice_pitch, void *host_ptr) argument
/external/mesa3d/src/glx/
H A Dindirect_texture_compression.c222 GLsizei depth, GLint border,
240 __GLX_PUT_LONG(24, depth);
256 __GLX_PUT_LONG(28, depth);
296 GLsizei height, GLsizei depth,
318 __GLX_PUT_LONG(32, depth);
336 __GLX_PUT_LONG(36, depth);
219 __indirect_glCompressedTexImage3D(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei image_size, const GLvoid * data) argument
293 __indirect_glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei image_size, const GLvoid * data) argument
/external/python/cpython2/Lib/test/
H A Dtest_pep352.py60 depth = exc_line.rindex('-')
61 exc_name = exc_line[depth+2:] # Slice past space
76 if last_depth < depth:
78 elif last_depth > depth:
79 while superclasses[-1][0] >= depth:
91 last_depth = depth
/external/skia/src/core/
H A DSkTSort.h155 * When depth becomes zero, it switches over to Heap Sort.
157 * we already limit the stack depth by switching to heap sort,
160 * @param depth at this recursion depth, switch to Heap Sort.
165 template <typename T, typename C> void SkTIntroSort(int depth, T* left, T* right, C lessThan) { argument
172 if (depth == 0) {
176 --depth;
181 SkTIntroSort(depth, left, pivot - 1, lessThan);
197 // Limit Intro Sort recursion depth to no more than 2 * ceil(log2(n)).
198 int depth local
[all...]
/external/testng/src/test/java/test/
H A DGraphTest.java160 // nodes, and each node in a group a depth N has each node in the group
161 // at depth (N-1) as a predecessor.
163 for (int depth = 1; depth <= maxDepth; depth++) {
165 String newNode = String.valueOf(i + (100 * depth));
167 if (depth == 1) {
171 String prevNode = String.valueOf(j + (100 * (depth - 1)));
177 // Finally, make all of the nodes in the group at depth maxDepth
/external/bison/lib/glthread/
H A Dlock.c401 lock->depth = 0;
418 if (++(lock->depth) == 0) /* wraparound? */
420 lock->depth--;
431 if (lock->depth == 0)
433 if (--(lock->depth) == 0)
540 lock->depth = 0;
557 if (++(lock->depth) == 0) /* wraparound? */
559 lock->depth--;
570 if (lock->depth == 0)
572 if (--(lock->depth)
[all...]
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixMatrixTriangular.h44 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const LhsScalar* lhs, Index lhsStride, argument
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, argument
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) argument
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, actualBlockSiz local
279 Index depth = actualLhs.cols(); local
[all...]
/external/fio/
H A Dblktrace.c388 static void depth_inc(struct blk_io_trace *t, int *depth) argument
394 depth[ddir]++;
397 static void depth_dec(struct blk_io_trace *t, int *depth) argument
403 depth[ddir]--;
406 static void depth_end(struct blk_io_trace *t, int *this_depth, int *depth) argument
412 depth[ddir] = max(depth[ddir], this_depth[ddir]);
429 int this_depth[DDIR_RWDIR_CNT], depth[DDIR_RWDIR_CNT], max_depth; local
447 depth[i] = 0;
491 depth_end(&t, this_depth, depth);
[all...]
/external/gemmlowp/test/
H A Dcorrectness_meta_gemm.cc63 std::int32_t rows, std::int32_t cols, std::int32_t depth,
72 for (int k = 0; k < depth; ++k) {
74 (static_cast<std::int32_t>(left[depth * i + k]) + lhs_offset) *
75 (static_cast<std::int32_t>(right[depth * j + k]) + rhs_offset);
96 std::cout << "Wrong: " << rows << "x" << cols << "x" << depth << " : "
106 std::int32_t rows, std::int32_t cols, std::int32_t depth,
113 for (int k = 0; k < depth; ++k) {
115 (static_cast<std::int32_t>(left[depth * i + k]) + lhs_offset) *
116 (static_cast<std::int32_t>(right[depth * j + k]) + rhs_offset);
128 std::cout << "Wrong: " << rows << "x" << cols << "x" << depth << "
62 check_result(std::uint8_t* left, std::uint8_t* right, std::uint8_t* result, std::int32_t rows, std::int32_t cols, std::int32_t depth, std::int32_t lhs_offset, std::int32_t rhs_offset, std::int32_t sum_offset, std::int32_t mul_offset, std::int32_t shift) argument
105 check_result_f(std::uint8_t* left, std::uint8_t* right, float* result, std::int32_t rows, std::int32_t cols, std::int32_t depth, std::int32_t lhs_offset, std::int32_t rhs_offset, float result_offset) argument
138 check_result_i32(std::uint8_t* left, std::uint8_t* right, std::int32_t* result, std::int32_t rows, std::int32_t cols, std::int32_t depth, std::int32_t lhs_offset, std::int32_t rhs_offset) argument
[all...]
/external/mesa3d/src/gallium/drivers/ilo/core/
H A Dilo_state_cc.c61 const struct ilo_state_cc_depth_info *depth = &info->depth; local
76 if (depth->test_enable || depth->write_enable)
77 assert(depth->cv_has_buffer);
88 const struct ilo_state_cc_depth_info *depth = &info->depth; local
134 * This is different from depth write enable, which is independent from
135 * depth test enable.
147 if (depth
172 const struct ilo_state_cc_depth_info *depth = &info->depth; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_tex_image.c58 int width, height, depth; local
62 intel_get_image_dims(&intelImage->base.Base, &width, &height, &depth);
75 depth = old_mt ? get_base_dim(old_mt->logical_depth0, depth, level) :
76 depth << level;
106 width, height, depth) - 1;
116 depth,
426 /* Disallow depth/stencil textures: we don't have a way to pass the
575 GLsizei width, GLsizei height, GLint depth,
587 width, height, depth, forma
573 intel_get_tex_sub_image(struct gl_context *ctx, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLint depth, GLenum format, GLenum type, GLvoid *pixels, struct gl_texture_image *texImage) argument
616 flush_astc_denorms(struct gl_context *ctx, GLuint dims, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth) argument
675 intelCompressedTexSubImage(struct gl_context *ctx, GLuint dims, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) argument
[all...]
/external/gemmlowp/meta/
H A Dtest_gemm_correctness.cc97 int cols, int depth) {
103 for (int k = 0; k < depth; ++k) {
104 expected += (static_cast<int>(lhs[depth * i + k]) + LHS_OFFSET) *
105 (static_cast<int>(rhs[depth * j + k]) + RHS_OFFSET);
107 expected += SUM_OFFSET * depth;
132 int cols, int depth) {
138 for (int k = 0; k < depth; ++k) {
139 expected += (static_cast<int>(lhs[depth * i + k]) + LHS_OFFSET) *
142 expected += SUM_OFFSET * depth;
162 int cols, int depth) {
96 check_row_row(std::uint8_t* lhs, std::uint8_t* rhs, std::uint8_t* results, int rows, int cols, int depth) argument
131 check_row_col(std::uint8_t* lhs, std::uint8_t* rhs, std::uint8_t* results, int rows, int cols, int depth) argument
161 check_row_row_f(std::uint8_t* lhs, std::uint8_t* rhs, float* results, int rows, int cols, int depth) argument
181 check_row_col_f(std::uint8_t* lhs, std::uint8_t* rhs, float* results, int rows, int cols, int depth) argument
201 check_row_row_i32(std::uint8_t* lhs, std::uint8_t* rhs, std::int32_t* results, int rows, int cols, int depth) argument
220 check_row_col_i32(std::uint8_t* lhs, std::uint8_t* rhs, std::int32_t* results, int rows, int cols, int depth) argument
[all...]
/external/opencv/cv/src/
H A Dcvcorner.cpp222 int depth, d_depth; local
239 depth = CV_MAT_DEPTH(src->type);
240 d_depth = depth == CV_8U ? CV_16S : CV_32F;
251 if( depth == CV_8U && aperture_size0 == CV_SCHARR )
256 else if( depth == CV_32F && aperture_size0 == CV_SCHARR )
261 else if( depth == CV_8U )
266 else if( depth == CV_32F )
279 el_anchor.x*CV_ELEM_SIZE(depth);
289 CV_CALL( dx_filter.init_deriv( size.width, depth, d_depth, 1, 0, aperture_size0 ));
290 CV_CALL( dy_filter.init_deriv( size.width, depth, d_dept
518 int depth, d_depth; local
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexstore.c145 * Store a 32-bit integer or float depth component texture image.
182 * Store a 24-bit integer depth component texture image.
212 * Store a 24-bit integer depth component texture image.
246 * Store a 16-bit integer depth component texture image.
322 * Store a combined depth/stencil texture image.
331 GLuint *depth = malloc(srcWidth * sizeof(GLuint)); local
342 if (!depth || !stencil) {
343 free(depth);
348 /* In case we only upload depth we need to preserve the stencil */
363 else if (srcFormat == GL_STENCIL_INDEX) { /* preserve depth */
410 GLuint *depth; local
969 store_texsubimage(struct gl_context *ctx, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, GLint width, GLint height, GLint depth, GLenum format, GLenum type, const GLvoid *pixels, const struct gl_pixelstore_attrib *packing, const char *caller) argument
1132 _mesa_store_texsubimage(struct gl_context *ctx, GLuint dims, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, GLint width, GLint height, GLint depth, GLenum format, GLenum type, const void *pixels, const struct gl_pixelstore_attrib *packing) argument
1178 _mesa_store_cleartexsubimage(struct gl_context *ctx, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, const GLvoid *clearValue) argument
1264 _mesa_compute_compressed_pixelstore(GLuint dims, mesa_format texFormat, GLsizei width, GLsizei height, GLsizei depth, const struct gl_pixelstore_attrib *packing, struct compressed_pixelstore *store) argument
1322 _mesa_store_compressed_texsubimage(struct gl_context *ctx, GLuint dims, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) argument
[all...]
/external/tcpdump/
H A Dprint-isakmp.c585 uint32_t proto0, int depth)
623 uint32_t proto0, int depth);
636 int depth);
686 uint32_t proto0, int depth) = {
985 uint32_t proto0, int depth)
1032 depth);
1044 uint32_t proto0 _U_, int depth)
1067 prop.prot_id, depth);
1207 uint32_t proto, int depth _U_)
1276 uint32_t proto _U_, int depth _U
981 ikev1_sa_print(netdissect_options *ndo, u_char tpay _U_, const struct isakmp_gen *ext, u_int item_len _U_, const u_char *ep, uint32_t phase, uint32_t doi0 _U_, uint32_t proto0, int depth) argument
1041 ikev1_p_print(netdissect_options *ndo, u_char tpay _U_, const struct isakmp_gen *ext, u_int item_len _U_, const u_char *ep, uint32_t phase, uint32_t doi0, uint32_t proto0 _U_, int depth) argument
1610 ikev1_n_print(netdissect_options *ndo, u_char tpay _U_, const struct isakmp_gen *ext, u_int item_len, const u_char *ep, uint32_t phase, uint32_t doi0 _U_, uint32_t proto0 _U_, int depth) argument
1932 ikev2_p_print(netdissect_options *ndo, u_char tpay _U_, int pcount _U_, const struct isakmp_gen *ext, u_int oprop_length, const u_char *ep, int depth) argument
2031 ikev2_sa_print(netdissect_options *ndo, u_char tpay, const struct isakmp_gen *ext1, u_int osa_length, const u_char *ep, uint32_t phase _U_, uint32_t doi _U_, uint32_t proto _U_, int depth) argument
2578 ikev2_e_print(netdissect_options *ndo, _U_ struct isakmp *base, u_char tpay, const struct isakmp_gen *ext, u_int item_len _U_, const u_char *ep _U_, _U_ uint32_t phase, _U_ uint32_t doi, _U_ uint32_t proto, _U_ int depth) argument
2669 ike_sub0_print(netdissect_options *ndo, u_char np, const struct isakmp_gen *ext, const u_char *ep, uint32_t phase, uint32_t doi, uint32_t proto, int depth) argument
2710 ikev1_sub_print(netdissect_options *ndo, u_char np, const struct isakmp_gen *ext, const u_char *ep, uint32_t phase, uint32_t doi, uint32_t proto, int depth) argument
2833 ikev2_sub0_print(netdissect_options *ndo, struct isakmp *base, u_char np, const struct isakmp_gen *ext, const u_char *ep, uint32_t phase, uint32_t doi, uint32_t proto, int depth) argument
2878 ikev2_sub_print(netdissect_options *ndo, struct isakmp *base, u_char np, const struct isakmp_gen *ext, const u_char *ep, uint32_t phase, uint32_t doi, uint32_t proto, int depth) argument
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrContextWrapper.cpp129 void ContextWrapper::glTexImage3D (deUint32 target, int level, int internalFormat, int width, int height, int depth, int border, deUint32 format, deUint32 type, const void* data) argument
131 m_curCtx->texImage3D(target, level, (deUint32)internalFormat, width, height, depth, border, format, type, data);
144 void ContextWrapper::glTexSubImage3D (deUint32 target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, deUint32 format, deUint32 type, const void* data) argument
146 m_curCtx->texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, data);
174 void ContextWrapper::glTexStorage3D (deUint32 target, int levels, deUint32 internalFormat, int width, int height, int depth) argument
176 m_curCtx->texStorage3D(target, levels, internalFormat, width, height, depth);
254 void ContextWrapper::glClearDepthf (float depth) argument
256 m_curCtx->clearDepthf(depth);
284 void ContextWrapper::glClearBufferfi (deUint32 buffer, int drawbuffer, float depth, int stencil) argument
286 m_curCtx->clearBufferfi(buffer, drawbuffer, depth, stenci
[all...]
/external/opencv/cxcore/src/
H A Dcxminmaxloc.cpp298 int type, depth, cn, coi = 0; local
320 depth = CV_MAT_DEPTH( type );
327 if( depth == CV_32S || depth == CV_64F )
360 CvFunc2D_1A4P func = (CvFunc2D_1A4P)(minmax_tab.fn_2d[depth]);
370 CvFunc2DnC_1A4P func = (CvFunc2DnC_1A4P)(minmaxcoi_tab.fn_2d[depth]);
383 CvFunc2D_2A4P func = (CvFunc2D_2A4P)(minmaxmask_tab.fn_2d[depth]);
394 CvFunc2DnC_2A4P func = (CvFunc2DnC_2A4P)(minmaxmaskcoi_tab.fn_2d[depth]);
437 if( depth != CV_32S && depth !
[all...]
H A Dcxlut.cpp222 int depth, cn, lut_cn; local
262 depth = CV_MAT_DEPTH( dst->type );
288 int half_size = CV_ELEM_SIZE1(depth)*cn*128;
298 if( lut_cn == 1 || (lut_cn <= 4 && depth == CV_8U) )
300 CvLUT_TransformFunc func = depth == CV_8U ? lut_8u_tab[cn-1] :
301 (CvLUT_TransformFunc)(lut_c1_tab.fn_2d[depth]);
312 (CvLUT_TransformCnFunc)(lut_cn_tab.fn_2d[depth]);
/external/icu/icu4c/source/tools/ctestfw/
H A Dctest.c79 static void iterateTestsWithLevel( const TestNode *root, int depth,
323 * @param depth The depth of this tree (0=root)
324 * @param nodeList an array of MAXTESTS depth that's used for keeping track of where we are. nodeList[depth] points to the 'parent' at depth depth.
328 int depth,
340 if(depth<2) {
347 /* record the current root node, and increment depth
327 iterateTestsWithLevel( const TestNode* root, int depth, const TestNode** nodeList, TestMode mode) argument
[all...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_exr.cpp579 bool GrFmtExrWriter::IsFormatSupported( int depth )
581 return depth == IPL_DEPTH_8U || depth == IPL_DEPTH_8S ||
582 depth == IPL_DEPTH_16U || depth == IPL_DEPTH_16S ||
583 depth == IPL_DEPTH_32S || depth == IPL_DEPTH_32F;
590 int width, int height, int depth, int channels )
596 bool issigned = depth < 0;
597 bool isfloat = depth
589 WriteImage( const uchar* data, int step, int width, int height, int depth, int channels ) argument
[all...]
/external/ImageMagick/coders/
H A Dtxt.c117 depth,
125 &rows,&depth,colorspace);
416 depth,
454 for (depth=1; (GetQuantumRange(depth)+1) < max_value; depth++) ;
455 image->depth=depth;
473 range=GetQuantumRange(image->depth);
747 image->depth
114 depth, local
411 depth, local
750 depth; local
[all...]
/external/deqp/modules/glshared/
H A DglsFragmentOpUtil.cpp181 quad.posA.x(), quad.posA.y(), quad.depth[0], 1.0f,
182 quad.posA.x(), quad.posB.y(), quad.depth[1], 1.0f,
183 quad.posB.x(), quad.posA.y(), quad.depth[2], 1.0f,
184 quad.posB.x(), quad.posB.y(), quad.depth[3], 1.0f
255 float depth = triQuadInterpolate(quad.depth, xRatio, yRatio); local
257 // Interpolated color and depth.
266 m_fragmentDepths[m_fragmentBufferSize] = depth;
/external/ltp/pan/
H A Dsymbol.c377 * Handles hierarchies, using a double quote to indicate depth, one
380 int sym_dump(SYM sym, int depth) argument
390 for (d = 0; d < depth; d++) {
395 sym_dump((SYM) se->data, depth + 1);
403 int sym_dump_s(SYM sym, int depth) argument
413 for (d = 0; d < depth; d++) {
422 for (d = 0; d < depth; d++) {
429 sym_dump_s((SYM) se->data, depth + 1);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_tex_image.c39 int width, height, depth; local
43 &width, &height, &depth);
50 (intelObj->base.Target == GL_TEXTURE_3D && depth == 1))) {
53 * likely base level width/height/depth for a full mipmap stack
72 if (depth != 1)
73 depth <<= 1;
88 width, height, depth) - 1);
99 depth,
/external/owasp/sanitizer/empiricism/
H A Dhtml-containment.js144 var depth = 0;
190 var nSpaces = depth * 2;
198 var onclick = depth
202 out.push('<span class="json-ext json-block-', depth,
203 depth === 0 || inline ? ' json-nocollapse' : '',
210 ++depth;
233 --depth;

Completed in 940 milliseconds

<<11121314151617181920>>