OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:shiftCount
(Results
1 - 2
of
2
) sorted by null
/external/icu4c/common/
utrace.c
126
int32_t
shiftCount
;
127
for (
shiftCount
=(charsToOutput-1)*4;
shiftCount
>= 0;
shiftCount
-=4) {
128
char c = gHexChars[(val >>
shiftCount
) & 0xf];
/external/qemu/fpu/
softfloat.c
261
int8
shiftCount
;
263
shiftCount
= countLeadingZeros32( aSig ) - 8;
264
*zSigPtr = aSig<<
shiftCount
;
265
*zExpPtr = 1 -
shiftCount
;
378
int8
shiftCount
;
380
shiftCount
= countLeadingZeros32( zSig ) - 1;
381
return roundAndPackFloat32( zSign, zExp -
shiftCount
, zSig<<
shiftCount
STATUS_VAR);
443
int8
shiftCount
;
445
shiftCount
= countLeadingZeros64( aSig ) - 11
[
all
...]
Completed in 462 milliseconds