Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 25 of 140) sorted by relevance

123456

/hardware/qcom/media/sdm845/mm-video-v4l2/vidc/vdec/inc/
DMap.h46 node* tmp; variable
50 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {} in Map()
79 tmp = head; in find()
81 while (tmp) { in find()
82 if (tmp->data == d1) { in find()
83 return tmp->data2; in find()
86 tmp = tmp->next; in find()
95 tmp = head; in find_ele()
97 while (tmp) { in find_ele()
98 if (tmp->data == d1) { in find_ele()
[all …]
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
DMap.h48 node* tmp; variable
52 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {} in Map()
79 tmp = head; in find()
80 while(tmp) in find()
82 if(tmp->data == d1) in find()
84 return tmp->data2; in find()
86 tmp = tmp->next; in find()
94 tmp = head; in find_ele()
95 while(tmp) in find_ele()
97 if(tmp->data == d1) in find_ele()
[all …]
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
DMap.h46 node* tmp; variable
50 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {} in Map()
79 tmp = head; in find()
81 while (tmp) { in find()
82 if (tmp->data == d1) { in find()
83 return tmp->data2; in find()
86 tmp = tmp->next; in find()
95 tmp = head; in find_ele()
97 while (tmp) { in find_ele()
98 if (tmp->data == d1) { in find_ele()
[all …]
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
DMap.h47 node* tmp; variable
51 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {} in Map()
80 tmp = head; in find()
82 while (tmp) { in find()
83 if (tmp->data == d1) { in find()
84 return tmp->data2; in find()
87 tmp = tmp->next; in find()
96 tmp = head; in find_ele()
98 while (tmp) { in find_ele()
99 if (tmp->data == d1) { in find_ele()
[all …]
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
DMap.h46 node* tmp; variable
50 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {} in Map()
79 tmp = head; in find()
81 while (tmp) { in find()
82 if (tmp->data == d1) { in find()
83 return tmp->data2; in find()
86 tmp = tmp->next; in find()
95 tmp = head; in find_ele()
97 while (tmp) { in find_ele()
98 if (tmp->data == d1) { in find_ele()
[all …]
/hardware/qcom/gps/msm8909/utils/
Dlinked_list.c140 list_element* tmp = p_list->p_head; in linked_list_add() local
143 p_list->p_head->next = tmp; in linked_list_add()
145 if( tmp != NULL ) in linked_list_add()
147 tmp->prev = p_list->p_head; in linked_list_add()
183 list_element* tmp = p_list->p_tail; in linked_list_remove() local
186 p_list->p_tail = tmp->prev; in linked_list_remove()
198 *data_obj = tmp->data_ptr; in linked_list_remove()
201 free(tmp); in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush() local
254 p_list->p_head = tmp; in linked_list_flush()
[all …]
/hardware/qcom/gps/msm8084/utils/
Dlinked_list.c140 list_element* tmp = p_list->p_head; in linked_list_add() local
143 p_list->p_head->next = tmp; in linked_list_add()
145 if( tmp != NULL ) in linked_list_add()
147 tmp->prev = p_list->p_head; in linked_list_add()
183 list_element* tmp = p_list->p_tail; in linked_list_remove() local
186 p_list->p_tail = tmp->prev; in linked_list_remove()
198 *data_obj = tmp->data_ptr; in linked_list_remove()
201 free(tmp); in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush() local
254 p_list->p_head = tmp; in linked_list_flush()
[all …]
/hardware/qcom/gps/msm8998/utils/
Dlinked_list.c139 list_element* tmp = p_list->p_head; in linked_list_add() local
142 p_list->p_head->next = tmp; in linked_list_add()
144 if( tmp != NULL ) in linked_list_add()
146 tmp->prev = p_list->p_head; in linked_list_add()
182 list_element* tmp = p_list->p_tail; in linked_list_remove() local
185 p_list->p_tail = tmp->prev; in linked_list_remove()
197 *data_obj = tmp->data_ptr; in linked_list_remove()
200 free(tmp); in linked_list_remove()
242 list_element* tmp = p_list->p_head->next; in linked_list_flush() local
253 p_list->p_head = tmp; in linked_list_flush()
[all …]
/hardware/qcom/gps/msm8996/utils/
Dlinked_list.c140 list_element* tmp = p_list->p_head; in linked_list_add() local
143 p_list->p_head->next = tmp; in linked_list_add()
145 if( tmp != NULL ) in linked_list_add()
147 tmp->prev = p_list->p_head; in linked_list_add()
183 list_element* tmp = p_list->p_tail; in linked_list_remove() local
186 p_list->p_tail = tmp->prev; in linked_list_remove()
198 *data_obj = tmp->data_ptr; in linked_list_remove()
201 free(tmp); in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush() local
254 p_list->p_head = tmp; in linked_list_flush()
[all …]
/hardware/qcom/gps/sdm845/utils/
Dlinked_list.c138 list_element* tmp = p_list->p_head; in linked_list_add() local
141 p_list->p_head->next = tmp; in linked_list_add()
143 if( tmp != NULL ) in linked_list_add()
145 tmp->prev = p_list->p_head; in linked_list_add()
180 list_element* tmp = p_list->p_tail; in linked_list_remove() local
183 p_list->p_tail = tmp->prev; in linked_list_remove()
195 *data_obj = tmp->data_ptr; in linked_list_remove()
198 free(tmp); in linked_list_remove()
240 list_element* tmp = p_list->p_head->next; in linked_list_flush() local
251 p_list->p_head = tmp; in linked_list_flush()
[all …]
/hardware/qcom/gps/utils/
Dlinked_list.c140 list_element* tmp = p_list->p_head; in linked_list_add() local
143 p_list->p_head->next = tmp; in linked_list_add()
145 if( tmp != NULL ) in linked_list_add()
147 tmp->prev = p_list->p_head; in linked_list_add()
183 list_element* tmp = p_list->p_tail; in linked_list_remove() local
186 p_list->p_tail = tmp->prev; in linked_list_remove()
198 *data_obj = tmp->data_ptr; in linked_list_remove()
201 free(tmp); in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush() local
254 p_list->p_head = tmp; in linked_list_flush()
[all …]
/hardware/qcom/gps/msm8960/utils/
Dlinked_list.c140 list_element* tmp = p_list->p_head; in linked_list_add() local
143 p_list->p_head->next = tmp; in linked_list_add()
145 if( tmp != NULL ) in linked_list_add()
147 tmp->prev = p_list->p_head; in linked_list_add()
183 list_element* tmp = p_list->p_tail; in linked_list_remove() local
186 p_list->p_tail = tmp->prev; in linked_list_remove()
198 *data_obj = tmp->data_ptr; in linked_list_remove()
201 free(tmp); in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush() local
254 p_list->p_head = tmp; in linked_list_flush()
[all …]
/hardware/qcom/gps/msm8994/utils/
Dlinked_list.c140 list_element* tmp = p_list->p_head; in linked_list_add() local
143 p_list->p_head->next = tmp; in linked_list_add()
145 if( tmp != NULL ) in linked_list_add()
147 tmp->prev = p_list->p_head; in linked_list_add()
183 list_element* tmp = p_list->p_tail; in linked_list_remove() local
186 p_list->p_tail = tmp->prev; in linked_list_remove()
198 *data_obj = tmp->data_ptr; in linked_list_remove()
201 free(tmp); in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush() local
254 p_list->p_head = tmp; in linked_list_flush()
[all …]
/hardware/interfaces/configstore/1.0/vts/functional/
DVtsHalConfigstoreV1_0TargetTest.cpp54 bool tmp; in TEST_F() local
57 [&tmp](OptionalInt64 arg) { tmp = arg.specified; }); in TEST_F()
61 [&tmp](OptionalInt64 arg) { tmp = arg.specified; }); in TEST_F()
65 [&tmp](OptionalBool arg) { tmp = arg.specified; }); in TEST_F()
69 [&tmp](OptionalBool arg) { tmp = arg.specified; }); in TEST_F()
73 [&tmp](OptionalBool arg) { tmp = arg.specified; }); in TEST_F()
77 [&tmp](OptionalInt64 arg) { tmp = arg.specified; }); in TEST_F()
81 [&tmp](OptionalBool arg) { tmp = arg.specified; }); in TEST_F()
85 [&tmp](OptionalUInt64 arg) { tmp = arg.specified; }); in TEST_F()
89 [&tmp](OptionalBool arg) { tmp = arg.specified; }); in TEST_F()
[all …]
/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
DIPACM_EvtDispatcher.cpp121 cmd_evts *tmp = head, tmp1; in ProcessEvt() local
128 while(tmp != NULL) in ProcessEvt()
130 memcpy(&tmp1, tmp, sizeof(tmp1)); in ProcessEvt()
137 tmp = tmp1.next; in ProcessEvt()
152 cmd_evts *tmp = head,*nw; in registr() local
172 while(tmp->next) in registr()
174 tmp = tmp->next; in registr()
176 tmp->next = nw; in registr()
184 cmd_evts *tmp = head,*tmp1,*prev = head; in deregistr() local
186 while(tmp != NULL) in deregistr()
[all …]
/hardware/libhardware/modules/usbcamera/
DMetadata.cpp49 camera_metadata_t* tmp; in init() local
54 tmp = clone_camera_metadata(metadata); in init()
55 if (tmp == NULL) in init()
58 replace(tmp); in init()
125 camera_metadata_t* tmp; in add() local
132 tmp = allocate_camera_metadata(entry_capacity * 2, data_capacity * 2); in add()
133 if (tmp == NULL) { in add()
139 res = append_camera_metadata(tmp, mData); in add()
142 __func__, mData, tmp); in add()
146 res = add_camera_metadata_entry(tmp, tag, tag_data, count); in add()
[all …]
/hardware/libhardware/modules/camera/3_0/
DMetadata.cpp53 camera_metadata_t* tmp; in init() local
58 tmp = clone_camera_metadata(metadata); in init()
59 if (tmp == NULL) in init()
62 replace(tmp); in init()
135 camera_metadata_t* tmp; in add() local
151 tmp = allocate_camera_metadata(entry_capacity * 2, data_capacity * 2); in add()
152 if (tmp == NULL) { in add()
159 res = append_camera_metadata(tmp, mData); in add()
162 __func__, mData, tmp); in add()
167 res = add_camera_metadata_entry(tmp, tag, tag_data, count); in add()
[all …]
/hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
DAKFS_Device.c64 AKFLOAT tmp; in AKFS_Rotate() local
71 tmp = vec->u.x; in AKFS_Rotate()
73 vec->u.y = -tmp; in AKFS_Rotate()
80 tmp = vec->u.x; in AKFS_Rotate()
82 vec->u.y = tmp; in AKFS_Rotate()
90 tmp = vec->u.x; in AKFS_Rotate()
92 vec->u.y = tmp; in AKFS_Rotate()
100 tmp = vec->u.x; in AKFS_Rotate()
102 vec->u.y = -tmp; in AKFS_Rotate()
/hardware/qcom/display/msm8226/libmemtrack/
Dkgsl.c51 char tmp[128]; in kgsl_memtrack_get_memory() local
64 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid); in kgsl_memtrack_get_memory()
65 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
77 snprintf(tmp, sizeof(tmp), "/d/kgsl/proc/%d/mem", pid); in kgsl_memtrack_get_memory()
78 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
/hardware/qcom/display/msm8084/libmemtrack/
Dkgsl.c51 char tmp[128]; in kgsl_memtrack_get_memory() local
64 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid); in kgsl_memtrack_get_memory()
65 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
77 snprintf(tmp, sizeof(tmp), "/d/kgsl/proc/%d/mem", pid); in kgsl_memtrack_get_memory()
78 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
/hardware/qcom/display/msm8996/libmemtrack/
Dkgsl.c50 char tmp[128]; in kgsl_memtrack_get_memory() local
62 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid); in kgsl_memtrack_get_memory()
63 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
75 snprintf(tmp, sizeof(tmp), "/d/kgsl/proc/%d/mem", pid); in kgsl_memtrack_get_memory()
76 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
/hardware/qcom/display/msm8994/libmemtrack/
Dkgsl.c51 char tmp[128]; in kgsl_memtrack_get_memory() local
64 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid); in kgsl_memtrack_get_memory()
65 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
77 snprintf(tmp, sizeof(tmp), "/d/kgsl/proc/%d/mem", pid); in kgsl_memtrack_get_memory()
78 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
DTriState.h69 TriState<T> tmp(*this);
71 return tmp;
82 TriState<T> tmp(*this);
84 return tmp;
89 TriState<T> tmp(*this); \
91 tmp.mValue = op tmp.mValue; \
93 return tmp; \
142 TriState<T> tmp(*this);
144 return tmp;
148 TriState<T> tmp(*this);
[all …]
/hardware/qcom/display/msm8960/libmemtrack/
Dkgsl.c50 char tmp[128]; in kgsl_memtrack_get_memory() local
62 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid); in kgsl_memtrack_get_memory()
63 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
75 sprintf(tmp, "/d/kgsl/proc/%d/mem", pid); in kgsl_memtrack_get_memory()
76 fp = fopen(tmp, "r"); in kgsl_memtrack_get_memory()
/hardware/intel/common/libwsbm/src/
Dwsbm_fencemgr.c118 struct _WsbmFenceMgr *tmp; in wsbmFenceMgrCreate() local
122 tmp = calloc(1, sizeof(*tmp)); in wsbmFenceMgrCreate()
123 if (!tmp) in wsbmFenceMgrCreate()
126 tmp->info = *info; in wsbmFenceMgrCreate()
127 tmp->classes = calloc(tmp->info.num_classes, sizeof(*tmp->classes)); in wsbmFenceMgrCreate()
128 if (!tmp->classes) in wsbmFenceMgrCreate()
131 for (i = 0; i < tmp->info.num_classes; ++i) { in wsbmFenceMgrCreate()
132 struct _WsbmFenceClass *fc = &tmp->classes[i]; in wsbmFenceMgrCreate()
144 wsbmAtomicSet(&tmp->count, 0); in wsbmFenceMgrCreate()
146 return tmp; in wsbmFenceMgrCreate()
[all …]

123456