OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:list_is_empty
(Results
1 - 25
of
45
) sorted by null
1
2
/external/mesa3d/src/gallium/auxiliary/util/
u_dirty_surfaces.h
88
if(!
LIST_IS_EMPTY
(&dss->dirty_list))
102
return !
LIST_IS_EMPTY
(&ds->dirty_list);
108
if(
LIST_IS_EMPTY
(&ds->dirty_list))
115
if(!
LIST_IS_EMPTY
(&ds->dirty_list))
/system/bt/osi/test/
list_test.cc
25
EXPECT_TRUE(
list_is_empty
(list));
38
EXPECT_FALSE(
list_is_empty
(list));
46
EXPECT_FALSE(
list_is_empty
(list));
55
EXPECT_TRUE(
list_is_empty
(list));
65
EXPECT_FALSE(
list_is_empty
(list));
99
EXPECT_TRUE(
list_is_empty
(list));
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_slab.c
77
while (!
LIST_IS_EMPTY
(&slabs->reclaim)) {
117
if (
LIST_IS_EMPTY
(&group->slabs) ||
118
LIST_IS_EMPTY
(&LIST_ENTRY(struct pb_slab, group->slabs.next, head)->free))
122
while (!
LIST_IS_EMPTY
(&group->slabs)) {
124
if (!
LIST_IS_EMPTY
(&slab->free))
130
if (
LIST_IS_EMPTY
(&group->slabs)) {
244
while (!
LIST_IS_EMPTY
(&slabs->reclaim)) {
pb_bufmgr_debug.c
393
if(!
LIST_IS_EMPTY
(&mgr->list))
446
if(!
LIST_IS_EMPTY
(&mgr->list)) {
/system/bt/osi/src/
list.cc
46
bool
list_is_empty
(const list_t* list) {
function
70
CHECK(!
list_is_empty
(list));
77
CHECK(!
list_is_empty
(list));
84
CHECK(!
list_is_empty
(list));
142
if (
list_is_empty
(list)) return false;
fixed_queue.cc
100
return
list_is_empty
(queue->list);
183
return
list_is_empty
(queue->list) ? NULL : list_front(queue->list);
190
return
list_is_empty
(queue->list) ? NULL : list_back(queue->list);
alarm.cc
269
(!
list_is_empty
(alarms) && list_front(alarms) == alarm);
426
(!
list_is_empty
(alarms) && list_front(alarms) == alarm);
437
if (
list_is_empty
(alarms) ||
455
(!
list_is_empty
(alarms) && list_front(alarms) == alarm)) {
472
if (
list_is_empty
(alarms)) goto done;
630
if (
list_is_empty
(alarms) ||
/external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.c
184
if (!
LIST_IS_EMPTY
(&bucket->used)) {
187
if (
LIST_IS_EMPTY
(&bucket->free)) {
287
if (!
LIST_IS_EMPTY
(&cache->bucket[i].used) ||
288
!
LIST_IS_EMPTY
(&cache->bucket[i].full))
nouveau_fence.c
103
if (!
LIST_IS_EMPTY
(&fence->work)) {
/external/mesa3d/src/gallium/state_trackers/nine/
basetexture9.h
142
if ((tex->managed.dirty | tex->dirty_mip) &&
LIST_IS_EMPTY
(&tex->list))
163
if (
LIST_IS_EMPTY
(&(t)->list)) \
buffer9.h
122
if ((buf->managed.dirty) &&
LIST_IS_EMPTY
(&buf->managed.list))
137
if (
LIST_IS_EMPTY
(&(b)->managed.list)) \
/device/google/contexthub/firmware/os/inc/
list.h
59
static inline bool
list_is_empty
(struct link_t *list)
function
isr.h
57
if (!
list_is_empty
(&interrupt->isrs))
/system/bt/bta/gatt/
bta_gattc_cache.cc
323
list_is_empty
(service->characteristics)) {
[
all
...]
/device/google/contexthub/firmware/os/platform/stm32/
exti.c
189
else if (!
list_is_empty
(&isr->node))
204
else if (
list_is_empty
(&isr->node))
/external/libdrm/etnaviv/
etnaviv_bo_cache.c
85
while (!
LIST_IS_EMPTY
(&bucket->list)) {
130
while (!
LIST_IS_EMPTY
(&bucket->list)) {
/external/libdrm/freedreno/
freedreno_bo_cache.c
98
while (!
LIST_IS_EMPTY
(&bucket->list)) {
150
if (!
LIST_IS_EMPTY
(&bucket->list)) {
/system/bt/btif/src/
btif_profile_queue.cc
100
if (connect_queue && !
list_is_empty
(connect_queue)) {
209
if (!connect_queue ||
list_is_empty
(connect_queue)) return BT_STATUS_FAIL;
/system/bt/stack/l2cap/
l2c_link.cc
407
while (!
list_is_empty
(p_lcb->link_xmit_data_q)) {
759
(!
list_is_empty
(p_lcb->link_xmit_data_q)) &&
920
if (
list_is_empty
(p_lcb->link_xmit_data_q)) {
[
all
...]
/external/libdrm/
util_double_list.h
107
#define
LIST_IS_EMPTY
(__list) \
/external/mesa3d/src/gallium/drivers/freedreno/
freedreno_query_hw.c
230
if (
LIST_IS_EMPTY
(&hq->periods))
233
assert(
LIST_IS_EMPTY
(&hq->list));
/external/mesa3d/src/gallium/drivers/svga/
svga_screen_cache.c
257
if (!
LIST_IS_EMPTY
(&cache->empty)) {
267
else if (!
LIST_IS_EMPTY
(&cache->unused)) {
/external/libdrm/amdgpu/
amdgpu_vamgr.c
171
if (!
LIST_IS_EMPTY
(&mgr->va_holes)) {
/external/libdrm/freedreno/kgsl/
kgsl_pipe.c
134
if (
LIST_IS_EMPTY
(list)) {
/external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_context.c
246
assert(
LIST_IS_EMPTY
(&ctx->used_resources));
Completed in 1452 milliseconds
1
2