Searched defs:block_size (Results 76 - 100 of 163) sorted by relevance

1234567

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_rgtc.c55 unsigned block_size = 8; local
69 src += block_size;
102 int block_size = 8; local
117 src += block_size;
200 int block_size = 8; local
215 src += block_size;
247 unsigned block_size = 16; local
261 src += block_size;
327 int block_size = 16; local
343 src += block_size;
384 int block_size = 16; local
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_pipe.c630 uint64_t * block_size = ret; local
631 block_size[0] = 256;
632 block_size[1] = 256;
633 block_size[2] = 256;
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dkernel.cpp67 const std::vector<size_t> &block_size) {
83 pad_vector<uint>(q, block_size, 1).data(),
123 _cl_kernel::block_size() const { function in class:_cl_kernel
64 launch(clover::command_queue &q, const std::vector<size_t> &grid_offset, const std::vector<size_t> &grid_size, const std::vector<size_t> &block_size) argument
/external/opencv/cv/src/
H A Dcvfeatureselect.cpp51 const void* maskImage, int block_size,
144 CV_CALL( cvCornerHarris( img, eig, block_size, 3, harris_k ));
148 CV_CALL( cvCornerMinEigenVal( img, eig, block_size, 3 ));
48 cvGoodFeaturesToTrack( const void* image, void* eigImage, void* tempImage, CvPoint2D32f* corners, int *corner_count, double quality_level, double min_distance, const void* maskImage, int block_size, int use_harris, double harris_k ) argument
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_path_storage.h25 block_size = 1 << block_shift, enumerator in enum:agg::path_storage::block_scale_e
26 block_mask = block_size - 1,
H A Dagg_array.h165 block_size = 1 << block_shift, enumerator in enum:agg::pod_deque::block_scale_e
166 block_mask = block_size - 1
303 m_block_ptr_inc(block_size)
325 m_blocks[i] = FX_Alloc(T, block_size);
326 FXSYS_memcpy(m_blocks[i], v.m_blocks[i], block_size * sizeof(T));
337 FXSYS_memcpy(m_blocks[i], v.m_blocks[i], block_size * sizeof(T));
356 m_blocks[nb] = FX_Alloc(T, block_size);
390 if(num_elements < block_size) {
392 unsigned rest = block_size - (m_size & block_mask);
435 pod_allocator(unsigned block_size, unsigne argument
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer_unittest.cc123 TestInputStream(const void* data, int size, int block_size) argument
124 : array_stream_(data, size, block_size), counter_(0) {}
H A Dzero_copy_stream_impl.cc77 FileInputStream::FileInputStream(int file_descriptor, int block_size) argument
79 impl_(&copying_input_, block_size) {
173 FileOutputStream::FileOutputStream(int file_descriptor, int block_size) argument
175 impl_(&copying_output_, block_size) {
271 IstreamInputStream::IstreamInputStream(istream* input, int block_size) argument
273 impl_(&copying_input_, block_size) {
313 OstreamOutputStream::OstreamOutputStream(ostream* output, int block_size) argument
315 impl_(&copying_output_, block_size) {
H A Dzero_copy_stream_impl_lite.cc53 int block_size)
56 block_size_(block_size > 0 ? block_size : size),
106 ArrayOutputStream::ArrayOutputStream(void* data, int size, int block_size) argument
109 block_size_(block_size > 0 ? block_size : size),
205 CopyingInputStream* copying_stream, int block_size)
210 buffer_size_(block_size > 0 ? block_size : kDefaultBlockSize),
311 CopyingOutputStream* copying_stream, int block_size)
52 ArrayInputStream(const void* data, int size, int block_size) argument
204 CopyingInputStreamAdaptor( CopyingInputStream* copying_stream, int block_size) argument
310 CopyingOutputStreamAdaptor( CopyingOutputStream* copying_stream, int block_size) argument
[all...]
/external/qemu/distrib/libsparse/src/
H A Dbacked_block.c52 unsigned int block_size; member in struct:backed_block_list
123 struct backed_block_list *backed_block_list_new(unsigned int block_size) argument
126 b->block_size = block_size;
209 block_len = a->len / bbl->block_size; /* rounds down */
366 max_len = ALIGN_DOWN(max_len, bbl->block_size);
380 new_bb->block = bb->block + max_len / bbl->block_size;
H A Dsparse.c30 struct sparse_file *sparse_file_new(unsigned int block_size, int64_t len) argument
37 s->backed_block_list = backed_block_list_new(block_size);
43 s->block_size = block_size;
95 DIV_ROUND_UP(backed_block_len(bb), s->block_size);
97 if (last_block < DIV_ROUND_UP(s->len, s->block_size)) {
136 write_skip_chunk(out, (int64_t)blocks * s->block_size);
140 DIV_ROUND_UP(backed_block_len(bb), s->block_size);
143 pad = s->len - (int64_t)last_block * s->block_size;
160 out = output_file_open_fd(fd, s->block_size,
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_build.c360 const size_t block_size = 16; local
366 pad_len = block_size - wpabuf_len(plain) % block_size;
370 wpabuf_put_be16(msg, block_size + wpabuf_len(plain));
372 iv = wpabuf_put(msg, block_size);
373 if (random_get_bytes(iv, block_size) < 0)
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_build.c360 const size_t block_size = 16; local
366 pad_len = block_size - wpabuf_len(plain) % block_size;
370 wpabuf_put_be16(msg, block_size + wpabuf_len(plain));
372 iv = wpabuf_put(msg, block_size);
373 if (random_get_bytes(iv, block_size) < 0)
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_attr_build.c360 const size_t block_size = 16; local
366 pad_len = block_size - wpabuf_len(plain) % block_size;
370 wpabuf_put_be16(msg, block_size + wpabuf_len(plain));
372 iv = wpabuf_put(msg, block_size);
373 if (random_get_bytes(iv, block_size) < 0)
/external/ceres-solver/internal/ceres/
H A Dcompressed_row_sparse_matrix.cc337 const int block_size = blocks[i]; local
338 for (int r = 0; r < block_size; ++r) {
341 for (int c = 0; c < block_size; ++c, ++idx_cursor) {
345 col_cursor += block_size;
H A Dschur_eliminator_impl.h196 const int block_size = bs->cols[i].size; local
198 diag(D + bs->cols[i].position, block_size);
202 m.block(r, c, block_size, block_size).diagonal()
400 const int block_size = bs->cols[block_id].size; local
405 row.block.size, block_size,
567 const int block_size = bs->cols[block_id].size; local
570 values + row.cells[c].position, row.block.size, block_size,
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dmfqe.c31 int block_size, int src_weight)
37 for (r = 0; r < block_size; r++)
39 for (c = 0; c < block_size; c++)
81 int block_size,
84 if (block_size == 16)
90 else /* if (block_size == 8) */
29 filter_by_weight(unsigned char *src, int src_stride, unsigned char *dst, int dst_stride, int block_size, int src_weight) argument
71 apply_ifactor(unsigned char *y_src, int y_src_stride, unsigned char *y_dst, int y_dst_stride, unsigned char *u_src, unsigned char *v_src, int uv_src_stride, unsigned char *u_dst, unsigned char *v_dst, int uv_dst_stride, int block_size, int src_weight) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dtemporal_filter.c91 unsigned int block_size,
103 for (i = 0,k = 0; i < block_size; i++)
105 for (j = 0; j < block_size; j++, k++)
133 byte += stride - block_size;
86 vp8_temporal_filter_apply_c( unsigned char *frame1, unsigned int stride, unsigned char *frame2, unsigned int block_size, int strength, int filter_weight, unsigned int *accumulator, unsigned short *count ) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c220 const unsigned block_size = scene->zsbuf.blocksize; local
240 switch (block_size) {
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_unittest.cc413 int block_size = kBlockSizes[4]; local
414 int gzip_buffer_size = block_size;
417 ArrayOutputStream output(buffer, kBufferSize, block_size);
430 ArrayInputStream input(buffer, size, block_size);
442 int block_size = kBlockSizes[4]; local
443 int gzip_buffer_size = block_size;
445 ArrayOutputStream output(buffer, kBufferSize, block_size);
457 ArrayInputStream input(buffer, size, block_size);
/external/e2fsprogs/lib/ext2fs/
H A Dundo_io.c144 int block_size ; local
148 block_size = channel->block_size;
178 io_channel_set_blksize(channel, block_size);
182 static errcode_t write_block_size(TDB_CONTEXT *tdb, int block_size) argument
189 tdb_data.dptr = (unsigned char *)&(block_size);
190 tdb_data.dsize = sizeof(block_size);
223 size = channel->block_size;
228 size = count * channel->block_size;
236 offset = (block * channel->block_size)
[all...]
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.cpp410 const int32 block_size = GetCodedUIntSize(block_payload_size); local
411 const uint64 block_elem_size = 1 + block_size + block_payload_size;
/external/libvpx/libvpx/vp8/common/
H A Dmfqe.c31 int block_size, int src_weight)
37 for (r = 0; r < block_size; r++)
39 for (c = 0; c < block_size; c++)
81 int block_size,
84 if (block_size == 16)
90 else /* if (block_size == 8) */
29 filter_by_weight(unsigned char *src, int src_stride, unsigned char *dst, int dst_stride, int block_size, int src_weight) argument
71 apply_ifactor(unsigned char *y_src, int y_src_stride, unsigned char *y_dst, int y_dst_stride, unsigned char *u_src, unsigned char *v_src, int uv_src_stride, unsigned char *u_dst, unsigned char *v_dst, int uv_dst_stride, int block_size, int src_weight) argument
/external/libvpx/libvpx/vp8/encoder/
H A Dtemporal_filter.c91 unsigned int block_size,
102 for (i = 0,k = 0; i < block_size; i++)
104 for (j = 0; j < block_size; j++, k++)
132 byte += stride - block_size;
86 vp8_temporal_filter_apply_c( unsigned char *frame1, unsigned int stride, unsigned char *frame2, unsigned int block_size, int strength, int filter_weight, unsigned int *accumulator, unsigned short *count ) argument
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c220 const unsigned block_size = scene->zsbuf.blocksize; local
240 switch (block_size) {

Completed in 4969 milliseconds

1234567