Home
last modified time | relevance | path

Searched refs:msbs (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/sys/arch/m68k/fpsp/
H A Dbinstr.sa61 * extracts and shifts. The three msbs from d2 will go into
113 * A3. Multiply d2:d3 by 8; extract msbs into d1.
115 bfextu d2{0:3},d1 ;copy 3 msbs of d2 into d1
117 bfextu d3{0:3},d6 ;copy 3 msbs of d3 into d6
119 or.l d6,d2 ;or in msbs from d3 into d2
/netbsd-src/external/gpl3/binutils.old/dist/cpu/
H A Dor1kcommon.cpu339 spr-field-msbs
/netbsd-src/external/gpl3/binutils/dist/cpu/
H A Dor1kcommon.cpu339 spr-field-msbs
/netbsd-src/external/gpl3/gdb.old/dist/cpu/
H A Dor1kcommon.cpu339 spr-field-msbs
/netbsd-src/external/gpl3/gdb/dist/cpu/
H A Dor1kcommon.cpu339 spr-field-msbs
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dutf.d336 immutable msbs = 7 - bsr((~uint(c)) & 0xFF); variable
337 if (c == 0xFF || msbs < 2 || msbs > 4)
339 return msbs;
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dutf.d686 immutable msbs = 7 - bsr((~uint(c)) & 0xFF);
687 if (c == 0xFF || msbs < 2 || msbs > 4)
689 return msbs;
/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c9065 int msbs = 8 * (APND_MARK_FOS_SZ-1); in apndReadMark() local
9072 iMark = ((sqlite3_int64)(a[APND_MARK_PREFIX_SZ] & 0x7f)) << msbs; in apndReadMark()
9074 msbs -= 8; in apndReadMark()
9075 iMark |= (sqlite3_int64)a[APND_MARK_PREFIX_SZ+i]<<msbs; in apndReadMark()