HomeSort by relevance Sort by last modified time
    Searched refs:n_elements (Results 1 - 22 of 22) sorted by null

  /external/compiler-rt/lib/asan/tests/
asan_benchmarks_test.cc 19 static void ManyAccessFunc(T *x, size_t n_elements, size_t n_iter) {
23 for (size_t i = 0; i <= n_elements - 16; i += 16) {
  /external/dlmalloc/
malloc.h 126 calloc(size_t n_elements, size_t element_size);
127 Returns a pointer to n_elements * element_size bytes, with all locations
333 independent_calloc(size_t n_elements, size_t element_size, void* chunks[]);
336 single cleared space, it returns an array of pointers to n_elements
348 n_elements in length. It is filled in with the pointers to the
352 null if the allocation failed. If n_elements is zero and "chunks"
384 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
386 independent_comalloc allocates, all at once, a set of n_elements
397 must be of at least n_elements in length. It is filled in with the
401 null if the allocation failed. If n_elements is zero and chunks i
    [all...]
malloc.c     [all...]
  /external/tensorflow/tensorflow/core/lib/gtl/
top_n_test.cc 46 void TestIntTopNHelper(size_t limit, size_t n_elements, const Cmp &cmp,
49 LOG(INFO) << "Testing limit=" << limit << ", n_elements=" << n_elements
53 std::vector<int> shadow(n_elements);
54 for (int i = 0; i != n_elements; ++i) shadow[i] = random->Uniform(limit);
57 size_t top_size = std::min(limit, n_elements);
77 void TestIntTopN(size_t limit, size_t n_elements, const Cmp &cmp,
80 TestIntTopNHelper(limit, n_elements, cmp, random, true, false);
82 TestIntTopNHelper(limit, n_elements, cmp, random, false, false);
84 TestIntTopNHelper(limit, n_elements, cmp, random, true, true)
    [all...]
  /external/valgrind/coregrind/
m_hashtable.c 47 UInt n_elements; member in struct:_VgHashTable
78 table->n_elements = 0;
87 return table->n_elements;
121 (UWord)table->n_elements );
150 table->n_elements++;
151 if ( (1 * (ULong)table->n_elements) > (1 * (ULong)table->n_chains) ) {
203 table->n_elements--;
227 table->n_elements--;
337 *n_elems = table->n_elements;
416 table->n_elements--
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cVertexAttrib64BitTest.cpp 1608 const GLint n_elements = configuration.m_n_elements[i]; local
1619 const GLint n_elements = configuration.m_n_elements[n_type]; local
1662 const GLint n_elements = configuration.m_n_elements[n_type]; local
1887 const GLint n_elements = configuration.m_n_elements[n_type]; local
2045 static const GLint n_elements[] = { n_elements_per_scalar, n_elements_per_vec2 }; local
2065 static const GLint n_elements[] = { n_elements_per_vec3, n_elements_per_vec4 }; local
2085 static const GLint n_elements[] = { n_elements_per_mat2 }; local
2103 static const GLint n_elements[] = { n_elements_per_mat3x2, n_elements_per_mat4x2 }; local
2121 static const GLint n_elements[] = { n_elements_per_mat2x3, n_elements_per_mat2x4 }; local
2139 static const GLint n_elements[] = { n_elements_per_mat3, n_elements_per_mat3x4 }; local
2157 static const GLint n_elements[] = { n_elements_per_mat4x3, n_elements_per_mat4 }; local
2415 const GLint n_elements = configuration.m_n_elements[n_type]; local
2466 const GLint n_elements = configuration.m_n_elements[n_type]; local
2499 const GLint n_elements = configuration.m_n_elements[n_type]; local
2540 const GLint n_elements = configuration.m_n_elements[n_type]; local
    [all...]
gl4cGPUShaderFP64Tests.hpp 682 glw::GLuint n_elements, const glw::GLchar* type_name)
686 , m_n_elements(n_elements)
    [all...]
gl4cShaderImageLoadStoreTests.cpp     [all...]
gl4cEnhancedLayoutsTests.cpp 242 const GLuint n_elements = m_n_columns * m_n_rows; local
243 const GLuint size = basic_size * n_elements;
256 for (GLuint i = 0; i < n_elements; ++i)
266 for (GLuint i = 0; i < n_elements; ++i)
276 for (GLuint i = 0; i < n_elements; ++i)
286 for (GLuint i = 0; i < n_elements; ++i)
534 const GLuint n_elements = m_n_columns * m_n_rows; local
541 return basic_type_size * n_elements;
5289 const GLuint n_elements = (0 == member.m_n_array_elements) ? 1 : member.m_n_array_elements; local
6610 const GLuint n_elements = (0 == variable.m_n_array_elements) ? 1 : variable.m_n_array_elements; local
    [all...]
gl4cGPUShaderFP64Tests.cpp 4142 const glw::GLuint n_elements = n_columns * n_rows; local
4225 const glw::GLuint n_elements = n_columns * n_rows; local
5192 const glw::GLuint n_elements = it_uniform_details->m_n_elements; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
hashtab.h 117 size_t n_elements; variable
  /toolchain/binutils/binutils-2.27/include/
gcc-c-interface.h 120 int n_elements; member in struct:gcc_type_array
hashtab.h 112 size_t n_elements; member in struct:htab
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 156 void *(*calloc)(uptr n_elements, uptr elem_size);
163 void *(*calloc)(uptr n_elements, uptr elem_size);
  /external/libffi/src/
dlmalloc.c 698 calloc(size_t n_elements, size_t element_size);
699 Returns a pointer to n_elements * element_size bytes, with all locations
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/
dlmalloc.c 703 calloc(size_t n_elements, size_t element_size);
704 Returns a pointer to n_elements * element_size bytes, with all locations
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/src/
dlmalloc.c 703 calloc(size_t n_elements, size_t element_size);
704 Returns a pointer to n_elements * element_size bytes, with all locations
    [all...]
  /bionic/libc/bionic/
malloc_common.cpp 87 extern "C" void* calloc(size_t n_elements, size_t elem_size) {
90 return _calloc(n_elements, elem_size);
92 return Malloc(calloc)(n_elements, elem_size);
  /external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
esextcTextureCubeMapArraySampling.cpp 359 * @param n_elements Number of elements in array
364 glw::GLint n_elements, glw::GLint n_mipmap_levels, glw::GLfloat* out_data)
370 out_data[2] = ((glw::GLfloat)(element_index + 1)) / ((glw::GLfloat)n_elements);
381 * @param n_elements Number of elements in array, ignored
387 glw::GLint /* n_elements */, glw::GLint /* n_mipmap_levels */, T* out_data)
400 * @param n_elements Number of elements in array
405 glw::GLint n_elements, glw::GLint n_mipmap_levels, glw::GLubyte* out_data)
411 const glw::GLuint n_faces_per_level = n_elements * n_faces;
457 * @param n_elements Number of elements in array
461 void getDepthComponent(glw::GLint cube_face, glw::GLint element_index, glw::GLint mipmap_level, glw::GLint n_elements,
3457 const glw::GLint n_elements = resolution.m_depth \/ n_faces; local
    [all...]
esextcTextureCubeMapArraySubImage3D.cpp 437 glw::GLuint n_elements = width * height * depth * m_n_components; local
438 DataBufferVec result_data_buffer(n_elements, 0);
455 return memcmp(&result_data_buffer[0], &m_expected_data_buffer[0], n_elements * sizeof(glw::GLuint)) == 0;
  /toolchain/binutils/binutils-2.27/libiberty/
hashtab.c 223 #define htab_elements(htab) ((htab)->n_elements - (htab)->n_deleted)
471 htab->n_elements = 0;
556 htab->n_elements -= htab->n_deleted;
643 if (insert == INSERT && size * 3 <= htab->n_elements * 4)
694 htab->n_elements++;
  /external/deqp/external/openglcts/modules/glesext/geometry_shader/
esextcGeometryShaderRendering.cpp 664 unsigned int n_elements = getAmountOfElementsPerInstance(); local
803 gl.drawElements(mode, n_elements, index_type, NULL);
810 gl.drawElementsInstanced(mode, n_elements, index_type, NULL, n_instances);
817 gl.drawRangeElements(mode, min_elements_index, max_elements_index, n_elements, index_type, NULL);
    [all...]

Completed in 906 milliseconds