代码搜索:Bit

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

代码结果 10,000
www.eeworm.com/read/340665/3267431

s bit.s

.text btst 64,d1 btst 8192,d2 bset d1,(a2) bclr d1,(a2)
www.eeworm.com/read/340665/3279629

c bit.c

bar (a) { return (a == 0); } foo (a) int a; { if ((a & (1 = 0) return 1; else return 2; }
www.eeworm.com/read/336825/3347199

h bit.h

#ifndef BIT_INCLUDED #define BIT_INCLUDED #define T Bit_T typedef struct T *T; extern T Bit_new (int length); extern int Bit_length(T set); extern int Bit_count (T set); extern void Bit_free(T *se
www.eeworm.com/read/336825/3347302

c bit.c

#include #include #include "assert.h" #include "bit.h" #include "mem.h" #define T Bit_T struct T { int length; unsigned char *bytes; unsigned long *words; }; #define BPW (8*si
www.eeworm.com/read/336825/3347428

h bit.h

/* $Id: H:/drh/idioms/book/RCS/bit.doc,v 1.15 1997/02/21 19:49:56 drh Exp $ */ #ifndef BIT_INCLUDED #define BIT_INCLUDED #define T Bit_T typedef struct T *T; extern T Bit_new (int length); extern
www.eeworm.com/read/336825/3347507

c bit.c

static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/bit.doc,v 1.15 1997/02/21 19:49:56 drh Exp $"; #include #include #include "assert.h" #include "bit.h" #include "mem.h" #define
www.eeworm.com/read/336825/3347578

h bit.h

/* $RCSfile: RCS/bit.doc,v $ $Revision: 1.14 $ */ #ifndef BIT_INCLUDED #define BIT_INCLUDED #define T Bit_T typedef struct T *T; extern T Bit_new (int length); extern int Bit_length(T set); extern
www.eeworm.com/read/336825/3347683

c bit.c

static char rcsid[] = "$RCSfile: RCS/bit.doc,v $ $Revision: 1.14 $"; #include #include #include "assert.h" #include "bit.h" #include "mem.h" #define T Bit_T struct T { int lengt
www.eeworm.com/read/336825/3347895

h bit.h

#ifndef BIT_INCLUDED #define BIT_INCLUDED #define T Bit_T typedef struct T *T; extern T Bit_new(int size); extern int Bit_size (T set); extern int Bit_length(T set); extern void Bit_free(T *set); e
www.eeworm.com/read/336825/3347921

c bit.c

#include #include #include "assert.h" #include "bit.h" #include "mem.h" #define T Bit_T struct T { int size; union { unsigned char *bytes; unsigned int *words; } u; }; #d