/external/mesa3d/src/mesa/main/ |
texobj.c | 482 /* Check width/height/depth for zero */ 485 baseImage->Depth == 0) { 486 incomplete(t, BASE, "texture width or height or depth = 0"); 581 GLuint width, height, depth, face; local 591 depth = baseImage->Depth2; 602 if (depth > 1 && t->Target != GL_TEXTURE_2D_ARRAY) { 603 depth /= 2; 631 if (img->Depth2 != depth) { 632 incomplete(t, MIPMAP, "TexImage[%d] bad depth %u", i, img->Depth2); 648 if (width == 1 && height == 1 && depth == 1) 724 const GLsizei width = 1, height = 1, depth = 1; local [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_texture.c | 251 GLuint width, GLuint height, GLuint depth, GLuint level, 256 assert(depth >= 1); 290 if (width == 1 || height == 1 || depth == 1) { 295 depth <<= level; 308 *depth0 = depth; 327 GLuint lastLevel, width, height, depth; local 341 &width, &height, &depth)) { 348 /* At this point, (width x height x depth) is the expected size of 370 width, height, depth) - 1; 376 stObj->depth0 = depth; 419 GLuint depth = texImage->Depth; local 1218 GLuint width, height, depth; local [all...] |
/external/mksh/src/ |
lex.c | 1677 unsigned int depth = 1; local [all...] |
/external/opencv/cv/src/ |
cvcalibration.cpp | 495 int depth, elem_size; local 507 depth = CV_MAT_DEPTH(src->type); 508 elem_size = CV_ELEM_SIZE(depth); 510 if( depth != CV_32F && depth != CV_64F ) 540 if( depth == CV_32F ) 724 if( depth == CV_32F ) 740 if( depth == CV_32F ) [all...] |
cvconvhull.cpp | 659 double depth = 0, scale; local 693 /* compute depth */ 696 if( dist > depth ) 698 depth = dist; 700 defect.depth = (float)depth;
|
cvcorner.cpp | 222 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_depth, 0, 1, aperture_size0 )) 518 int depth, d_depth; local [all...] |
cvfloodfill.cpp | 1028 int i, type, depth, cn, is_simple, idx; local [all...] |
cvmoments.cpp | 378 int type = 0, depth, cn, pix_size; local 428 depth = CV_MAT_DEPTH( type ); 465 func = (CvFunc2DnC_1A1P)(!binary ? mom_tab.fn_2d[depth] : mombin_tab.fn_2d[depth]); 470 if( depth >= CV_32S && !binary )
|
cvtemplmatch.cpp | 62 int depth, templ_depth, corr_depth, max_depth = CV_32F, local 78 "Template (kernel) must be of the same depth as the input image, or be 32f" ); 83 "The output image must have the same depth as the input image, or be 32f/64f" ); 91 depth = CV_MAT_DEPTH(img->type); 98 max_depth = MAX( max_depth, depth ); 100 if( depth > CV_8U ) 142 if( cn > 1 && depth != max_depth ) 144 (blocksize.height + templ->rows - 1)*CV_ELEM_SIZE(depth)); 233 if( depth != max_depth ) 234 planes[i] = cvInitMatHeader( &temp, y2 - y1, x2 - x1, depth, _buf ) 334 int depth, cn; local [all...] |
/external/opencv/cxcore/src/ |
cxarithm.cpp | 284 int y, dy, type, depth, cn, cont_flag = 0; local 322 depth = CV_MAT_DEPTH(type); 323 if( depth <= CV_16S ) 325 func_sfs = (CvFunc2D_3A1I)(sub_tab.fn_2d[depth]); 340 func = (CvFunc2D_3A)(sub_tab.fn_2d[depth]); 375 depth = CV_MAT_DEPTH(type); 386 if( depth == CV_32F ) 401 if( depth == CV_64F ) 465 if( depth <= CV_16S ) 468 func_sfs = (CvFunc2D_3A1I)(sub_tab.fn_2d[depth]); 535 int sctype, y, dy, type, depth, cn, coi = 0, cont_flag = 0; local 759 int y, dy, type, depth, cn, cont_flag = 0; local 1007 int sctype, y, dy, type, depth, cn, coi = 0, cont_flag = 0; local 1318 int type, depth, coi = 0; local [all...] |
cxconvert.cpp | 736 int depth = -1, elem_size = 1; local [all...] |
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/ |
jp2.h | 148 OPJ_UINT32 depth; member in struct:opj_jp2_comps
|
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
deflate.h | 213 uch depth[2*L_CODES+1]; member in struct:internal_state 214 /* Depth of each subtree used as tie breaker for trees of equal frequency
|
/external/skia/src/gpu/ |
GrAAConvexTessellator.cpp | 53 SkScalar depth, 59 *fDepths.push() = depth; 88 SkScalar depth) { 93 fDepths[index] = depth; 170 // the depth of all points in the final ring to 'fTargetDepth' and 189 SkScalar depth = -fNorms[edgeIdx].dot(v); 190 SkASSERT(depth >= 0.0f); 191 return depth; 467 // ring as being at the desired depth and fan it. 482 // Loop through all the points in the ring and find the intersection with the smallest depth 504 SkScalar depth = this->computeDepthFromEdge(lastRing.origEdgeID(minEdgeIdx), newPt); local [all...] |
/external/v8/src/ic/arm/ |
handler-compiler-arm.cc | 522 int depth = 0; local 534 ++depth; 561 if (depth != 1 || check == CHECK_ALL_MAPS) { 588 heap()->InNewSpace(*prototype) || depth == 1; 601 // Log the check depth. 602 LOG(isolate(), IntEvent("check-maps-depth", depth + 1)); 604 if (depth != 0 || check == CHECK_ALL_MAPS) {
|
/external/v8/src/ic/arm64/ |
handler-compiler-arm64.cc | 558 int depth = 0; local 570 ++depth; 600 heap()->InNewSpace(*prototype) || depth == 1; 604 if (depth != 1 || check == CHECK_ALL_MAPS) { 636 // Log the check depth. 637 LOG(isolate(), IntEvent("check-maps-depth", depth + 1)); 640 if (depth != 0 || check == CHECK_ALL_MAPS) {
|
/external/v8/src/ic/ia32/ |
handler-compiler-ia32.cc | 512 int depth = 0; local 523 ++depth; 554 bool load_prototype_from_map = in_new_space || depth == 1; 555 if (depth != 1 || check == CHECK_ALL_MAPS) { 591 // Log the check depth. 592 LOG(isolate(), IntEvent("check-maps-depth", depth + 1)); 594 if (depth != 0 || check == CHECK_ALL_MAPS) {
|
/external/v8/src/ic/mips/ |
handler-compiler-mips.cc | 520 int depth = 0; local 532 ++depth; 559 if (depth != 1 || check == CHECK_ALL_MAPS) { 586 heap()->InNewSpace(*prototype) || depth == 1; 599 // Log the check depth. 600 LOG(isolate(), IntEvent("check-maps-depth", depth + 1)); 602 if (depth != 0 || check == CHECK_ALL_MAPS) {
|
/external/v8/src/ic/mips64/ |
handler-compiler-mips64.cc | 520 int depth = 0; local 532 ++depth; 563 heap()->InNewSpace(*prototype) || depth == 1; 565 if (depth != 1 || check == CHECK_ALL_MAPS) { 599 // Log the check depth. 600 LOG(isolate(), IntEvent("check-maps-depth", depth + 1)); 602 if (depth != 0 || check == CHECK_ALL_MAPS) {
|
/external/v8/src/ic/x64/ |
handler-compiler-x64.cc | 508 int depth = 0; local 520 ++depth; 551 bool load_prototype_from_map = in_new_space || depth == 1; 556 if (depth != 1 || check == CHECK_ALL_MAPS) { 586 // Log the check depth. 587 LOG(isolate(), IntEvent("check-maps-depth", depth + 1)); 589 if (depth != 0 || check == CHECK_ALL_MAPS) {
|
/external/v8/src/ic/x87/ |
handler-compiler-x87.cc | 514 int depth = 0; local 525 ++depth; 556 bool load_prototype_from_map = in_new_space || depth == 1; 557 if (depth != 1 || check == CHECK_ALL_MAPS) { 593 // Log the check depth. 594 LOG(isolate(), IntEvent("check-maps-depth", depth + 1)); 596 if (depth != 0 || check == CHECK_ALL_MAPS) {
|
/external/v8/src/x87/ |
lithium-codegen-x87.h | 108 return x87_stack_.depth() == 0; 411 int depth() const { return stack_depth_; } function in class:v8::internal::LCodeGen::X87Stack
|
/external/wpa_supplicant_8/src/crypto/ |
tls.h | 51 int depth; member in struct:tls_event_data::__anon21458 59 int depth; member in struct:tls_event_data::__anon21459
|
/external/zlib/src/ |
deflate.h | 213 uch depth[2*L_CODES+1]; member in struct:internal_state 214 /* Depth of each subtree used as tie breaker for trees of equal frequency
|
/frameworks/av/media/mtp/ |
MtpServer.cpp | 713 int depth = mRequest.getParameter(5); local 714 ALOGV("GetObjectPropList %d format: %s property: %s group: %d depth: %d\n", 716 MtpDebug::getObjectPropCodeName(property), groupCode, depth); 718 return mDatabase->getObjectPropertyList(handle, format, property, groupCode, depth, mData); 917 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // image bit depth [all...] |