Searched defs:count (Results 26 - 50 of 281) sorted by relevance

1234567891011>>

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_prob.h77 const unsigned int count = MIN(ct[0] + ct[1], count_sat); local
78 const unsigned int factor = max_update_factor * count / count_sat;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
H A Dvp9_reader.h35 int count; member in struct:__anon602
51 int count; local
55 if (r->count < 0)
59 count = r->count;
75 count -= shift;
78 r->count = count;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_writer.h26 int count; member in struct:__anon653
40 int count = br->count; local
57 count += shift;
59 if (count >= 0) {
60 int offset = shift - count;
75 shift = count;
77 count -= 8;
81 br->count = count;
[all...]
/hardware/intel/img/hwcomposer/common/observers/
H A DUeventObserver.cpp171 int count = recv(mUeventFd, mUeventMessage, UEVENT_MSG_LEN - 2, 0); local
172 if (count > 0) {
/hardware/intel/img/libdrm/libdrm/nouveau/
H A Dnouveau_notifier.c35 int count, struct nouveau_notifier **notifier)
51 nvnotify->drm.size = (count * 32);
34 nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle, int count, struct nouveau_notifier **notifier) argument
/hardware/intel/img/libdrm/libdrm/
H A Dxf86drmRandom.c171 unsigned long count = 0; local
177 ++count;
179 if (!++count) break;
182 seed, count, count);
/hardware/invensense/60xx/libsensors_iio/
H A DMPLSupport.cpp47 int count, fd; local
55 count = read_attribute_sensor(fd, buf, sizeof(buf));
56 if(count < 1) {
60 count = sscanf(buf, "%ld", data);
61 if(count)
74 int count = 0; local
76 count = pread(fd, data, size, 0);
77 if(count < 1) {
78 LOGE("HAL:read fails with error code=%d", count);
81 return count;
[all...]
/hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
H A Dinv_sysfs_utils.c35 int count; local
42 count = fprintf(fp, "%ld", data);
44 return count;
57 int count; local
64 count = fread(data, 1, num_bytes, fp);
66 return count;
79 int count; local
81 count = read(fd, str, sizeof(str));
82 if (!count)
83 return count;
106 int count; local
132 int count; local
152 int count; local
172 int count; local
192 int count; local
212 int count; local
232 int count; local
253 int count; local
274 int count = 0; local
[all...]
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
H A Dinv_sysfs_utils.c29 int count; local
36 count = fprintf(fp, "%ld", data);
38 return count;
51 int count; local
58 count = fread(data, 1, num_bytes, fp);
60 return count;
73 int count; local
75 count = read(fd, str, sizeof(str));
76 if (!count)
77 return count;
100 int count; local
126 int count; local
146 int count; local
166 int count; local
186 int count; local
206 int count; local
226 int count; local
247 int count; local
268 int count = 0; local
[all...]
/hardware/libhardware/tests/hwc/
H A Dtest-arrows.c143 int w, h, count = 0; local
146 count = atoi(argv[1]);
157 if (count > 0)
158 if (--count == 0)
/hardware/libhardware_legacy/uevent/
H A Duevent.c85 int count = recv(fd, buffer, buffer_length, 0); local
86 if (count > 0) {
93 return count;
/hardware/samsung_slsi/exynos5/libcamera2/
H A DMetadataConverter.cpp57 ALOGV("DEBUG(%s):Metadata Missmatch tag(%s) type (%d) count(%d)",
58 __FUNCTION__, get_camera_metadata_tag_name(entry->tag), entry->type, entry->count);
65 uint8_t type, size_t count)
67 if (!((entry->type==type)&&(entry->count==count)))
69 ALOGV("DEBUG(%s):Metadata Missmatch tag(%s) type (%d) count(%d)",
70 __FUNCTION__, get_camera_metadata_tag_name(entry->tag), entry->type, entry->count);
191 for (i=0 ; i<curr_entry.count ; i++)
204 for (i=0 ; i<curr_entry.count ; i++)
211 if (curr_entry.count > 3
64 CheckEntryTypeMismatch(camera_metadata_entry_t * entry, uint8_t type, size_t count) argument
[all...]
/hardware/ti/omap4-aah/domx/mm_osal/src/
H A Dtimm_osal_pipes.c204 /*Update message count and size */
407 TIMM_OSAL_U32 * count)
412 *count = pHandle->messageCount;
406 TIMM_OSAL_GetPipeReadyMessageCount(TIMM_OSAL_PTR pPipe, TIMM_OSAL_U32 * count) argument
/hardware/ti/omap4xxx/domx/mm_osal/src/
H A Dtimm_osal_pipes.c204 /*Update message count and size */
434 TIMM_OSAL_U32 * count)
443 *count = pipe->pi_messages;
447 *count = pHandle->messageCount;
433 TIMM_OSAL_GetPipeReadyMessageCount(TIMM_OSAL_PTR pPipe, TIMM_OSAL_U32 * count) argument
/hardware/akm/AK8975_FS/libsensors/
H A DAdxlSensor.cpp178 int AdxlSensor::readEvents(sensors_event_t* data, int count) argument
180 if (count < 1)
197 while (count && mInputReader.readEvent(&event)) {
212 count--;
H A DKionixSensor.cpp156 int KionixSensor::readEvents(sensors_event_t* data, int count) argument
158 if (count < 1)
175 while (count && mInputReader.readEvent(&event)) {
190 count--;
/hardware/intel/common/libmix/videodecoder/
H A DVideoDecoderMPEG4.cpp366 int32_t count = i - 1; local
367 if (count < 0) {
372 for(int k = 0; k < count; k++ ) {
/hardware/intel/common/omx-components/videocodec/
H A DOMXVideoDecoderH263.cpp125 OMX_U32 count = sizeof(plTable)/sizeof(ProfileLevelTable); local
126 CHECK_ENUMERATION_RANGE(p->nProfileIndex,count);
H A DOMXVideoDecoderMPEG4.cpp126 OMX_U32 count = sizeof(plTable)/sizeof(ProfileLevelTable); local
127 CHECK_ENUMERATION_RANGE(p->nProfileIndex,count);
H A DOMXVideoEncoderH263.cpp262 OMX_U32 count = sizeof(plTable)/sizeof(ProfileLevelTable); local
263 CHECK_ENUMERATION_RANGE(p->nProfileIndex,count);
H A DOMXVideoEncoderMPEG4.cpp260 OMX_U32 count = sizeof(plTable)/sizeof(ProfileLevelTable); local
261 CHECK_ENUMERATION_RANGE(p->nProfileIndex,count);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
H A Dthreading.h100 int count; member in struct:__anon535
110 sem->count = value;
123 sem->count--;
124 if (sem->count == 0)
142 if (sem->count < 32768)
144 sem->count++;
/hardware/intel/common/utils/ituxd/jni/
H A DthermalJNI.cpp49 ssize_t count = read(fd, buf, size); local
50 if (count > 0) {
51 while (count > 0 && buf[count-1] == '\n')
52 count--;
53 buf[count] = '\0';
59 return count;
89 int count = 0; local
92 snprintf(full_path, SIZE, "%s%d/type", base_path, count);
100 if (!strcmp(name, buf)) return count;
114 int count = 0; local
[all...]
/hardware/intel/img/hwcomposer/common/planes/
H A DDisplayPlaneManager.cpp81 ELOGTRACE("plane count is not initialized");
246 int count = 0; local
249 count++;
252 return count;
/hardware/invensense/6515/libsensors_iio/
H A DCompassSensor.IIO.9150.h52 virtual int readEvents(sensors_event_t *data, int count) { return 0; } argument

Completed in 2604 milliseconds

1234567891011>>