Searched defs:entry (Results 1 - 25 of 44) sorted by relevance

12

/hardware/libhardware/tests/camera3/
H A Dcamera3tests.cpp36 camera_metadata_entry entry; local
40 ANDROID_SENSOR_INFO_PIXEL_ARRAY_SIZE, &entry))
42 int pixel_array_w = entry.data.i32[0];
43 int pixel_array_h = entry.data.i32[1];
48 ANDROID_SENSOR_INFO_ACTIVE_ARRAY_SIZE, &entry))
50 int active_array_w = entry.data.i32[0];
51 int active_array_h = entry.data.i32[1];
64 camera_metadata_entry entry; local
67 ANDROID_CONTROL_MODE, &entry))
/hardware/intel/common/wrs_omxil_core/utils/src/
H A Dqueue.c54 void __queue_push_head(struct queue *queue, struct list *entry) argument
56 queue->head = __list_add_head(queue->head, entry);
65 struct list *entry = list_alloc(data); local
67 if (!entry)
70 queue->head = __list_add_head(queue->head, entry);
79 void __queue_push_tail(struct queue *queue, struct list *entry) argument
81 queue->tail = list_add_tail(queue->tail, entry);
95 struct list *entry = list_alloc(data); local
97 if (!entry)
100 queue->tail = __list_add_tail(queue->tail, entry);
113 struct list *entry = queue->head; local
128 struct list *entry; local
142 struct list *entry = queue->tail; local
157 struct list *entry; local
181 struct list *entry; local
193 struct list *entry; local
[all...]
H A Dworkqueue.cpp135 struct list *entry = works; local
137 static_cast<WorkableInterface *>(entry->data);
139 works = __list_delete(works, entry);
H A Dlist.c23 void __list_init(struct list *entry) argument
25 if (entry) {
26 entry->prev = NULL;
27 entry->next = NULL;
28 entry->data = NULL;
53 void __list_free(struct list *entry) argument
55 free(entry);
87 struct list *entry; local
90 list_foreach(list, entry) {
96 return entry;
111 __list_add_before(struct list *entry, struct list *new) argument
127 __list_add_after(struct list *entry, struct list *new) argument
193 __list_remove(struct list *list, struct list *entry) argument
215 __list_delete(struct list *list, struct list *entry) argument
[all...]
/hardware/libhardware/tests/camera2/
H A DCameraMetadataTests.cpp69 camera_metadata_ro_entry entry = staticInfo.find(tag); local
70 return entry.type;
75 camera_metadata_ro_entry entry = staticInfo.find(tag); local
76 return entry.count;
81 camera_metadata_ro_entry entry = staticInfo.find(tag); local
82 for (size_t i = 0; i < entry.count; ++i) {
83 if (entry.data.i32[i] == element)
124 camera_metadata_ro_entry entry; local
125 EXPECT_EQ(TYPE_BYTE, entry.type);
126 EXPECT_EQ(TYPE_INT32, entry
[all...]
H A DCameraModuleFixture.h50 camera_metadata_ro_entry entry = staticInfo.find(tag); local
51 return entry;
H A DCameraStreamFixture.h103 camera_metadata_ro_entry entry = staticInfo.find(tag); local
104 ASSERT_NE(0u, entry.count)
107 ASSERT_LE(2u, entry.count);
110 mWidth = entry.data.i32[0];
111 mHeight = entry.data.i32[1];
H A DCameraMultiStreamTests.cpp244 camera_metadata_ro_entry_t entry = local
246 EXPECT_EQ(1u, entry.count);
247 if (entry.count == 1) {
248 return entry.data.i64[0];
254 camera_metadata_ro_entry_t entry = local
256 EXPECT_EQ(1u, entry.count);
257 if (entry.count == 1) {
258 return entry.data.i32[0];
264 camera_metadata_ro_entry_t entry = local
266 EXPECT_EQ(1u, entry
[all...]
/hardware/intel/common/libwsbm/src/
H A Dwsbm_mm.c57 struct _WsbmMMNode *entry; local
60 entry = WSBMLISTENTRY(tail_node, struct _WsbmMMNode, ml_entry);
62 if (!entry->free)
65 return entry->size;
72 struct _WsbmMMNode *entry; local
75 entry = WSBMLISTENTRY(tail_node, struct _WsbmMMNode, ml_entry);
77 if (!entry->free)
80 if (entry->size <= size)
83 entry->size -= size;
220 struct _WsbmMMNode *entry; local
277 struct _WsbmMMNode *entry; local
[all...]
H A Dwsbm_fencemgr.c191 struct _WsbmFenceObject *entry; local
198 entry = WSBMLISTENTRY(list, struct _WsbmFenceObject, head);
203 old_signaled_types = wsbmAtomicRead(&entry->signaled_types);
205 old_signaled_types | (signaled_types & entry->fence_type);
210 wsbmAtomicCmpXchg(&entry->signaled_types, old_signaled_types,
214 if (signaled_types == entry->fence_type)
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
H A Dvpx_codec.c119 vpx_codec_ctrl_fn_map_t *entry; local
123 for (entry = ctx->iface->ctrl_maps; entry && entry->fn; entry++) {
124 if (!entry->ctrl_id || entry->ctrl_id == ctrl_id) {
128 res = entry->fn(ctx->priv->alg_priv, ctrl_id, ap);
/hardware/invensense/6515/libsensors_iio/software/core/mllite/
H A Dstorage_manager.c129 int entry; local
151 entry = inv_find_entry(hd->key);
154 if (entry >= 0 && len >= hd->size) {
155 if (hd->size != ds.hd[entry].size)
160 ds.load[entry](data);
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/
H A Dstorage_manager.c129 int entry; local
151 entry = inv_find_entry(hd->key);
154 if (entry >= 0 && len >= hd->size) {
155 if (hd->size != ds.hd[entry].size)
160 ds.load[entry](data);
/hardware/libhardware/modules/camera/
H A DVendorTags.cpp35 // Describes a single vendor tag entry
108 // Get a static handle to a specific vendor tag entry
171 const Entry* entry = getEntry(tag); local
173 if (entry == NULL)
176 return entry->name;
181 const Entry* entry = getEntry(tag); local
183 if (entry == NULL)
186 return entry->type;
/hardware/intel/common/utils/ISV/omx/
H A Disv_omxcore.cpp56 * core entry
184 struct list *entry; local
/hardware/intel/common/wrs_omxil_core/core/src/
H A Dwrs_omxcore.cpp65 struct list *entry; local
88 entry = list_alloc(cmodule);
89 if (!entry)
91 head = __list_add_tail(head, entry);
111 struct list *entry, *next; local
113 list_foreach_safe(head, entry, next) {
114 CModule *cmodule = static_cast<CModule *>(entry->data);
116 head = __list_delete(head, entry);
170 struct list *entry; local
174 entry
196 struct list *entry; local
312 struct list *entry; local
353 struct list *entry; local
[all...]
/hardware/intel/common/wrs_omxil_core/base/src/
H A Dportbase.cpp92 struct list *entry, *temp; local
95 list_foreach_safe(buffer_hdrs, entry, temp) {
96 free(entry->data); /* OMX_BUFFERHEADERTYPE */
97 __list_delete(buffer_hdrs, entry);
330 struct list *entry; local
354 entry = list_alloc(buffer_hdr);
355 if (!entry) {
359 "cannot allocate list entry\n", __FUNCTION__,
379 buffer_hdrs = __list_add_tail(buffer_hdrs, entry);
411 struct list *entry; local
507 struct list *entry; local
[all...]
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
H A DOMX3A.cpp45 const SceneModesEntry* entry = NULL; local
57 // 2. Find scene mode entry in table
64 entry = cameraLUT + i;
69 return entry;
/hardware/intel/img/psb_video/src/
H A Dtng_jpegdec.c370 uint16_t entry = 0; local
373 /* VLC microcode entry for a valid symbol */
374 entry |= (JPG_OP_VALID_SYMBOL << (JPG_INSTR_SHIFT_WIDTH+JPG_INSTR_OFFSET_WIDTH));
375 entry |= ((symbol_code->code_length - leading - 1) << JPG_INSTR_OFFSET_WIDTH);
376 entry |= symbol_code->symbol;
377 return entry;
383 uint16_t entry = 0; local
385 /* check that the max width read from the VLC entry is valid */
392 entry |= (JPG_OP_DECODE_DIRECT << (JPG_INSTR_SHIFT_WIDTH+JPG_INSTR_OFFSET_WIDTH));
393 entry |
418 uint16_t entry; local
[all...]
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/
H A DOMX3A.cpp40 const SceneModesEntry* entry = NULL; local
52 // 2. Find scene mode entry in table
59 entry = cameraLUT + i;
64 return entry;
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
H A Dh264parse_dpb.c1002 struct list_value_t *entry; member in struct:linked_list_t
1013 lp->entry = lvp;
1031 register struct list_value_t *lvp = lp->entry;
1035 lp->end->value = list_value; // replace the end entry
1036 } else if ((lp->begin==lp->end)||(lvp==lp->end)) // replece the begin/end entry and set the entry to NULL
1038 lp->entry->value = list_value;
1039 lp->prev_entry = lp->entry;
1040 lp->entry = NULL;
1042 else if (lvp->value==list_value) // the entry poin
[all...]
/hardware/qcom/media/msm8974/mm-core/omxcore/inc/
H A DOMX_QCOMExtns.h183 /** Type of extensions should match an entry from
202 /** Pointer to platform specific entry */
203 void* entry; member in struct:OMX_QCOM_PLATFORM_PRIVATE_ENTRY
/hardware/qcom/msm8994/kernel-headers/linux/
H A Dmsm_audio_calibration.h236 struct audio_cal_hw_delay_entry entry[MAX_HW_DELAY_ENTRIES]; member in struct:audio_cal_hw_delay_data
/hardware/qcom/msm8994/original-kernel-headers/linux/
H A Dmsm_audio_calibration.h254 struct audio_cal_hw_delay_entry entry[MAX_HW_DELAY_ENTRIES]; member in struct:audio_cal_hw_delay_data
/hardware/qcom/msm8996/kernel-headers/linux/
H A Dmsm_audio_calibration.h244 struct audio_cal_hw_delay_entry entry[MAX_HW_DELAY_ENTRIES]; member in struct:audio_cal_hw_delay_data

Completed in 523 milliseconds

12