OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isquad
(Results
1 - 5
of
5
) sorted by null
/external/clang/include/clang/Basic/
TargetBuiltins.h
89
NeonTypeFlags(EltType ET, bool IsUnsigned, bool
IsQuad
) : Flags(ET) {
92
if (
IsQuad
)
102
bool
isQuad
() const { return (Flags & QuadFlag) != 0; }
/system/core/sh/
output.c
297
int
isquad
;
322
isquad
= 0;
354
isquad
++;
359
isquad
++;
365
if (
isquad
)
398
if (
isquad
)
/external/clang/lib/CodeGen/
CGBuiltin.cpp
[
all
...]
/external/clang/lib/Sema/
SemaChecking.cpp
307
int
IsQuad
= Type.
isQuad
();
311
return shift ? 7 : (8 <<
IsQuad
) - 1;
314
return shift ? 15 : (4 <<
IsQuad
) - 1;
316
return shift ? 31 : (2 <<
IsQuad
) - 1;
318
return shift ? 63 : (1 <<
IsQuad
) - 1;
321
return (4 <<
IsQuad
) - 1;
324
return (2 <<
IsQuad
) - 1;
[
all
...]
/external/clang/utils/TableGen/
NeonEmitter.cpp
129
NeonTypeFlags(EltType ET, bool IsUnsigned, bool
IsQuad
) : Flags(ET) {
132
if (
IsQuad
)
[
all
...]
Completed in 166 milliseconds