OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shiftCount
(Results
1 - 8
of
8
) sorted by null
/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
...]
softfloat-macros.h
655
int8
shiftCount
;
657
shiftCount
= 0;
659
shiftCount
+= 16;
663
shiftCount
+= 8;
666
shiftCount
+= countLeadingZerosHigh[ a>>24 ];
667
return
shiftCount
;
685
int8
shiftCount
;
687
shiftCount
= 0;
689
shiftCount
+= 32;
694
shiftCount
+= countLeadingZeros32( a )
[
all
...]
/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/webkit/Source/JavaScriptCore/runtime/
JSArray.h
88
void
shiftCount
(ExecState*, int count);
ArrayPrototype.cpp
452
((JSArray *)thisObj)->
shiftCount
(exec, 1);
589
((JSArray *)thisObj)->
shiftCount
(exec, deleteCount - additionalArgs);
[
all
...]
JSArray.cpp
767
void JSArray::
shiftCount
(ExecState* exec, int count)
[
all
...]
/external/llvm/lib/Support/
APInt.cpp
[
all
...]
/dalvik/vm/analysis/
CodeVerify.cpp
[
all
...]
Completed in 9815 milliseconds