HomeSort by relevance Sort by last modified time
    Searched full:shiftcount (Results 1 - 16 of 16) sorted by null

  /external/chromium-trace/trace-viewer/src/model/
process_test.html 45 var shiftCount = 0;
48 shiftCount++;
52 shiftCount++;
55 assertEquals(2, shiftCount);
thread_test.html 66 var shiftCount = 0;
69 shiftCount++;
74 assertEquals(1, shiftCount);
84 var shiftCount = 0;
87 shiftCount++;
92 assertEquals(1, shiftCount);
cpu_test.html 50 var shiftCount = 0;
53 shiftCount++;
57 assertEquals(shiftCount, 1);
  /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/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/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/IR/
AsmWriter.cpp 859 int shiftcount; local
867 shiftcount = 12;
869 for (int j=0; j<width; j+=4, shiftcount-=4) {
870 unsigned int nibble = (word>>shiftcount) & 15;
875 if (shiftcount == 0 && j+4 < width) {
877 shiftcount = 64;
879 shiftcount = width-j-4;
884 shiftcount = 60;
887 shiftcount = 60;
890 shiftcount = 12
    [all...]
  /external/llvm/lib/Support/
APInt.cpp     [all...]
  /dalvik/vm/analysis/
CodeVerify.cpp     [all...]
  /dalvik/vm/mterp/out/
InterpAsm-x86.S     [all...]

Completed in 7726 milliseconds