代码搜索:Bit

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

代码结果 10,000
www.eeworm.com/read/12477/241672

bit lcd1602.bit

www.eeworm.com/read/12865/250120

htm bit_0857.htm

www.eeworm.com/read/12865/250707

mcp bit_man.mcp

www.eeworm.com/read/12870/251779

htm bit_0857.htm

www.eeworm.com/read/13927/288001

vhdl xhdl_bit.vhdl

-- -- Copyright Notice and Proprietary Information -- -- Copyright (C) 1997-2000 X-Tek Corporation. All rights reserved. This Software -- and documentation are owned by X-Tek Corporation, and may be
www.eeworm.com/read/13927/288004

vhdl xhdl_bit.vhdl

-- -- Copyright Notice and Proprietary Information -- -- Copyright (C) 1997-2002 X-Tek Corporation. All rights reserved. This Software -- and documentation are owned by X-Tek Corporation, and may be
www.eeworm.com/read/14356/330040

cpp bit_res.cpp

/* bit_res.cpp Implementation of Bit Reservoir for Layer III Adapted from the public c code by Jeff Tsay. */ #include "all.h" #include "bit_res.h" Bit_Reserve::Bit_Reserve() { uint
www.eeworm.com/read/14356/330086

h bit_res.h

/* bit_res.h Declarations for Bit Reservoir for Layer III Adapted from the public c code by Jeff Tsay. */ #ifndef BIT_RES_H #define BIT_RES_H #include "all.h" #define BUFSIZE 4096
www.eeworm.com/read/15192/434880

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/15192/434891

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;