Searched refs:size_z (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | reduction_ops_test_big.py | 84 for size_z in range(1, 130, 13): 85 arr = arr_[0:size_x, 0:size_y, 0:size_z] 86 sum_y = np.ones([size_x, size_z], dtype=np.float32) 91 dtype=np.float32, shape=(size_x, size_y, size_z)) 134 for size_z in range(1, 130, 13): 135 arr = arr_[0:size_x, 0:size_y, 0:size_z] 141 dtype=np.float32, shape=(size_x, size_y, size_z)) 182 for size_z in range(1, 130, 13): 183 arr = arr_[0:size_x, 0:size_y, 0:size_z] 184 sum_y = np.ones([size_x, size_z], dtype=np.bool) [all …]
|
D | reduction_ops_test.py | 257 for size_z in [1, 3, 16, 33]: 258 arr = np.ones([size_x, size_y, size_z], dtype=np.float32)
|
/external/python/cpython2/Objects/ |
D | longobject.c | 1854 Py_ssize_t size_z; in PyLong_FromString() local 1893 size_z = (Py_ssize_t)((scan - str) * log_base_PyLong_BASE[base]) + 1; in PyLong_FromString() 1896 assert(size_z > 0); in PyLong_FromString() 1897 z = _PyLong_New(size_z); in PyLong_FromString() 1939 if (Py_SIZE(z) < size_z) { in PyLong_FromString() 1946 assert(Py_SIZE(z) == size_z); in PyLong_FromString() 1947 tmp = _PyLong_New(size_z + 1); in PyLong_FromString() 1954 sizeof(digit) * size_z); in PyLong_FromString() 1957 z->ob_digit[size_z] = (digit)c; in PyLong_FromString() 1958 ++size_z; in PyLong_FromString() [all …]
|
/external/python/cpython3/Objects/ |
D | longobject.c | 2270 Py_ssize_t size_z; in PyLong_FromString() local 2340 size_z = (Py_ssize_t)fsize_z; in PyLong_FromString() 2343 assert(size_z > 0); in PyLong_FromString() 2344 z = _PyLong_New(size_z); in PyLong_FromString() 2396 if (Py_SIZE(z) < size_z) { in PyLong_FromString() 2403 assert(Py_SIZE(z) == size_z); in PyLong_FromString() 2404 tmp = _PyLong_New(size_z + 1); in PyLong_FromString() 2411 sizeof(digit) * size_z); in PyLong_FromString() 2414 z->ob_digit[size_z] = (digit)c; in PyLong_FromString() 2415 ++size_z; in PyLong_FromString() [all …]
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cDirectStateAccessTexturesTests.cpp | 5226 GLsizei size_z = s_texture_depth * s_block_3d_size; in PrepareCompressedStorage() local 5229 gl.compressedTexImage3D(TextureTarget<3>(), 0, internalformat, size_x, size_y, size_z, 0, in PrepareCompressedStorage()
|