代码搜索:Bit

找到约 10,000 项符合「Bit」的源代码

代码结果 10,000
www.eeworm.com/read/124944/14523179

c bit_output.c

/* BIT OUTPUT ROUTINES. */ #include /* THE BIT BUFFER. */ static int buffer; /* Bits buffered for output */ static int bits_to_go; /* Number of bits free in buffer
www.eeworm.com/read/123658/14617079

c fp-bit.c

/* This is a software floating point library which can be used instead of the floating point routines in libgcc1.c for targets without hardware floating point. */ /* Copyright (C) 1994, 1995 F
www.eeworm.com/read/123349/14637058

c bit_allocate.c

/* * bit_allocate.c * * Copyright (C) Aaron Holtzman - May 1999 * * This file is part of ac3dec, a free Dolby AC-3 stream decoder. * * ac3dec is free software; you can redistribute
www.eeworm.com/read/123349/14637084

h bit_allocate.h

/* * bit_allocate.h * * Copyright (C) Aaron Holtzman - May 1999 * * This file is part of ac3dec, a free Dolby AC-3 stream decoder. * * ac3dec is free software; you can redistribute
www.eeworm.com/read/223128/14655011

bit dial1.bit

www.eeworm.com/read/223119/14655921

bit ps2.bit

www.eeworm.com/read/221847/14718354

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/119982/14814756

c bit_xor.c

#include void main(void) { 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/119982/14814778

c bit_inv.c

#include void main(void) { int value = 0xFF; printf("The inverse of %X is %X\n", value, ~value); }