Searched refs:lsb (Results 1 - 16 of 16) sorted by path

/system/bt/binder/android/os/
H A Dparcel_uuid.cc29 uint64_t lsb = 0; local
33 lsb <<= 8;
34 lsb |= uu[i];
37 return lsb;
/system/bt/build/
H A Dinstall_deps.sh36 if [ -f /etc/lsb-release ]; then
/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.cpp433 void ARMAssembler::UBFX(int cc, int Rd, int Rn, int lsb, int width) argument
435 *mPC++ = (cc<<28) | 0x7E00000 | ((width-1)<<16) | (Rd<<12) | (lsb<<7) | 0x50 | Rn;
H A DARMAssembler.h159 virtual void UBFX(int cc, int Rd, int Rn, int lsb, int width);
H A DARMAssemblerInterface.h219 virtual void UBFX(int cc, int Rd, int Rn, int lsb, int width) = 0;
H A DARMAssemblerProxy.cpp293 void ARMAssemblerProxy::UBFX(int cc, int Rd, int Rn, int lsb, int width) { argument
294 mTarget->UBFX(cc, Rd, Rn, lsb, width);
H A DARMAssemblerProxy.h147 virtual void UBFX(int cc, int Rd, int Rn, int lsb, int width);
H A DArm64Assembler.cpp851 void ArmToArm64Assembler::UBFX(int cc, int Rd, int Rn, int lsb, int width) argument
854 *mPC++ = A64_UBFM_W(Rd, Rn, lsb, lsb + width - 1);
1234 uint32_t Rm, uint32_t lsb)
1236 LOG_INSTR("EXTR W%d, W%d, W%d, #%d\n", Rd, Rn, Rm, lsb);
1237 return (0x13 << 24)|(0x1 << 23) | (Rm << 16) | (lsb << 10)|(Rn << 5) | Rd;
1233 A64_EXTR_W(uint32_t Rd, uint32_t Rn, uint32_t Rm, uint32_t lsb) argument
H A DArm64Assembler.h176 virtual void UBFX(int cc, int Rd, int Rn, int lsb, int width);
242 uint32_t A64_EXTR_W(uint32_t Rd, uint32_t Rn, uint32_t Rm, uint32_t lsb);
H A DArm64Disassembler.cpp80 static int32_t bits_signed(uint32_t instr, uint32_t msb, uint32_t lsb) argument
85 value >>= lsb; local
88 static uint32_t bits_unsigned(uint32_t instr, uint32_t msb, uint32_t lsb) argument
90 uint32_t width = msb - lsb + 1;
92 return ((instr >> lsb) & mask);
H A DMIPS64Assembler.cpp1184 int lsb __unused, int width __unused)
H A DMIPS64Assembler.h167 virtual void UBFX(int cc, int Rd, int Rn, int lsb, int width);
H A DMIPSAssembler.cpp1215 int Rn __unused, int lsb __unused,
H A DMIPSAssembler.h162 virtual void UBFX(int cc, int Rd, int Rn, int lsb, int width);
/system/core/libpixelflinger/tests/arch-arm64/assembler/
H A Darm64_assembler_test.cpp470 int32_t lsb = test.RsValue; local
472 a64asm->UBFX(test.cond, Rd,Rn,lsb, width);
/system/update_engine/sample_images/
H A Dgenerate_images.sh115 # Example of a real lsb-release file released on link stable.
116 sudo tee "${mntdir}"/etc/lsb-release >/dev/null <<EOF

Completed in 158 milliseconds