Searched defs:count (Results 76 - 100 of 281) sorted by relevance

1234567891011>>

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
H A Dvp9_convolve2_avg_horiz_dspr2.c273 int32_t count) {
297 for (c = 0; c < count; c++) {
267 convolve_bi_avg_horiz_16_dspr2(const uint8_t *src_ptr, int32_t src_stride, uint8_t *dst_ptr, int32_t dst_stride, const int16_t *filter_x0, int32_t h, int32_t count) argument
H A Dvp9_convolve2_dspr2.c256 int32_t count) {
283 for (c = 0; c < count; c++) {
250 convolve_bi_horiz_16_transposed_dspr2(const uint8_t *src_ptr, int32_t src_stride, uint8_t *dst_ptr, int32_t dst_stride, const int16_t *filter_x0, int32_t h, int32_t count) argument
H A Dvp9_convolve2_horiz_dspr2.c235 int32_t count) {
259 for (c = 0; c < count; c++) {
229 convolve_bi_horiz_16_dspr2(const uint8_t *src_ptr, int32_t src_stride, uint8_t *dst_ptr, int32_t dst_stride, const int16_t *filter_x0, int32_t h, int32_t count) argument
H A Dvp9_convolve8_avg_horiz_dspr2.c338 int32_t count) {
364 for (c = 0; c < count; c++) {
332 convolve_avg_horiz_16_dspr2(const uint8_t *src_ptr, int32_t src_stride, uint8_t *dst_ptr, int32_t dst_stride, const int16_t *filter_x0, int32_t h, int32_t count) argument
H A Dvp9_convolve8_horiz_dspr2.c304 int32_t count) {
330 for (c = 0; c < count; c++) {
298 convolve_horiz_16_dspr2(const uint8_t *src_ptr, int32_t src_stride, uint8_t *dst_ptr, int32_t dst_stride, const int16_t *filter_x0, int32_t h, int32_t count) argument
H A Dvp9_loopfilter_filters_dspr2.c28 int count) {
122 int count) {
23 vp9_lpf_horizontal_4_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count) argument
117 vp9_lpf_vertical_4_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count) argument
H A Dvp9_mbloop_loopfilter_dspr2.c28 int count) {
327 int count) {
23 vp9_lpf_horizontal_8_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count) argument
322 vp9_lpf_vertical_8_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_reconintra.c266 const int count = 2 * bs; local
273 expected_dc = (sum + (count >> 1)) / count;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_firstpass.h37 double count; member in struct:__anon617
H A Dvp9_quantize.c22 void vp9_quantize_b_c(const int16_t *coeff_ptr, intptr_t count, argument
30 int i, non_zero_count = (int)count, eob = -1;
36 vpx_memset(qcoeff_ptr, 0, count * sizeof(int16_t));
37 vpx_memset(dqcoeff_ptr, 0, count * sizeof(int16_t));
41 for (i = (int)count - 1; i >= 0; i--) {
H A Dvp9_ssim.c50 unsigned long sum_sxr, int count) {
55 c1 = (cc1 * count * count) >> 12;
56 c2 = (cc2 * count * count) >> 12;
58 ssim_n = (2 * sum_s * sum_r + c1) * ((int64_t) 2 * count * sum_sxr -
62 ((int64_t)count * sum_sq_s - (int64_t)sum_s * sum_s +
63 (int64_t)count * sum_sq_r - (int64_t) sum_r * sum_r + c2);
48 similarity(unsigned long sum_s, unsigned long sum_r, unsigned long sum_sq_s, unsigned long sum_sq_r, unsigned long sum_sxr, int count) argument
/hardware/intel/common/wrs_omxil_core/core/src/
H A Dintel_video_config_parser.cpp250 int count = 0; local
273 if (count == 2 && nal_unit[i] == 0x01)
280 count = 0;
282 count++;
/hardware/intel/img/hwcomposer/ips/anniedale/
H A DAnnPlaneManager.cpp413 int count = 0; local
416 count++;
419 return count;
/hardware/intel/img/libdrm/libdrm/intel/
H A Dintel_bufmgr.c153 drm_intel_bufmgr_check_aperture_space(drm_intel_bo **bo_array, int count) argument
155 return bo_array[0]->bufmgr->check_aperture_space(bo_array, count);
/hardware/intel/img/libdrm/libdrm/
H A Dxf86drmHash.c317 int count = 0; local
319 for (; bucket; bucket = bucket->next) ++count;
320 return count;
323 static void update_dist(int count) argument
325 if (count >= DIST_LIMIT) ++dist[DIST_LIMIT-1];
326 else ++dist[count];
/hardware/intel/img/libdrm/tests/
H A Ddrmstat.c100 unsigned long count; local
116 count = strtoul(optarg, NULL, 0);
119 sleep(count);
159 count = strtoul(optarg, &pt, 0);
166 indices = alloca(sizeof(*indices) * count);
167 sizes = alloca(sizeof(*sizes) * count);
170 dma.request_count = count;
188 count = strtoul(optarg, &pt, 0);
190 if ((r = drmAddBufs(fd, count, size, 0, 65536)) < 0) {
198 for (i = 0; i < info->count;
[all...]
/hardware/intel/img/libdrm/tests/modetest/
H A Dmodetest.c461 set_mode(struct connector *c, int count) argument
473 for (i = 0; i < count; i++) {
499 for (i = 0; i < count; i++) {
544 int i, connector_id, count = 0; local
567 con_args[count].crtc = -1;
569 &con_args[count].id,
570 &con_args[count].mode_str) != 2 &&
572 &con_args[count].id,
573 &con_args[count].crtc,
574 &con_args[count]
[all...]
/hardware/intel/img/psb_video/src/
H A Dtng_yuv_processor.c384 int count; local
424 count = 0;
425 filters[count++] = VAProcFilterNone;
426 *num_filters = count;
/hardware/invensense/60xx/libsensors_iio/
H A Dsensors_mpl.cpp89 int pollEvents(sensors_event_t* data, int count);
155 int sensors_poll_context_t::pollEvents(sensors_event_t *data, int count) argument
166 for (int i = 0; count && i < numSensorDrivers; i++) {
176 ((MPLSensor*) mSensor)->readCompassEvents(NULL, count);
181 nb = ((MPLSensor*) mSensor)->executeOnData(data, count);
183 count -= nb;
189 nb = ((MPLSensor*) mSensor)->readDmpOrientEvents(data, count);
192 count -= nb;
230 sensors_event_t* data, int count)
233 return ctx->pollEvents(data, count);
229 poll__poll(struct sensors_poll_device_t *dev, sensors_event_t* data, int count) argument
[all...]
/hardware/invensense/6515/libsensors_iio/
H A DCompassSensor.IIO.primary.h55 virtual int readEvents(sensors_event_t *data, int count) { return 0; } argument
H A DMPLSupport.cpp33 int count, fd; local
41 count = read_attribute_sensor(fd, buf, sizeof(buf));
42 if(count < 1) {
46 count = sscanf(buf, "%ld", data);
47 if(count)
60 int count = 0; local
62 count = pread(fd, data, size, 0);
63 if(count < 1) {
64 LOGE("HAL:read fails with error code=%d", count);
67 return count;
[all...]
/hardware/invensense/65xx/libsensors_iio/
H A DCompassSensor.IIO.primary.h55 virtual int readEvents(sensors_event_t *data, int count) { return 0; } argument
H A DMPLSupport.cpp33 int count, fd; local
41 count = read_attribute_sensor(fd, buf, sizeof(buf));
42 if(count < 1) {
46 count = sscanf(buf, "%ld", data);
47 if(count)
60 int count = 0; local
62 count = pread(fd, data, size, 0);
63 if(count < 1) {
64 LOGE("HAL:read fails with error code=%d", count);
67 return count;
[all...]
H A Dsensors_mpl.cpp92 int pollEvents(sensors_event_t* data, int count);
203 int sensors_poll_context_t::pollEvents(sensors_event_t *data, int count)
214 LOGI_IF(0, "poll nb=%d, count=%d, pt=%d", nb, count, polltime);
216 for (int i = 0; count && i < numSensorDrivers; i++) {
227 readDmpOrientEvents(data, count);
230 count -= nb;
237 readDmpSignificantMotionEvents(data, count);
239 count -= nb;
245 data, count, ID_
358 poll__poll(struct sensors_poll_device_t *dev, sensors_event_t* data, int count) argument
[all...]
/hardware/qcom/display/msm8084/libcopybit/
H A Dcopybit.cpp51 uint32_t count; member in struct:blitReq
247 for (unsigned int i=0 ; i<l->count ; i++) {
412 list->count = 0;
499 mdp_blit_req* req = &list->req[list->count];
518 if (++list->count == maxCount) {
521 list->count = 0;
526 if (list->count != 0) {
529 list->count = 0;
574 list1.count = 1;
647 mdp_blit_req* req = &list->req[list->count
[all...]

Completed in 477 milliseconds

1234567891011>>