Home
last modified time | relevance | path

Searched refs:row_ptr (Results 1 – 11 of 11) sorted by relevance

/external/libpng/contrib/oss-fuzz/
Dlibpng_read_fuzzer.cc29 if (png_handler.row_ptr) \
30 png_free(png_handler.png_ptr, png_handler.row_ptr); \
40 png_handler.row_ptr = nullptr; \
54 png_voidp row_ptr = nullptr; member
58 if (row_ptr) in ~PngObjectHandler()
59 png_free(png_ptr, row_ptr); in ~PngObjectHandler()
98 png_handler.row_ptr = nullptr; in LLVMFuzzerTestOneInput()
139 png_handler.row_ptr = png_malloc( in LLVMFuzzerTestOneInput()
172 static_cast<png_bytep>(png_handler.row_ptr), nullptr); in LLVMFuzzerTestOneInput()
Dnewcc35 png_voidp row_ptr = nullptr;
39 if (row_ptr)
40 png_free(png_ptr, row_ptr);
80 png_handler.row_ptr = nullptr;
93 if (png_handler.row_ptr) \
94 png_free(png_handler.png_ptr, png_handler.row_ptr); \
104 png_handler.row_ptr = nullptr; \
145 png_handler.row_ptr = png_malloc(
179 static_cast<png_bytep>(png_handler.row_ptr), nullptr);
/external/pdfium/third_party/agg23/
Dagg_rendering_buffer.h77 int8u* row_ptr = m_buf; in attach() local
79 row_ptr = m_buf - int(height - 1) * stride; in attach()
83 *rows++ = row_ptr; in attach()
84 row_ptr += stride; in attach()
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dportable_tensor_utils.cc96 const int8_t* row_ptr = matrix; in PortableMatrixBatchVectorMultiplyAccumulate() local
102 __builtin_prefetch(row_ptr, 0 /* prefetch for read */, in PortableMatrixBatchVectorMultiplyAccumulate()
105 for (col = 0; col < m_cols; ++col, ++row_ptr) { in PortableMatrixBatchVectorMultiplyAccumulate()
106 dotprod += (*row_ptr) * (vectors[col]); in PortableMatrixBatchVectorMultiplyAccumulate()
155 const int8_t* row_ptr = matrix; in PortableSparseMatrixBatchVectorMultiplyAccumulate() local
162 __builtin_prefetch(row_ptr, 0 /* prefetch for read */, in PortableSparseMatrixBatchVectorMultiplyAccumulate()
171 dotprod += (*row_ptr++) * (*vector_block_ptr++); in PortableSparseMatrixBatchVectorMultiplyAccumulate()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Dneon_tensor_utils.cc434 int8_t* row_ptr = (int8_t*)matrix + row * m_cols; // NOLINT in NeonMatrixBatchVectorMultiplyAccumulate() local
436 memcpy(aligned_row, row_ptr, sizeof(int8_t) * m_cols); in NeonMatrixBatchVectorMultiplyAccumulate()
437 row_ptr = aligned_row; in NeonMatrixBatchVectorMultiplyAccumulate()
444 __builtin_prefetch(row_ptr, 0 /* prefetch for read */, in NeonMatrixBatchVectorMultiplyAccumulate()
454 (uintptr_t)(&row_ptr[col]) & (kWeightsPerUint32 - 1), 0); in NeonMatrixBatchVectorMultiplyAccumulate()
456 const int8x16_t s2_8x16 = vld1q_s8((const int8_t*)(row_ptr + col)); in NeonMatrixBatchVectorMultiplyAccumulate()
483 (uintptr_t)(&row_ptr[col]) & (kWeightsPerUint32 - 1), 0); in NeonMatrixBatchVectorMultiplyAccumulate()
485 const int8x8_t s2_8x8 = vld1_s8((const int8_t*)(row_ptr + col)); in NeonMatrixBatchVectorMultiplyAccumulate()
491 postable_sum += row_ptr[col] * aligned_vec[col]; in NeonMatrixBatchVectorMultiplyAccumulate()
584 const int8_t* row_ptr = matrix; in NeonSparseMatrixBatchVectorMultiplyAccumulate() local
[all …]
Ddepthwiseconv_uint8_3x3_filter.h3772 const uint8* row_ptr = input_block_data;
3774 const uint8* ptr = row_ptr;
3780 row_ptr += input_height_stride;
/external/deqp/external/openglcts/modules/gles31/
Des31cTextureStorageMultisampleFunctionalTests.cpp667 float* row_ptr = (float*)buffer + row_width * data_y; in iterate() local
671 float* data_ptr = row_ptr + x * pixel_size; in iterate()
1054 const unsigned int* row_ptr = (unsigned int*)((char*)buffer + data_y * row_width); in iterate() local
1058 const unsigned int* data_ptr = (unsigned int*)((char*)row_ptr + x * pixel_size); in iterate()
/external/deqp/external/openglcts/modules/gl/
Dgl4cTextureViewTests.cpp4672 const unsigned char* row_ptr = m_result_data + m_reference_texture_width * y * 4 /* RGBA */; in executeTest() local
4676 const unsigned char* pixel_ptr = row_ptr + x * 4 /* RGBA */; in executeTest()
8438 const unsigned char* row_ptr = data_ptr + y * m_texture_n_components * write_to_width; in checkProgramWriteCoherency() local
8442 const unsigned char* texel_ptr = row_ptr + x * m_texture_n_components; in checkProgramWriteCoherency()
Dgl4cShaderSubroutineTests.cpp7430 const float* row_ptr = (const float*)m_read_buffer + y * m_to_width * 4; /* rgba */ in verifyReadBuffer() local
7434 const float* texel_ptr = row_ptr + x * 4; /* rgba */ in verifyReadBuffer()
9347 const float* row_ptr = m_to_data + y * 4 /* rgba */ * m_to_width; in verifyRenderedData() local
9351 const float* pixel_ptr = row_ptr + 4 /* rgba */ * x; in verifyRenderedData()
Dgl4cGPUShaderFP64Tests.cpp9214 const unsigned char* row_ptr = m_to_data + 4 /* rgba */ * m_to_width * y; in executeFunctionalTest() local
9218 const unsigned char* pixel_ptr = row_ptr + 4 /* rgba */ * x; in executeFunctionalTest()
/external/libpng/
DCHANGES6004 Initialize png_handler.row_ptr in contrib/oss-fuzz/libpng_read_fuzzer.cc
6037 Initialize png_handler.row_ptr in contrib/oss-fuzz/libpng_read_fuzzer.cc