OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UWtype
(Results
1 - 3
of
3
) sorted by null
/external/u-boot/arch/nios2/lib/
longlong.h
9
UWtype
-- An unsigned type, default type for operations (typically a "word")
10
UHWtype -- An unsigned type, at least half the size of
UWtype
.
11
UDWtype -- An unsigned type, at least twice as large a
UWtype
12
W_TYPE_SIZE -- size in bits of
UWtype
18
On a 32 bit machine
UWtype
should typically be USItype;
19
on a 64 bit machine,
UWtype
should typically be UDItype. */
22
#define __ll_B ((
UWtype
) 1 << (W_TYPE_SIZE / 2))
23
#define __ll_lowpart(t) ((
UWtype
) (t) & (__ll_B - 1))
24
#define __ll_highpart(t) ((
UWtype
) (t) >> (W_TYPE_SIZE / 2))
28
#define
UWtype
USItyp
[
all
...]
libgcc.c
6
typedef unsigned int
UWtype
;
63
w.s.high = (
UWtype
) uu.s.low << -bm;
67
const
UWtype
carries = (
UWtype
) uu.s.low >> bm;
69
w.s.low = (
UWtype
) uu.s.low << b;
70
w.s.high = ((
UWtype
) uu.s.high << b) | carries;
94
const
UWtype
carries = (
UWtype
) uu.s.high << bm;
97
w.s.low = ((
UWtype
) uu.s.low >> b) | carries;
116
w.s.low = (
UWtype
) uu.s.high >> -bm
[
all
...]
/external/u-boot/arch/arc/lib/
libgcc2.h
55
#define
UWtype
UDItype
70
#define
UWtype
USItype
85
#define
UWtype
UHItype
100
#define
UWtype
UQItype
Completed in 385 milliseconds