OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:shift1
(Results
1 - 1
of
1
) sorted by relevancy
/src/common/lib/libc/arch/or1k/string/
memcpy.c
40
combine_words(unsigned long w1, unsigned long w2, int
shift1
, int shift2)
43
return (w1 <<
shift1
) | (w2 >> shift2);
45
return (w1 >>
shift1
) | (w2 << shift2);
90
const int
shift1
= offset * 8;
local
91
const int shift2 = sizeof(*la) * 8 -
shift1
;
100
la[0] = combine_words(w1, w2,
shift1
, shift2);
104
la[1] = combine_words(w2, w1,
shift1
, shift2);
108
la[2] = combine_words(w1, w2,
shift1
, shift2);
112
la[3] = combine_words(w2, w1,
shift1
, shift2);
121
*la++ = combine_words(w1, w2,
shift1
, shift2)
[
all
...]
Completed in 18 milliseconds
Indexes created Mon Feb 23 01:20:22 UTC 2026