代码搜索:Bit

找到约 10,000 项符合「Bit」的源代码

代码结果 10,000
www.eeworm.com/read/409272/11337717

c bit_inv.c

#include void main () { int value = 0xFF; printf("The inverse of %X is %X\n", value, ~value); }
www.eeworm.com/read/408889/11366156

m encode_bit.m

function [output, state] = encode_bit(g, input, state) % Copyright 1996 Matthew C. Valenti % MPRG lab, Virginia Tech % for academic use only % This function takes as an input a single bit to be encod
www.eeworm.com/read/407198/11424295

6-bit-count

www.eeworm.com/read/407198/11424882

4bit-count

www.eeworm.com/read/406764/11436090

vhd bit_processor.vhd

--************************************************************************************************ -- "Bit processor" for AVR core -- Version 1.01 -- Designed by Ruslan Lepetenok -- Modified 03.11.200
www.eeworm.com/read/406313/11444802

ten-bit-addresses

The I2C protocol knows about two kinds of device addresses: normal 7 bit addresses, and an extended set of 10 bit addresses. The sets of addresses do not intersect: the 7 bit address 0x10 is not the
www.eeworm.com/read/405087/11471862

m encode_bit.m

function [output, state] = encode_bit(g, input, state) % Copyright 1996 Matthew C. Valenti % MPRG lab, Virginia Tech % for academic use only % This function takes as an input a single bit to be encod
www.eeworm.com/read/400552/11574451

c bit2.c

# include void main() { unsigned a, b, c, d; int n; a = 64; n = 2; /* 将操作数a右移(6-n)位 */ b = a >> (6-n); printf("b = %d\n", b); /* 将操作数a左移n位 */ c = a
www.eeworm.com/read/400552/11574462

c bit1.c

# include void main() { /* 定义了一个无符号字符型变量,此变量只能用来存储无符号数 */ unsigned char result; int a, b, c, d; a = 2; b = 4; c = 6; d = 8; /* 对变量进行“按位与”操作 */ result = a & c;