OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:local_set
(Results
1 - 3
of
3
) sorted by null
/bionic/libc/include/android/
legacy_signal_inlines.h
66
const unsigned long *
local_set
= (const unsigned long *)set;
local
71
return (int)((
local_set
[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1);
77
unsigned long *
local_set
= (unsigned long *)set;
local
82
local_set
[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT);
89
unsigned long *
local_set
= (unsigned long *)set;
local
94
local_set
[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT));
/bionic/libc/bionic/
signal.cpp
61
unsigned long*
local_set
= reinterpret_cast<unsigned long*>(set);
local
66
local_set
[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT);
90
unsigned long*
local_set
= reinterpret_cast<unsigned long*>(set);
local
95
local_set
[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT));
168
const unsigned long*
local_set
= reinterpret_cast<const unsigned long*>(set);
local
173
return static_cast<int>((
local_set
[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1);
/device/generic/goldfish-opengl/system/vulkan_enc/
VkEncoder.cpp
15448
uint32_t
local_set
;
local
15528
uint32_t
local_set
;
local
[
all
...]
Completed in 355 milliseconds