代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/309344/13673846
c bit_io.c
/* BIT_IO.C - BIT INPUT/OUTPUT ROUTINES. */
#include
#define global extern
#include "code.h"
/* THE BIT BUFFER. */
static int buffer; /* Bits waiting to be input
www.eeworm.com/read/308751/13693480
bit dds1.bit
www.eeworm.com/read/308467/13700627
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
[n,k] = size(g);
m = k-1;
for i=1:n
output(i) = g(i,1)*input;
for j = 2:k
output(i) = xor(output(i),g(i,j)*state(j-1));
end
www.eeworm.com/read/308442/13701169
c bit_xor.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/308442/13701180
c bit_inv.c
#include
void main ()
{
int value = 0xFF;
printf("The inverse of %X is %X\n", value, ~value);
}
www.eeworm.com/read/308441/13701390
cpp bit_res.cpp
/* bit_res.cpp
Implementation of Bit Reservoir for Layer III
Adapted from the public c code by Jeff Tsay. */
#include "stdafx.h"
#include "all.h"
#include "bit_res.h"
Bit_Reserve::Bit_Reserve()
www.eeworm.com/read/308441/13701427
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/308441/13701453
cpp bit_res.cpp
/* bit_res.cpp
Implementation of Bit Reservoir for Layer III
Adapted from the public c code by Jeff Tsay. */
#include "stdafx.h"
#include "all.h"
#include "bit_res.h"
Bit_Reserve::Bit_Reserve()
www.eeworm.com/read/308441/13701490
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/308266/13705376