代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/311745/3677941
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/299060/3856026
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()
{
uint
www.eeworm.com/read/299060/3856071
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
www.eeworm.com/read/292705/3945844
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/292705/3949337
ten-bit-addresses
The I2C protocol knows about two kinds of device addresses: normal 7 bit
addresses, and an extended set of 10 bit addresses. The sets of addresses
do not intersect: the 7 bit address 0x10 is not the
www.eeworm.com/read/288165/4009413
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/288165/4009424
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/285338/4053990
m input_bit.m
function bit=input_bit
load filename output
global iii
iii=iii+1;
bit=output(iii);
www.eeworm.com/read/274140/4187974
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
www.eeworm.com/read/274119/4188909
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