代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/252116/12301666
asm bit_rev.asm
*********************************************************************************
* (C) COPYRIGHT TEXAS INSTRUMENTS, INC. 1996 *
**********************************
www.eeworm.com/read/252116/12301687
obj bit_rev.obj
www.eeworm.com/read/338034/12327338
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/338034/12327384
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;
www.eeworm.com/read/337446/12368292
cpp bit_res.cpp
/* bit_res.cpp
Implementation of Bit Reservoir for Layer III
Adapted from the public c code by Jeff Tsay. */
#include "all.h"
#include "bit_res.h"
Bit_Reserve::Bit_Reserve()
{
uint32 shifted_
www.eeworm.com/read/337446/12368402
h bit_res.h
/* bit_res.h
Declarations for Bit Reservoir for Layer III
Adapted from the public c code by Jeff Tsay. */
#ifndef BIT_RES_H
#define BIT_RES_H
#include "all.h"
#define BUFSIZE 4096
class Bit_
www.eeworm.com/read/250937/12374804
t 64bit.t
#!/usr/bin/perl
use strict;
use Test::More;
use FindBin qw($Bin);
use lib "$Bin/lib";
use MemcachedTest;
$ENV{T_MEMD_INITIAL_MALLOC} = "4294967328"; # 2**32 + 32 , just over 4GB
$ENV{T_MEMD_SLABS_AL
www.eeworm.com/read/149137/12401173
bak bit.h.bak
//#include "lc871f.h"
#define uchar unsigned char
#define uint unsigned int
#define clrwdt() asm("clrwdt")
#define bit_test(var, bit) ((var) & (1
www.eeworm.com/read/250398/12408296
txt framed_bit.txt
-7 7 3 7 1 5 -1 5 1 -7 -1 7 -1 -5 -3 1 7 1 -3 -7 3 5 -7 3 -3 -3 1 -1 7 1 1 -1 3 1 -3 1 -3 -7 5 -7 3 -1 7 1 -1 -1 -5 -5 -3 5 -3 7 -3 -3 -3 3 1 5 5 -5 7 7 7 -3 -1 -3 -3 1 -1 5 -3 3 3 -1 3 -7 -1 7 7 -1 -
www.eeworm.com/read/148696/12440314
c bit_xor.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