OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pun
(Results
1 - 5
of
5
) sorted by null
/external/jemalloc/include/jemalloc/internal/
rtree.h
39
void *
pun
;
member in union:rtree_node_elm_s::__anon14261
167
child = atomic_read_p(&elm->
pun
);
200
return (atomic_read_p(&elm->
pun
));
208
atomic_write_p(&elm->
pun
, val);
/external/skia/src/opts/
SkNx_neon.h
111
union { float32x2_t v; float fs[2]; }
pun
= {fVec};
local
112
return
pun
.fs[k&1];
202
union { float32x4_t v; float fs[4]; }
pun
= {fVec};
local
203
return
pun
.fs[k&3];
253
union { uint16x4_t v; uint16_t us[4]; }
pun
= {fVec};
local
254
return
pun
.us[k&3];
291
union { uint16x8_t v; uint16_t us[8]; }
pun
= {fVec};
local
292
return
pun
.us[k&7];
348
union { uint8x16_t v; uint8_t us[16]; }
pun
= {fVec};
local
349
return
pun
.us[k&15]
[
all
...]
SkNx_sse.h
65
union { __m128 v; float fs[4]; }
pun
= {fVec};
local
66
return
pun
.fs[k&1];
116
union { __m128 v; float fs[4]; }
pun
= {fVec};
local
117
return
pun
.fs[k&3];
157
union { __m128i v; int is[4]; }
pun
= {fVec};
local
158
return
pun
.is[k&3];
185
union { __m128i v; uint16_t us[8]; }
pun
= {fVec};
local
186
return
pun
.us[k&3];
228
union { __m128i v; uint16_t us[8]; }
pun
= {fVec};
local
229
return
pun
.us[k&7]
279
union { __m128i v; uint8_t us[16]; }
pun
= {fVec};
local
[
all
...]
/external/skia/src/pdf/
SkPDFTypes.cpp
16
SkString*
pun
(char* x) { return reinterpret_cast<SkString*>(x); }
function
17
const SkString*
pun
(const char* x) {
function
27
pun
(fSkString)->~SkString();
59
new (
pun
(u.fSkString)) SkString (*
pun
(fSkString));
149
write_name_escaped(stream,
pun
(fSkString)->c_str());
152
write_string(stream, format_string(*
pun
(fSkString)));
226
new (
pun
(u.fSkString)) SkString(s);
232
new (
pun
(u.fSkString)) SkString(s);
/toolchain/binutils/binutils-2.25/bfd/
linker.c
693
struct bfd_link_hash_entry **
pun
;
local
695
pun
= &table->undefs;
696
while (*
pun
!= NULL)
698
struct bfd_link_hash_entry *h = *
pun
;
703
*
pun
= h->u.undef.next;
707
if (
pun
== &table->undefs)
710
/*
pun
points at an u.undef.next field. Go back to
713
((char *)
pun
- ((char *) &h->u.undef.next - (char *) h));
718
pun
= &h->u.undef.next;
[
all
...]
Completed in 660 milliseconds