代码搜索:Bit

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

代码结果 10,000
www.eeworm.com/read/209499/15218270

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/209499/15218319

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/209499/15218339

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/209484/15218869

h global_bit.h

#define SCI_SR_TDRE (1
www.eeworm.com/read/209433/15220101

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/209433/15220112

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;
www.eeworm.com/read/208256/15250159

bit lcd162.bit

www.eeworm.com/read/207792/15262057

c bit_io.c

/* BIT_IO.C - BIT INPUT/OUTPUT ROUTINES. */ #include #define global extern #include "code.h" /* THE BIT BUFFER. */ static int buffer; /* Bits waiting to be input
www.eeworm.com/read/206867/15286728

c bit_xor.c

#include void main(void) { printf("0 ^ 0 is %d\n", 0 ^ 0); printf("0 ^ 1 is %d\n", 0 ^ 1); printf("1 ^ 1 is %d\n", 1 ^ 1); printf("1 ^ 2 is %d\n", 1 ^ 2); printf("15
www.eeworm.com/read/206867/15286750

c bit_inv.c

#include void main(void) { int value = 0xFF; printf("The inverse of %X is %X\n", value, ~value); }