代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/206867/15286762
c bit_and.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/15286765
c bit_or.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("12
www.eeworm.com/read/206771/15290094
h bit.h
#ifndef __bit_H__
#define __bit_H__
/**************************************************************************************/
//位操作,另外,可以对字节操作,每一个单元(单位为16位的字)可以分为高八位和低八位操作;
//使用方法:下面的硬件寄存器都定义为了UN
www.eeworm.com/read/206282/15297077
h bit.h
//#ifndef __BIT_h__
//#define __BIT_h__
// write your header here
//bit.h for C
#ifndef __BIT_H__
#define __BIT_H__
#define Bit0 0x0001
#define Bit1 0x0002
#define Bit2 0x0004
#define Bit
www.eeworm.com/read/206282/15297079
inc bit.inc
//bit.h for C
/////////////////////////////////////////////////////////////////////////////////////////
//#ifndef __BIT_H__
//#define __BIT_H__
//
//#define Bit0 0x0001
//#define Bit1 0x0002
//
www.eeworm.com/read/11180/210769
c bit_and.c
#include
void main ()
{
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/11180/210778
c bit_or.c
#include
void main ()
{
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("128 |
www.eeworm.com/read/12618/245732
bit test.bit
www.eeworm.com/read/12618/245764
bit test.bit
www.eeworm.com/read/14356/330520
h bit.h
/*
* libmad - MPEG audio decoder library
*/
# ifndef LIBMAD_BIT_H
# define LIBMAD_BIT_H
struct mad_bitptr {
unsigned char const *byte;
unsigned short cache;
unsigned short left;
}