代码搜索:Bit

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

代码结果 10,000
www.eeworm.com/read/355768/3047999

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/353649/3083382

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; }
www.eeworm.com/read/353649/3083400

c bit.c

/* * libmad - MPEG audio decoder library */ # ifdef HAVE_CONFIG_H # include "config.h" # endif # include "global.h" # ifdef HAVE_LIMITS_H # include # else # define C
www.eeworm.com/read/257673/4361745

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/257673/4361753

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/161438/5553213

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/161438/5553216

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/158865/5593306

h bit.h

/* bit.h -- Public #include File (module.h template V1.0) Copyright (C) 1995 Free Software Foundation, Inc. Contributed by James Craig Burley. This file is part of GNU Fortran. GNU Fortran is
www.eeworm.com/read/158865/5593370

c bit.c

/* bit.c -- Implementation File (module.c template V1.0) Copyright (C) 1995 Free Software Foundation, Inc. Contributed by James Craig Burley. This file is part of GNU Fortran. GNU Fortran is f
www.eeworm.com/read/156620/5611094

java bit.java

// bit.Java public class bit { public static void main(String [] args) { int u = 0xff00 & 0xf0f0; int v = 0x8000 | 0x80f0; int y = 0xff00 ^ 0xf0f0;