代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/239554/13272641
h bit_analyzer.h
//
// File = bit_analyzer.h
//
#ifndef _BIT_ANALYZER_H_
#define _BIT_ANALYZER_H_
#include "signal_T.h"
#include "psmodel.h"
//#include "k_berctr.h"
class BitSeqAnalyzer : public PracS
www.eeworm.com/read/137531/13315063
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/137531/13315083
c bit_inv.c
#include
void main ()
{
int value = 0xFF;
printf("The inverse of %X is %X\n", value, ~value);
}
www.eeworm.com/read/238891/13316001
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
% Copyright 1996 Matthew C. Valenti
% MPRG lab, Virginia Tech
% for academic use only
% This function takes as an input a single bit to be encod
www.eeworm.com/read/238838/13321115
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/323757/13321498
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/323119/13351309
result rpl_bit.result
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
DROP TABLE IF EXISTS test.t1;
CREATE TABLE test.t1
www.eeworm.com/read/323119/13352227
result type_bit.result
select 0 + b'1';
0 + b'1'
1
select 0 + b'0';
0 + b'0'
0
select 0 + b'000001';
0 + b'000001'
1
select 0 + b'000011';
0 + b'000011'
3
select 0 + b'000101';
0 + b'000101'
5
select 0 + b'000000';
0 + b'00
www.eeworm.com/read/323119/13353302
test type_bit.test
#
# testing of the BIT column type
#
select 0 + b'1';
select 0 + b'0';
select 0 + b'000001';
select 0 + b'000011';
select 0 + b'000101';
select 0 + b'000000';
select 0 + b'10000000';
select 0 + b'111