Searched defs:list (Results 26 - 50 of 154) sorted by relevance

1234567

/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/
H A Dviddec_pm_utils_bstream.h41 /* This is for keeping track of which list item was used to load data last */
47 /* A pointer to list of es buffers which contribute to current access unit */
48 viddec_pm_utils_list_t *list; member in struct:__anon669
55 void viddec_pm_utils_bstream_init(viddec_pm_utils_bstream_cxt_t *cxt, viddec_pm_utils_list_t *list, uint32_t is_emul);
/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/intel/common/wrs_omxil_core/utils/src/
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 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...]
H A DCompassSensor.IIO.9150.cpp290 void CompassSensor::fillList(struct sensor_t *list) argument
298 list->maxRange = COMPASS_MPU9150_RANGE;
299 list->resolution = COMPASS_MPU9150_RESOLUTION;
300 list->power = COMPASS_MPU9150_POWER;
301 list->minDelay = COMPASS_MPU9150_MINDELAY;
308 list->maxRange = COMPASS_AKM8975_RANGE;
309 list->resolution = COMPASS_AKM8975_RESOLUTION;
310 list->power = COMPASS_AKM8975_POWER;
311 list->minDelay = COMPASS_AKM8975_MINDELAY;
318 list
[all...]
H A DCompassSensor.IIO.primary.cpp400 void CompassSensor::fillList(struct sensor_t *list) argument
408 list->maxRange = COMPASS_MPU9150_RANGE;
409 list->resolution = COMPASS_MPU9150_RESOLUTION;
410 list->power = COMPASS_MPU9150_POWER;
411 list->minDelay = COMPASS_MPU9150_MINDELAY;
412 mMinDelay = list->minDelay;
419 list->maxRange = COMPASS_AKM8975_RANGE;
420 list->resolution = COMPASS_AKM8975_RESOLUTION;
421 list->power = COMPASS_AKM8975_POWER;
422 list
[all...]
/hardware/libhardware/modules/thermal/
H A Dthermal.c39 static ssize_t get_temperatures(thermal_module_t *module, temperature_t *list, size_t size) { argument
68 if (list != NULL && idx < size) {
69 list[idx] = (temperature_t) {
86 static ssize_t get_cpu_usages(thermal_module_t *module, cpu_usage_t *list) { argument
144 if (list != NULL) {
145 list[size] = (cpu_usage_t) {
160 static ssize_t get_cooling_devices(thermal_module_t *module, cooling_device_t *list, size_t size) { 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/libhwcomposer/
H A Dhwc_virtual.cpp103 hwc_display_contents_1_t *list) {
109 if (list && list->outbuf && list->numHwLayers > 0) {
110 reset_layer_prop(ctx, dpy, (int)list->numHwLayers - 1);
111 uint32_t last = (uint32_t)list->numHwLayers - 1;
112 hwc_layer_1_t *fbLayer = &list->hwLayers[last];
133 private_handle_t *ohnd = (private_handle_t *)list->outbuf;
136 setListStats(ctx, list, dpy);
138 if(ctx->mMDPComp[dpy]->prepare(ctx, list) <
102 prepare(hwc_composer_device_1 *dev, hwc_display_contents_1_t *list) argument
161 set(hwc_context_t *ctx, hwc_display_contents_1_t *list) argument
290 prepare(hwc_composer_device_1 *dev, hwc_display_contents_1_t *list) argument
326 set(hwc_context_t *ctx, hwc_display_contents_1_t *list) argument
[all...]
/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
72 bool validateAndSet(const int& fd, mdp_overlay_list& list);
181 inline bool validateAndSet(const int& fd, mdp_overlay_list& list) { argument
183 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/msm8996/sdm/libs/hwc/
H A Dhwc_debugger.cpp8 * notice, this list of conditions and the following disclaimer.
10 * copyright notice, this list of conditions and the following
112 va_list list; local
113 va_start(list, format);
114 __android_log_vprint(ANDROID_LOG_ERROR, LOG_TAG, format, list);
118 va_list list; local
119 va_start(list, format);
120 __android_log_vprint(ANDROID_LOG_WARN, LOG_TAG, format, list);
125 va_list list; local
126 va_start(list, forma
133 va_list list; local
141 va_list list; local
[all...]
/hardware/qcom/display/msm8998/sdm/libs/hwc/
H A Dhwc_debugger.cpp8 * notice, this list of conditions and the following disclaimer.
10 * copyright notice, this list of conditions and the following
112 va_list list; local
113 va_start(list, format);
114 __android_log_vprint(ANDROID_LOG_ERROR, LOG_TAG, format, list);
118 va_list list; local
119 va_start(list, format);
120 __android_log_vprint(ANDROID_LOG_WARN, LOG_TAG, format, list);
125 va_list list; local
126 va_start(list, forma
133 va_list list; local
141 va_list list; local
[all...]
/hardware/qcom/msm8996/kernel-headers/linux/
H A Dmdss_rotator.h81 struct mdp_rotation_item __user * list; member in struct:mdp_rotation_request
/hardware/qcom/msm8996/original-kernel-headers/linux/
H A Dmdss_rotator.h134 /* Number of rotation request items in the list */
137 /* Pointer to a list of rotation request items */
138 struct mdp_rotation_item __user *list; member in struct:mdp_rotation_request
/hardware/akm/AK8975_FS/libsensors/
H A Dsensors.cpp102 struct sensor_t const** list)
104 *list = sSensorList;
101 sensors__get_sensors_list(struct sensors_module_t* module, struct sensor_t const** list) argument
/hardware/bsp/intel/peripheral/sensors/mraa/
H A DSensorsHAL.cpp107 struct sensor_t const **list) {
110 if (!list || (sensorsNum == 0)) {
114 *list = sensorDescs;
106 GetSensorsListWrapper(struct sensors_module_t *module, struct sensor_t const **list) argument
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
H A Dviddec_pm.c20 1. create a list data structure to hold any incoming ES descriptors.
21 2. Check to see if any of the ES buffers Desc in current list has data to be processed. If not request kernel(RET) for a buffer.
23 4. If startcode detected update list state to make ES data look like Linear buffer.
115 viddec_pm_utils_list_init(&(cxt->list));
136 /* add an esbuffer to list */
141 val = viddec_pm_utils_list_addbuf(&(cxt->list), es_buf);
173 /* creates an ibuf from the current position in list. Fills sc_parse_cubby_cxt */
181 viddec_pm_utils_list_t *list = &(cxt->list); local
183 /* Step1: check if list i
[all...]
H A Dviddec_pm_utils_bstream.c30 data_remaining = cxt->list->total_bytes - (cxt->au_pos + (cxt->bstrm_buf.buf_index - cxt->bstrm_buf.buf_st));
63 if((int32_t)last_byte_offset_plus_one >= cxt->list->total_bytes)
78 static inline uint32_t viddec_pm_utils_bstream_datafromindex(viddec_pm_utils_list_t *list, uint32_t index, uint32_t offset) argument
82 val = (list->data[index].edpos <= (uint32_t)list->total_bytes) ? list->data[index].edpos: (uint32_t)list->total_bytes;
90 at returns index of ES buffer in list which has byte_offset */
96 viddec_pm_utils_list_t *list; local
99 list
249 viddec_pm_utils_list_t *list; local
331 viddec_pm_utils_bstream_init(viddec_pm_utils_bstream_cxt_t *cxt, viddec_pm_utils_list_t *list, uint32_t is_emul) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Derror_resilience_test.cc112 void SetErrorFrames(int num, unsigned int *list) { argument
119 error_frames_[i] = list[i];
122 void SetDroppableFrames(int num, unsigned int *list) { argument
129 droppable_frames_[i] = list[i];
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
H A Dvpx_encoder.c378 int vpx_codec_pkt_list_add(struct vpx_codec_pkt_list *list, argument
380 if (list->cnt < list->max) {
381 list->pkts[list->cnt++] = *pkt;
389 const vpx_codec_cx_pkt_t *vpx_codec_pkt_list_get(struct vpx_codec_pkt_list *list, argument
394 *iter = list->pkts;
399 if ((size_t)(pkt - list->pkts) < list->cnt)
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/
H A DThermalCoolingDevice.java48 /* Maintains list of zoneid's under which this cooling device falls. */
144 public void setThrottleValuesList(ArrayList<Integer> list) { argument
145 mThrottleValues = list;
146 mNumThrottleValues = list.size();

Completed in 607 milliseconds

1234567