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

  /bionic/libc/arch-arm/bionic/
strcmp.S 41 #define LSB 0xff000000
48 #define LSB 0x000000ff
217 and w2, w2, #LSB
269 and t1, w1, #LSB
290 tst w1, #LSB
304 and r2, t1, #LSB
305 and r0, w2, #LSB
  /bionic/libc/arch-arm/generic/bionic/
strcmp.S 41 #define LSB 0xff000000
48 #define LSB 0x000000ff
217 and w2, w2, #LSB
269 and t1, w1, #LSB
290 tst w1, #LSB
304 and r2, t1, #LSB
305 and r0, w2, #LSB
  /bionic/libc/arch-arm/cortex-a9/bionic/
strcmp.S 37 #define LSB 0xff000000
51 #define LSB 0x000000ff
435 and w2, w2, #LSB
487 and t1, w1, #LSB
508 tst w1, #LSB
531 and r2, t1, #LSB
532 and r0, w2, #LSB
  /bionic/libc/arch-arm/krait/bionic/
strcmp.S 37 #define LSB 0xff000000
51 #define LSB 0x000000ff
464 and r2, t1, #LSB
465 and r0, w2, #LSB
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bitvect.c 117 static N_word LSB = 1; /* = mask for least significant bit */
336 N_word sample = LSB;
337 N_word lsb; local
355 lsb = (sample AND LSB);
356 while ((sample >>= 1) and (not lsb))
359 lsb = (sample AND LSB);
364 if (BITS != (LSB << LOGBITS)) return(ErrCode_Loga);
368 MSB = (LSB << MODMASK)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp     [all...]
  /external/valgrind/main/none/tests/ppc32/
round.c 585 int LSB;
593 ** and the LSB bit at the bottom of the manitssa.
605 /* mask off LSB from resulting guard bits */
624 /* mask off LSB from resulting guard bits */
641 /* g >> 3 == LSB, g & 7 == guard bits */
687 /* get LSB for tie breaking */
688 LSB = Z.layout.frac & 1;
704 if (debug) printf("tie: LSB = %d\n", LSB);
705 expected = (LSB == 0 ? lo : hi)
    [all...]
  /external/valgrind/main/none/tests/ppc64/
round.c 585 int LSB;
593 ** and the LSB bit at the bottom of the manitssa.
605 /* mask off LSB from resulting guard bits */
624 /* mask off LSB from resulting guard bits */
641 /* g >> 3 == LSB, g & 7 == guard bits */
687 /* get LSB for tie breaking */
688 LSB = Z.layout.frac & 1;
704 if (debug) printf("tie: LSB = %d\n", LSB);
705 expected = (LSB == 0 ? lo : hi)
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gdtoaimp.h 324 #define LSB 1
362 #define LSB 1
389 #define LSB 0x10000
strtod.c 102 ULong Lsb, Lsb1;
610 Lsb = LSB;
619 Lsb <<= i;
621 Lsb1 = Lsb << (i-32);
889 else if (!(word1(&rv) & Lsb))
892 if (!(word1(&rv) & LSB))
  /external/openssl/crypto/aes/asm/
aes-mips.pl 84 my ($MSB,$LSB)=(0,3); # automatically converted to little-endian
399 lwr $s0,0+$LSB($inp)
400 lwr $s1,4+$LSB($inp)
401 lwr $s2,8+$LSB($inp)
402 lwr $s3,12+$LSB($inp)
406 swr $s0,0+$LSB($out)
407 swr $s1,4+$LSB($out)
408 swr $s2,8+$LSB($out)
409 swr $s3,12+$LSB($out)
736 lwr $s0,0+$LSB($inp
    [all...]
  /bionic/libc/arch-arm/cortex-a15/bionic/
strcmp.S 37 #define LSB 0xff000000
51 #define LSB 0x000000ff
  /external/chromium_org/net/third_party/nss/ssl/
sslcon.c 26 /* Second and third bytes are MSB and LSB of master key length. */
118 * lsb corresponds to first cipher suite in allCipherSuites[].
502 msg[2] = LSB(error);
675 msg[3] = LSB(keySize);
677 msg[5] = LSB(ckLen);
679 msg[7] = LSB(ekLen);
681 msg[9] = LSB(caLen);
760 msg[3] = LSB(cert->len);
762 msg[5] = LSB(encCode->len);
877 out[1] = LSB(amount)
    [all...]
ssl3con.c     [all...]
sslimpl.h 116 #define LSB(x) ((unsigned char) ((x) & 0xff))
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]
  /external/openssl/crypto/sha/asm/
sha1-mips.pl 77 $LSB=3&~$MSB;
112 lwr @X[$j],$j*4+$LSB($inp)
289 lwr @X[0],$LSB($inp)
sha512-mips.pl 109 $LSB = ($SZ-1)&~$MSB;
124 ${LD}r @X[1],`($i+1)*$SZ+$LSB`($inp)
309 ${LD}r @X[0],$LSB($inp)
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 172 int LSB = (BitWidth - ImmR) % BitWidth;
175 << getRegisterName(Op2.getReg()) << ", #" << LSB << ", #" << Width;
180 int LSB = ImmR;
185 << ", #" << LSB << ", #" << Width;
    [all...]
  /ndk/sources/android/support/src/stdio/
strtod.c 268 #define LSB 1
296 #define LSB 1
320 #define LSB 0x10000
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp     [all...]
ARMISelLowering.cpp 8325 unsigned lsb = countTrailingZeros(Mask); local
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 150 // Starting at first 1 (from lsb).
507 unsigned LSB;
1797 unsigned lsb = Bitfield.LSB; local
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 363 #define LSB 1
420 #define LSB 1
449 #define LSB 0x10000
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 84 #define LSB 1
    [all...]

Completed in 914 milliseconds