HomeSort by relevance Sort by last modified time
    Searched refs:aLow (Results 1 - 3 of 3) sorted by null

  /external/qemu/fpu/
softfloat-specialize.h 537 uint64_t aLow;
539 aLow = a.low & ~ LIT64( 0x4000000000000000 );
542 && (uint64_t) ( aLow<<1 )
543 && ( a.low == aLow );
562 uint64_t aLow;
564 aLow = a.low & ~ LIT64( 0x4000000000000000 );
567 && (uint64_t) ( aLow<<1 )
568 && ( a.low == aLow );
softfloat-native.c 516 uint64_t aLow;
519 aLow = u.i.low & ~ LIT64( 0x4000000000000000 );
522 && (uint64_t) ( aLow<<1 )
523 && ( u.i.low == aLow );
softfloat-macros.h 467 uint32_t aHigh, aLow, bHigh, bLow;
470 aLow = a;
474 z1 = ( (uint64_t) aLow ) * bLow;
475 zMiddleA = ( (uint64_t) aLow ) * bHigh;

Completed in 24 milliseconds