Home
last modified time | relevance | path

Searched refs:zsize (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Modules/
Dimgfile.c90 int xsize, ysize, zsize; in imgfile_read() local
118 zsize = image->zsize; in imgfile_read()
119 if ( zsize != 1 && zsize != 3) { in imgfile_read()
132 if ( zsize == 3 ) zsize = 4; in imgfile_read()
133 rv = PyString_FromStringAndSize((char *)NULL, xsize*ysize*zsize); in imgfile_read()
151 if ( zsize == 1 ) { in imgfile_read()
216 xscale(IMAGE *image, int xsize, int ysize, int zsize, in xscale() argument
223 if ( zsize == 1 ) { in xscale()
246 int xsize, ysize, zsize; in imgfile_readscaled() local
307 zsize = image->zsize; in imgfile_readscaled()
[all …]
/external/elfutils/libelf/
Delf_strptr.c44 size_t zsize, zalign; in get_zdata() local
45 void *zdata = __libelf_decompress_elf (strscn, &zsize, &zalign); in get_zdata()
50 strscn->zdata_size = zsize; in get_zdata()
/external/swiftshader/src/Device/
DASTC_Decoder.cpp33 int xsize, int ysize, int zsize, in write_imageblock() argument
54 if(xi >= 0 && yi >= 0 && zi >= 0 && xi < xsize && yi < ysize && zi < zsize) in write_imageblock()
/external/trace-cmd/lib/trace-cmd/
Dtrace-compress.c830 chunks[i].zsize = tep_read_number(handle->tep, buf, 4); in tracecmd_load_chunks_info()
836 if (lseek64(handle->fd, chunks[i].zsize, SEEK_CUR) == (off64_t)-1) in tracecmd_load_chunks_info()
878 bytes_in = malloc(chunk->zsize); in tracecmd_uncompress_chunk()
882 if (read_fd(handle->fd, bytes_in, chunk->zsize) < 0) in tracecmd_uncompress_chunk()
886 bytes_in, chunk->zsize, data, chunk->size) < 0) in tracecmd_uncompress_chunk()
/external/OpenCL-CTS/test_conformance/profiling/
Dexecute_multipass.cpp64 …l_uchar *ptr0, cl_uchar *ptr1, cl_uchar tolerance, int xsize, int ysize, int zsize, int nChannels ) in verifyImages() argument
70 for( z = 0; z < zsize; z++ ){ in verifyImages()
/external/python/cpython2/Lib/test/
Dtest_types.py131 xsize, ysize, zsize = 238, 356, 4
132 if not (xsize*ysize*zsize == zsize*xsize*ysize == 338912):
/external/trace-cmd/lib/trace-cmd/include/private/
Dtrace-cmd-private.h523 unsigned int zsize; member
/external/python/cpython3/Lib/test/
Dtest_types.py144 xsize, ysize, zsize = 238, 356, 4
145 if not (xsize*ysize*zsize == zsize*xsize*ysize == 338912):