代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/147766/5726118
h algo-bit.h
/*
* linux/include/linux/l3/algo-bit.h
*
* Copyright (C) 2001 Russell King, All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms o
www.eeworm.com/read/141343/5770004
vhdl numeric_bit.vhdl
-- -----------------------------------------------------------------------------
--
-- Copyright 1995 by IEEE. All rights reserved.
--
-- This source file is considered by the IEEE to be an essential
www.eeworm.com/read/139332/5802324
hpp lowest_bit.hpp
// -------------------------------------
// lowest_bit.hpp
//
// Position of the lowest bit 'on'
//
// (C) Copyright Gennaro Prota 2003 - 2004.
//
// Distributed under the Boost Softwa
www.eeworm.com/read/136827/5847275
c bit_allocate.c
/*
* bit_allocate.c
* Copyright (C) 2000-2003 Michel Lespinasse
* Copyright (C) 1999-2000 Aaron Holtzman
*
* This file is part of a52dec, a free ATSC
www.eeworm.com/read/136821/5851687
c bit_allocate.c
/*
* bit_allocate.c
* Copyright (C) 2000-2002 Michel Lespinasse
* Copyright (C) 1999-2000 Aaron Holtzman
*
* This file is part of a52dec, a free ATSC
www.eeworm.com/read/136786/5866363
h algo-bit.h
/*
* linux/include/linux/l3/algo-bit.h
*
* Copyright (C) 2001 Russell King, All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms o
www.eeworm.com/read/128531/5988388
h 64bit.h
/*
* Copyright (C) 2000, 2001 Broadcom Corporation
* Copyright (C) 2002 Ralf Baechle
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gener
www.eeworm.com/read/128531/5988490
h 64bit.h
/*
* Copyright (C) 2000, 2001 Broadcom Corporation
* Copyright (C) 2002 Ralf Baechle
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gener
www.eeworm.com/read/128026/5992954
c bit2.c
# include
void main()
{
unsigned a, b, c, d;
int n;
a = 64;
n = 2;
/* 将操作数a右移(6-n)位 */
b = a >> (6-n);
printf("b = %d\n", b);
/* 将操作数a左移n位 */
c = a
www.eeworm.com/read/128026/5992965
c bit1.c
# include
void main()
{
/* 定义了一个无符号字符型变量,此变量只能用来存储无符号数 */
unsigned char result;
int a, b, c, d;
a = 2;
b = 4;
c = 6;
d = 8;
/* 对变量进行“按位与”操作 */
result = a & c;