Searched defs:list (Results 1 - 25 of 103) sorted by relevance

12345

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_frame_buffers.c16 int vp9_alloc_internal_frame_buffers(InternalFrameBufferList *list) { argument
17 assert(list != NULL);
18 vp9_free_internal_frame_buffers(list);
20 list->num_internal_frame_buffers =
22 list->int_fb =
23 (InternalFrameBuffer *)vpx_calloc(list->num_internal_frame_buffers,
24 sizeof(*list->int_fb));
25 return (list->int_fb == NULL);
28 void vp9_free_internal_frame_buffers(InternalFrameBufferList *list) { argument
31 assert(list !
[all...]
/hardware/intel/common/wrs_omxil_core/utils/inc/
H A Dlist.h2 * list.h, list
26 struct list { struct
27 struct list *next;
28 struct list *prev;
33 void __list_init(struct list *);
35 struct list *__list_alloc(void);
36 struct list *list_alloc(void *);
38 void __list_free(struct list *);
39 void list_free_all(struct list *);
[all...]
/hardware/libhardware/tests/nusensors/
H A Dnusensors.cpp78 struct sensor_t const* list; local
79 int count = module->get_sensors_list(module, &list);
90 list[i].name,
91 list[i].vendor,
92 list[i].version,
93 list[i].handle,
94 list[i].type,
95 list[i].maxRange,
96 list[i].resolution,
97 list[
[all...]
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/
H A DThermalSensorAttrib.java48 public void setWeights(ArrayList<Integer> list) { argument
49 if (list != null) {
50 mWeights = new Integer[list.size()];
52 mWeights = list.toArray(mWeights);
61 public void setOrder(ArrayList<Integer> list) { argument
62 if (list != null) {
63 mOrder = new Integer[list.size()];
65 mOrder = list.toArray(mOrder);
/hardware/qcom/display/msm8084/libqdutils/
H A Dcb_utils.cpp6 * notice, this list of conditions and the following disclaimer
8 * copyright notice, this list of conditions and the following
43 int CBUtils::getuiClearRegion(hwc_display_contents_1_t* list, argument
46 size_t last = list->numHwLayers - 1;
47 hwc_rect_t fbFrame = list->hwLayers[last].displayFrame;
54 if((list->hwLayers[i].blending == HWC_BLENDING_NONE) ||
56 (list->hwLayers[i].flags & HWC_SKIP_HWC_COMPOSITION))
58 hwc_rect_t displayFrame = list->hwLayers[i].displayFrame;
67 if((list->hwLayers[i].blending != HWC_BLENDING_NONE) ||
70 hwc_rect_t displayFrame = list
[all...]
/hardware/qcom/display/msm8226/libqdutils/
H A Dcb_utils.cpp6 * notice, this list of conditions and the following disclaimer
8 * copyright notice, this list of conditions and the following
43 int CBUtils::getuiClearRegion(hwc_display_contents_1_t* list, argument
46 size_t last = list->numHwLayers - 1;
47 hwc_rect_t fbFrame = list->hwLayers[last].displayFrame;
54 if((list->hwLayers[i].blending == HWC_BLENDING_NONE) ||
56 (list->hwLayers[i].flags & HWC_SKIP_HWC_COMPOSITION))
58 hwc_rect_t displayFrame = list->hwLayers[i].displayFrame;
67 if((list->hwLayers[i].blending != HWC_BLENDING_NONE) ||
70 hwc_rect_t displayFrame = list
[all...]
/hardware/intel/common/wrs_omxil_core/utils/src/
H A Dqueue.c48 struct list *list = queue->head; local
50 list_free_all(list);
54 void __queue_push_head(struct queue *queue, struct list *entry)
65 struct list *entry = list_alloc(data);
79 void __queue_push_tail(struct queue *queue, struct list *entry)
95 struct list *entry = list_alloc(data);
111 struct list *__queue_pop_head(struct queue *queue)
113 struct list *entry = queue->head;
128 struct list *entr
[all...]
H A Dlist.c2 * list.c, list
21 #include <list.h>
23 void __list_init(struct list *entry)
32 struct list *__list_alloc(void)
34 struct list *new;
36 new = malloc(sizeof(struct list));
42 struct list *list_alloc(void *data)
44 struct list *new;
53 void __list_free(struct list *entr
58 list_free_all(struct list *list) argument
67 __list_last(struct list *list) argument
76 __list_first(struct list *list) argument
85 __list_entry(struct list *list, int index) argument
99 list_length(struct list *list) argument
145 __list_add_head(struct list *list, struct list *new) argument
157 __list_add_tail(struct list *list, struct list *new) argument
171 list_add_head(struct list *list, void *data) argument
182 list_add_tail(struct list *list, void *data) argument
193 __list_remove(struct list *list, struct list *entry) argument
215 __list_delete(struct list *list, struct list *entry) argument
224 list_delete(struct list *list, void *data) argument
238 list_delete_all(struct list *list, void *data) argument
250 list_find(struct list *list, void *data) argument
262 list_find_reverse(struct list *list, void *data) argument
[all...]
/hardware/invensense/6515/libsensors_iio/
H A DCompassSensor.AKM.cpp150 void CompassSensor::fillList(struct sensor_t *list) argument
158 list->maxRange = COMPASS_AKM8963_RANGE;
159 list->resolution = COMPASS_AKM8963_RESOLUTION;
160 list->power = COMPASS_AKM8963_POWER;
161 list->minDelay = COMPASS_AKM8963_MINDELAY;
165 list->maxRange = COMPASS_AKM8975_RANGE;
166 list->resolution = COMPASS_AKM8975_RESOLUTION;
167 list->power = COMPASS_AKM8975_POWER;
168 list->minDelay = COMPASS_AKM8975_MINDELAY;
175 list
[all...]
H A DPressureSensor.IIO.secondary.cpp154 void PressureSensor::fillList(struct sensor_t *list) argument
162 list->maxRange = PRESSURE_BMP280_RANGE;
163 list->resolution = PRESSURE_BMP280_RESOLUTION;
164 list->power = PRESSURE_BMP280_POWER;
165 list->minDelay = PRESSURE_BMP280_MINDELAY;
166 mMinDelay = list->minDelay;
173 list->maxRange = PRESSURE_BMP280_RANGE;
174 list->resolution = PRESSURE_BMP280_RESOLUTION;
175 list->power = PRESSURE_BMP280_POWER;
176 list
[all...]
/hardware/invensense/65xx/libsensors_iio/
H A DCompassSensor.AKM.cpp150 void CompassSensor::fillList(struct sensor_t *list) argument
158 list->maxRange = COMPASS_AKM8963_RANGE;
159 list->resolution = COMPASS_AKM8963_RESOLUTION;
160 list->power = COMPASS_AKM8963_POWER;
161 list->minDelay = COMPASS_AKM8963_MINDELAY;
165 list->maxRange = COMPASS_AKM8975_RANGE;
166 list->resolution = COMPASS_AKM8975_RESOLUTION;
167 list->power = COMPASS_AKM8975_POWER;
168 list->minDelay = COMPASS_AKM8975_MINDELAY;
175 list
[all...]
H A DPressureSensor.IIO.secondary.cpp154 void PressureSensor::fillList(struct sensor_t *list) argument
162 list->maxRange = PRESSURE_BMP280_RANGE;
163 list->resolution = PRESSURE_BMP280_RESOLUTION;
164 list->power = PRESSURE_BMP280_POWER;
165 list->minDelay = PRESSURE_BMP280_MINDELAY;
166 mMinDelay = list->minDelay;
173 list->maxRange = PRESSURE_BMP280_RANGE;
174 list->resolution = PRESSURE_BMP280_RESOLUTION;
175 list->power = PRESSURE_BMP280_POWER;
176 list
[all...]
/hardware/qcom/display/msm8084/libhwcomposer/
H A Dhwc_virtual.cpp92 hwc_display_contents_1_t *list) {
98 if (list && list->outbuf && list->numHwLayers > 0) {
99 reset_layer_prop(ctx, dpy, (int)list->numHwLayers - 1);
100 uint32_t last = (uint32_t)list->numHwLayers - 1;
101 hwc_layer_1_t *fbLayer = &list->hwLayers[last];
122 private_handle_t *ohnd = (private_handle_t *)list->outbuf;
125 setListStats(ctx, list, dpy);
127 if(ctx->mMDPComp[dpy]->prepare(ctx, list) <
91 prepare(hwc_composer_device_1 *dev, hwc_display_contents_1_t *list) argument
149 set(hwc_context_t *ctx, hwc_display_contents_1_t *list) argument
250 prepare(hwc_composer_device_1 *dev, hwc_display_contents_1_t *list) argument
287 set(hwc_context_t *ctx, hwc_display_contents_1_t *list) argument
[all...]
/hardware/qcom/display/msm8226/libhwcomposer/
H A Dhwc_virtual.cpp90 hwc_display_contents_1_t *list) {
96 if (list && list->outbuf && list->numHwLayers > 0) {
97 reset_layer_prop(ctx, dpy, list->numHwLayers - 1);
98 uint32_t last = list->numHwLayers - 1;
99 hwc_layer_1_t *fbLayer = &list->hwLayers[last];
119 private_handle_t *ohnd = (private_handle_t *)list->outbuf;
121 setListStats(ctx, list, dpy);
123 if(ctx->mMDPComp[dpy]->prepare(ctx, list) <
89 prepare(hwc_composer_device_1 *dev, hwc_display_contents_1_t *list) argument
131 set(hwc_context_t *ctx, hwc_display_contents_1_t *list) argument
199 prepare(hwc_composer_device_1 *dev, hwc_display_contents_1_t *list) argument
232 set(hwc_context_t *ctx, hwc_display_contents_1_t *list) argument
[all...]
H A Dhwc_dump_layers.cpp8 * notice, this list of conditions and the following disclaimer.
10 * copyright notice, this list of conditions and the following
76 void HwcDebug::dumpLayers(hwc_display_contents_1_t* list) argument
79 if (UNLIKELY(sDumpEnable) && UNLIKELY(needToDumpLayers()) && LIKELY(list)) {
80 logHwcProps(list->flags);
81 for (size_t i = 0; i < list->numHwLayers; i++) {
82 logLayer(i, list->hwLayers);
83 dumpLayer(i, list->hwLayers);
/hardware/intel/common/libwsbm/src/
H A Dwsbm_mm.c35 * performance gains if a smarter free list is implemented. Currently it is just an
218 struct _WsbmListHead *list; local
228 WSBMLISTFOREACH(list, free_stack) {
229 entry = WSBMLISTENTRY(list, struct _WsbmMMNode, fl_entry);
H A Dwsbm_fencemgr.c187 struct _WsbmListHead *list,
197 while (list != &fc->head && list->next != list) {
198 entry = WSBMLISTENTRY(list, struct _WsbmFenceObject, head);
200 prev = list->prev;
215 WSBMLISTDELINIT(list);
217 list = prev;
186 wsbmSignalPreviousFences(struct _WsbmFenceMgr *mgr, struct _WsbmListHead *list, uint32_t fence_class, uint32_t signaled_types) argument
/hardware/qcom/audio/legacy/libalsa-intf/
H A Dalsa_ucm.h108 /* add new verbs to end of list */
127 /* add new devices to end of list */
154 /* add new modifiers to end of list */
181 * \brief Free a string list
182 * \param list The string list to free
186 int snd_use_case_free_list(const char *list[], int items);
189 * \brief Obtain a list of entries
190 * \param uc_mgr Use case manager (may be NULL - card list)
191 * \param identifier (may be NULL - card list)
356 snd_use_case_card_list(const char **list[]) argument
367 snd_use_case_verb_list(snd_use_case_mgr_t *uc_mgr, const char **list[]) argument
[all...]
H A Dalsaucm_test.c8 * notice, this list of conditions and the following disclaimer.
10 * copyright notice, this list of conditions and the following
74 { UCM_LIST, "list" },
136 " listcards list available cards\n"
137 " list IDENTIFIER list command\n"
161 const char **list = NULL , *str = NULL; local
215 err = snd_use_case_card_list(&list);
217 fprintf(stderr, "%s: error failed to get card list: %d\n", cmd->cmd_str, err);
221 printf("list i
[all...]
/hardware/qcom/display/msm8084/liboverlay/
H A DmdpWrapper.h8 * notice, this list of conditions and the following disclaimer.
10 * copyright notice, this list of conditions and the following
69 bool validateAndSet(const int& fd, mdp_overlay_list& list);
178 inline bool validateAndSet(const int& fd, mdp_overlay_list& list) { argument
179 if (ioctl(fd, MSMFB_OVERLAY_PREPARE, &list) < 0) {
/hardware/qcom/display/msm8226/liboverlay/
H A DmdpWrapper.h8 * notice, this list of conditions and the following disclaimer.
10 * copyright notice, this list of conditions and the following
69 bool validateAndSet(const int& fd, mdp_overlay_list& list);
175 inline bool validateAndSet(const int& fd, mdp_overlay_list& list) { argument
176 if (ioctl(fd, MSMFB_OVERLAY_PREPARE, &list) < 0) {
/hardware/qcom/display/msm8960/libhwcomposer/
H A Dhwc_fbupdate.cpp48 bool FBUpdateLowRes::prepare(hwc_context_t *ctx, hwc_display_contents_1 *list, argument
55 mModeOn = configure(ctx, list, fbZorder);
60 bool FBUpdateLowRes::configure(hwc_context_t *ctx, hwc_display_contents_1 *list, argument
63 hwc_layer_1_t *layer = &list->hwLayers[list->numHwLayers - 1];
96 getNonWormholeRegion(list, sourceCrop);
151 bool FBUpdateHighRes::prepare(hwc_context_t *ctx, hwc_display_contents_1 *list, argument
159 mModeOn = configure(ctx, list, fbZorder);
165 hwc_display_contents_1 *list, int fbZorder) {
167 hwc_layer_1_t *layer = &list
164 configure(hwc_context_t *ctx, hwc_display_contents_1 *list, int fbZorder) argument
[all...]
/hardware/qcom/display/msm8974/libhwcomposer/
H A Dhwc_ad.cpp8 * notice, this list of conditions and the following disclaimer.
10 * copyright notice, this list of conditions and the following
142 const hwc_display_contents_1_t* list) {
148 const hwc_layer_1_t* layer = &list->hwLayers[nYuvIndex];
141 markDoable(hwc_context_t *ctx, const hwc_display_contents_1_t* list) argument
H A Dhwc_fbupdate.cpp54 bool FBUpdateLowRes::prepare(hwc_context_t *ctx, hwc_display_contents_1 *list, argument
61 mModeOn = configure(ctx, list, fbZorder);
66 bool FBUpdateLowRes::configure(hwc_context_t *ctx, hwc_display_contents_1 *list, argument
69 hwc_layer_1_t *layer = &list->hwLayers[list->numHwLayers - 1];
117 getNonWormholeRegion(list, sourceCrop);
130 getNonWormholeRegion(list, sourceCrop);
177 bool FBUpdateHighRes::prepare(hwc_context_t *ctx, hwc_display_contents_1 *list, argument
185 mModeOn = configure(ctx, list, fbZorder);
191 hwc_display_contents_1 *list, in
190 configure(hwc_context_t *ctx, hwc_display_contents_1 *list, int fbZorder) argument
[all...]
/hardware/akm/AK8975_FS/libsensors/
H A Dsensors.cpp101 struct sensor_t const** list)
103 *list = sSensorList;
100 sensors__get_sensors_list(struct sensors_module_t* module, struct sensor_t const** list) argument

Completed in 592 milliseconds

12345