代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/254044/12165945
m input_bit.m
function t=input_bit
format long
global fid bits_to_go garbage_bits buffer code_value_bits
persistent ii
if(isempty(ii)),ii=1;end
if(bits_to_go==0)
buffer=fread(fid,1);
if feof(fid)
www.eeworm.com/read/254031/12166409
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/254031/12166521
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/340306/12166635
asm bit_rev.asm
*********************************************************************************
* (C) COPYRIGHT TEXAS INSTRUMENTS, INC. 1996 *
**********************************
www.eeworm.com/read/340306/12166662
obj bit_rev.obj
www.eeworm.com/read/253821/12184187
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/253821/12184209
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/253688/12205452
vbp bit_motr.vbp
Form=bit_motr.frm
Module=Module1; OMRONLIB.BAS
Reference=*\G{00025E04-0000-0000-C000-000000000046}#2.5#0#C:\PROGRAM FILES\COMMON FILES\MICROSOFT SHARED\DC:\PROGRAM FIL#Microsoft DAO 2.5 Object Libra
www.eeworm.com/read/253688/12205454
frm bit_motr.frm
VERSION 4.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3555
ClientLeft = 2070
ClientTop = 2055
ClientWidth = 4530
BeginProperty
www.eeworm.com/read/253688/12205463