/external/chromium-trace/trace-viewer/src/tracing/trace_model/ |
cpu_test.js | 39 var shiftCount = 0; 42 shiftCount++; 46 assertEquals(shiftCount, 1);
|
thread_test.js | 60 var shiftCount = 0; 63 shiftCount++; 68 assertEquals(1, shiftCount); 79 var shiftCount = 0; 82 shiftCount++; 87 assertEquals(1, shiftCount);
|
process_test.js | 26 var shiftCount = 0; 29 shiftCount++; 33 shiftCount++; 36 assertEquals(2, shiftCount);
|
/dalvik/vm/mterp/x86/ |
OP_SHL_LONG.S | 7 * the low 5 bits of %cl, so have to handle the 64 > shiftcount > 31
|
OP_SHR_LONG.S | 7 * the low 5 bits of %cl, so have to handle the 64 > shiftcount > 31
|
OP_USHR_LONG.S | 7 * the low 5 bits of %cl, so have to handle the 64 > shiftcount > 31
|
/external/chromium_org/third_party/icu/source/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/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...] |
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/llvm/lib/IR/ |
AsmWriter.cpp | 833 int shiftcount; local 841 shiftcount = 12; 843 for (int j=0; j<width; j+=4, shiftcount-=4) { 844 unsigned int nibble = (word>>shiftcount) & 15; 849 if (shiftcount == 0 && j+4 < width) { 851 shiftcount = 64; 853 shiftcount = width-j-4; 858 shiftcount = 60; 861 shiftcount = 60; 864 shiftcount = 12 [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
descrip.mms | 235 cc$(CFLAGS)/warn=(disable=SHIFTCOUNT) texcompress_fxt1.c
|
/external/mesa3d/src/mesa/main/ |
descrip.mms | 235 cc$(CFLAGS)/warn=(disable=SHIFTCOUNT) texcompress_fxt1.c
|
/external/llvm/lib/Support/ |
APInt.cpp | [all...] |
/dalvik/vm/analysis/ |
CodeVerify.cpp | [all...] |
/dalvik/vm/mterp/out/ |
InterpAsm-x86.S | [all...] |