OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:halfShift
(Results
1 - 5
of
5
) sorted by null
/external/antlr/antlr-3.4/runtime/C/include/
antlr3convertutf.h
123
#define
halfShift
((UTF32)10)
/external/google-breakpad/src/common/
convert_UTF.c
63
static const int
halfShift
= 10; /* used for shifting by 10 bits */
119
*target++ = (UTF16)((ch >>
halfShift
) + UNI_SUR_HIGH_START);
146
ch = ((ch - UNI_SUR_HIGH_START) <<
halfShift
)
252
ch = ((ch - UNI_SUR_HIGH_START) <<
halfShift
)
415
*target++ = (UTF16)((ch >>
halfShift
) + UNI_SUR_HIGH_START);
/external/llvm/lib/Support/
ConvertUTF.c
56
static const int
halfShift
= 10; /* used for shifting by 10 bits */
156
*target++ = (UTF16)((ch >>
halfShift
) + UNI_SUR_HIGH_START);
184
ch = ((ch - UNI_SUR_HIGH_START) <<
halfShift
)
241
ch = ((ch - UNI_SUR_HIGH_START) <<
halfShift
)
577
*target++ = (UTF16)((ch >>
halfShift
) + UNI_SUR_HIGH_START);
/external/valgrind/coregrind/m_replacemalloc/
vg_replace_malloc.c
162
UWord
halfShift
= sizeof(UWord)==4 ? 16 : 32;
164
u1 = u >>
halfShift
;
166
v1 = v >>
halfShift
;
168
t = u1 * v0 + (w0 >>
halfShift
);
170
w2 = t >>
halfShift
;
172
rHi = u1 * v1 + w2 + (w1 >>
halfShift
);
[
all
...]
/external/opencv3/modules/imgproc/src/
color.cpp
[
all
...]
Completed in 107 milliseconds