/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_mipmap_tree.c | 77 unsigned depth, 85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth; 96 return rowStride * height * depth; 136 lvl->size = get_texture_image_size(mt->mesaFormat, lvl->rowstride, height, lvl->depth, mt->tilebits); 172 mt->levels[level].depth = minify(mt->depth0, i); 312 lvl->depth != texImage->Depth) 341 fprintf(stderr, "depth0 %d vs %d\n", mtBaseLevel->depth, firstImage->Depth); 347 mtBaseLevel->depth == firstImage->Depth) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_copypix.c | 209 const GLfloat depth[], GLuint z[]) 220 z[i] = (GLuint) (depth[i] * depthMaxF); 227 GLdouble d = depth[i] * ctx->Pixel.DepthScale + ctx->Pixel.DepthBias; 249 GLfloat *p, *tmpImage, *depth; local 306 depth = (GLfloat *) malloc(width * sizeof(GLfloat)); 307 if (!depth) { 313 /* get depth values */ 315 memcpy(depth, p, width * sizeof(GLfloat)); 319 _swrast_read_depth_span_float(ctx, readRb, width, srcx, sy, depth); 323 scale_and_bias_z(ctx, width, depth, span.array->z) [all...] |
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/ |
tinyxml.cpp | 800 void TiXmlElement::Print( FILE* cfile, int depth ) const 804 for ( i=0; i<depth; i++ ) { 814 attrib->Print( cfile, depth ); 829 firstChild->Print( cfile, depth + 1 ); 842 node->Print( cfile, depth+1 ); 845 for( i=0; i<depth; ++i ) { 1145 void TiXmlDocument::Print( FILE* cfile, int depth ) const 1150 node->Print( cfile, depth ); 1210 void TiXmlAttribute::Print( FILE* cfile, int /*depth*/, TIXML_STRING* str ) const 1297 void TiXmlComment::Print( FILE* cfile, int depth ) cons [all...] |
tinyxml.h | 213 virtual void Print( FILE* cfile, int depth ) const = 0; 870 virtual void Print( FILE* cfile, int depth ) const { 871 Print( cfile, depth, 0 ); 873 void Print( FILE* cfile, int depth, TIXML_STRING* str ) const; 1793 int depth; member in class:TiXmlPrinter [all...] |
/external/eigen/Eigen/src/Core/products/ |
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); 104 Index depth = IsLower ? diagSize : _depth; local 132 for(Index k2=IsLower ? depth : 0; 133 IsLower ? k2>0 : k2<depth; 136 Index actual_kc = (std::min)(IsLower ? k2 : depth-k2, kc); 233 Index depth = IsLower ? _depth : diagSize local [all...] |
GeneralMatrixMatrix.h | 28 Index rows, Index cols, Index depth, 41 ::run(cols,rows,depth,rhs,rhsStride,lhs,lhsStride,res,resStride,alpha,blocking,info); 54 static void run(Index rows, Index cols, Index depth, 91 for(Index k=0; k<depth; k+=kc) 93 const Index actual_kc = (std::min)(k+kc,depth)-k; // => rows of B', and cols of the A' 162 for(Index k2=0; k2<depth; k2+=kc) 164 const Index actual_kc = (std::min)(k2+kc,depth)-k2; 296 gemm_blocking_space(DenseIndex /*rows*/, DenseIndex /*cols*/, DenseIndex /*depth*/) 331 gemm_blocking_space(DenseIndex rows, DenseIndex cols, DenseIndex depth) 335 this->m_kc = depth; [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
TextureHelper.java | 163 int depth = blenderContext.getBlenderKey().getGeneratedTextureDepth();
local 184 result = textureGenerator.generate(tex, width, height, depth, blenderContext);
233 int depth = sources.get(0).getImage().getDepth();
local 242 if(source.getImage().getDepth() != depth) {
243 throw new IllegalArgumentException("The texture " + source.getName() + " has invalid depth! It should be: " + depth + '!');
250 if(depth==0) {
251 depth = 1;
258 int pixelsAmount = width * height * depth;
283 if(depth==1) { [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/mesa/drivers/dri/radeon/ |
radeon_mipmap_tree.c | 77 unsigned depth, 85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth; 96 return rowStride * height * depth; 136 lvl->size = get_texture_image_size(mt->mesaFormat, lvl->rowstride, height, lvl->depth, mt->tilebits); 172 mt->levels[level].depth = minify(mt->depth0, i); 312 lvl->depth != texImage->Depth) 341 fprintf(stderr, "depth0 %d vs %d\n", mtBaseLevel->depth, firstImage->Depth); 347 mtBaseLevel->depth == firstImage->Depth) [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_copypix.c | 209 const GLfloat depth[], GLuint z[]) 220 z[i] = (GLuint) (depth[i] * depthMaxF); 227 GLdouble d = depth[i] * ctx->Pixel.DepthScale + ctx->Pixel.DepthBias; 249 GLfloat *p, *tmpImage, *depth; local 306 depth = (GLfloat *) malloc(width * sizeof(GLfloat)); 307 if (!depth) { 313 /* get depth values */ 315 memcpy(depth, p, width * sizeof(GLfloat)); 319 _swrast_read_depth_span_float(ctx, readRb, width, srcx, sy, depth); 323 scale_and_bias_z(ctx, width, depth, span.array->z) [all...] |
/external/sfntly/cpp/src/test/tinyxml/ |
tinyxml.cpp | 800 void TiXmlElement::Print( FILE* cfile, int depth ) const 804 for ( i=0; i<depth; i++ ) { 814 attrib->Print( cfile, depth ); 829 firstChild->Print( cfile, depth + 1 ); 842 node->Print( cfile, depth+1 ); 845 for( i=0; i<depth; ++i ) { 1145 void TiXmlDocument::Print( FILE* cfile, int depth ) const 1150 node->Print( cfile, depth ); 1210 void TiXmlAttribute::Print( FILE* cfile, int /*depth*/, TIXML_STRING* str ) const 1297 void TiXmlComment::Print( FILE* cfile, int depth ) cons [all...] |
tinyxml.h | 213 virtual void Print( FILE* cfile, int depth ) const = 0; 870 virtual void Print( FILE* cfile, int depth ) const { 871 Print( cfile, depth, 0 ); 873 void Print( FILE* cfile, int depth, TIXML_STRING* str ) const; 1793 int depth; member in class:TiXmlPrinter [all...] |
/frameworks/base/core/java/android/os/ |
Debug.java | [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_texture.c | 104 * the number of 2D array texture layers is the "depth". In Gallium the 189 image->Width, image->Height, image->Depth, 350 region.depth = 1; 376 GLuint depth = u_minify(dst->depth0, dstLevel); local 382 u_minify(src->depth0, srcLevel) != depth) { 394 src_box.depth = 1; 398 for (i = face; i < face + depth; i++) {
|
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/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
code.c | 310 need(o, a->state->depth, readCh); 327 need(o, a->state->depth, readCh); 342 need(o, a->state->depth, readCh); 675 x->depth = k; 679 if(y->depth == 0) 681 if(y->depth < x->depth) 682 x->depth = y->depth; 685 if(x->depth == k [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/ |
TextureBlenderLuminance.java | 40 int depth = texture.getImage().getDepth();
local 41 if (depth == 0) {
42 depth = 1;
44 ByteBuffer newData = BufferUtils.createByteBuffer(width * height * depth * 4);
62 return new Texture3D(new Image(Format.RGBA8, width, height, depth, dataArray));
|
/external/mesa3d/src/mesa/state_tracker/ |
st_texture.c | 104 * the number of 2D array texture layers is the "depth". In Gallium the 189 image->Width, image->Height, image->Depth, 350 region.depth = 1; 376 GLuint depth = u_minify(dst->depth0, dstLevel); local 382 u_minify(src->depth0, srcLevel) != depth) { 394 src_box.depth = 1; 398 for (i = face; i < face + depth; i++) {
|
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/qemu/android/utils/ |
timezone.c | 235 int depth ) 259 if ( S_ISDIR(ent_st.st_mode) && depth < 2 ) 262 result = scan_timezone_dir( scan, p, depth + 1 ); 266 else if ( S_ISREG(ent_st.st_mode) && (depth >= 1 && depth <= 2) )
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
RenderScript.java | 371 int width, int height, int depth, 376 int width, int height, int depth, 382 dstMip, width, height, depth, 386 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes); 387 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) { 389 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes); 391 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes); 392 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) { 394 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes); 396 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/ |
__init__.py | 51 includes=[], depth='.', params=None, check=False, 128 depth, generator_input_info, check, circular_check, 192 Any path options will be normalized relative to depth. 198 path = gyp.common.FixIfRelativePath(path, options.depth) 252 this option need to be made relative to options.depth 299 parser.add_option('--depth', dest='depth', metavar='PATH', type='path', 300 help='set DEPTH gyp variable to a relative path to PATH') 414 # For Chromium, the gyp "depth" variable should always be a relative path 415 # to Chromium's top-level "src" directory. If no depth variable was se [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...] |
/external/tinyxml/ |
tinyxml.cpp | 766 void TiXmlElement::Print( FILE* cfile, int depth ) const 769 for ( i=0; i<depth; i++ ) 780 attrib->Print( cfile, depth ); 795 firstChild->Print( cfile, depth + 1 ); 808 node->Print( cfile, depth+1 ); 811 for( i=0; i<depth; ++i ) 1136 void TiXmlDocument::Print( FILE* cfile, int depth ) const 1141 node->Print( cfile, depth ); 1198 void TiXmlAttribute::Print( FILE* cfile, int /*depth*/ ) const 1290 void TiXmlComment::Print( FILE* cfile, int depth ) cons [all...] |