代码搜索:Bit

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

代码结果 10,000
www.eeworm.com/read/160559/10517951

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() { uint32 shifted_
www.eeworm.com/read/160559/10518057

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 class Bit_
www.eeworm.com/read/352673/10526614

bmp tree_bit.bmp

www.eeworm.com/read/352250/10570599

bak bit_opt.bak

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.a*; *.src) oExt (*.obj) lExt (*.lib) tExt (*.txt) pExt (*.plm) CppX (*.cpp) DaveTm { 0,0,0,0,0,0,0,0 }
www.eeworm.com/read/352250/10570604

uv2 bit.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (bit), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,1, Options 1,0,0 // Target 'bit' Dev
www.eeworm.com/read/278018/10582041

gif ico_bit.gif

www.eeworm.com/read/277934/10593285

cc bit_vector.cc

// file: test/bit_vector.cc // author: Marc Bumble // Mon Aug 11, 2003 // Memory allocator code for shared memory access // Copyright (C) 2003 by Marc D. Bumble // This program is free software; you
www.eeworm.com/read/421976/10673146

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/421976/10673178

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;