代码搜索:Bit

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

代码结果 10,000
www.eeworm.com/read/367467/2843222

c bit.c

/* Bitwise operations library * by Reuben Thomas (rrt@sc3d.org) * bitlib is a C library for Lua 5.x that provides bitwise operations * It is copyright Reuben Thomas 2000-2006, and is released unde
www.eeworm.com/read/367467/2844303

h bit.h

#ifndef BITLIB #define BITLIB #define BITLIBNAME "bit" #include "lauxlib.h" #include "lua.h" LUALIB_API int luaopen_bit(lua_State *L); #endif
www.eeworm.com/read/367467/2844309

c bit.c

/* Bitwise operations library * by Reuben Thomas (rrt@sc3d.org) * bitlib is a C library for Lua 5.x that provides bitwise operations * It is copyright Reuben Thomas 2000-2006, and is released unde
www.eeworm.com/read/367467/2844943

h bit.h

#ifndef BITLIB #define BITLIB #define BITLIBNAME "bit" #include "lauxlib.h" #include "lua.h" LUALIB_API int luaopen_bit(lua_State *L); #endif
www.eeworm.com/read/367467/2844949

c bit.c

/* Bitwise operations library * by Reuben Thomas (rrt@sc3d.org) * bitlib is a C library for Lua 5.x that provides bitwise operations * It is copyright Reuben Thomas 2000-2006, and is released unde
www.eeworm.com/read/366702/2879400

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/361550/2945548

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/361550/2945566

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/357022/3033841

h bit.h

/* * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2000, 2001 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for a
www.eeworm.com/read/355768/3047991

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 &