代码搜索:Bit

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

代码结果 10,000
www.eeworm.com/read/245586/12791323

h bit-vect.h

//disk bit vect class #ifndef BITVECT_H #define BITVECT_H #define BVSIZE 512 struct BitVect{ char vect[BVSIZE]; }; #endif
www.eeworm.com/read/245586/12791385

c bit-vect.c

#include "fs.h" // member functions for BitVect void BitVect_init(struct BitVect *v){ //make all bits free initially int i; for(i=0;ivect[i]=0; } int BitVect_get_free_bit(
www.eeworm.com/read/245586/12791574

o bit-vect.o

www.eeworm.com/read/245586/12791696

h bit-vect.h

//disk bit vect class #ifndef BITVECT_H #define BITVECT_H #define BVSIZE 512 struct BitVect{ char vect[BVSIZE]; }; #endif
www.eeworm.com/read/245586/12791757

c bit-vect.c

#include "fs.h" // member functions for BitVect void BitVect_init(struct BitVect *v){ //make all bits free initially int i; for(i=0;ivect[i]=0; } int BitVect_get_free_bit(
www.eeworm.com/read/245586/12792471

o bit-vect.o

www.eeworm.com/read/245586/12792487

h bit-vect.h

//disk bit vect class #ifndef BITVECT_H #define BITVECT_H struct BitVect{ char vect[BLKSIZE]; }; #endif
www.eeworm.com/read/245586/12792541

c bit-vect.c

#include "fs.h" // member functions for BitVect #define BVSIZE BLKSIZE void BitVect_init(struct BitVect *v){ //make all bits free initially int i; for(i=0;ivect[i]=0; } st
www.eeworm.com/read/245586/12792947

o bit-vect.o

www.eeworm.com/read/245586/12792969

h bit-vect.h

//disk bit vect class #ifndef BITVECT_H #define BITVECT_H struct BitVect{ char vect[BLKSIZE]; }; #endif