代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/323119/13353960
test rpl_bit.test
#############################################################################
# Original Author: JBM #
# Original Date: Sept/15/2005
www.eeworm.com/read/136353/13382184
c 24bit.c
/*
* Copyright (c) 1992 The Regents of the University of California.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purp
www.eeworm.com/read/321480/13404187
doc encode_bit.doc
www.eeworm.com/read/321480/13404196
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
www.eeworm.com/read/320816/13417934
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/320816/13417945
c bit_inv.c
#include
void main ()
{
int value = 0xFF;
printf("The inverse of %X is %X\n", value, ~value);
}
www.eeworm.com/read/318888/13467745
asm bit_rev.asm
;
; bit_rev.asm - Bit-reversal for FFT (N=2^EXP points)
;
; Prototype: void bit_rev(complex *, int);
;
; Entry: arg0: AR0-FFT input sample buffer pointer
www.eeworm.com/read/317935/13493101
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