代码搜索:bits
找到约 10,000 项符合「bits」的源代码
代码结果 10,000
www.eeworm.com/read/334527/12595473
c bits.c
/*
ITU-T G.729 Speech Coder with Annex B ANSI-C Source Code
Version 1.3 Last modified: August 1997
Copyright (c) 1996,
AT&T, France Telecom, NTT, Universite de Sherbrooke, Luce
www.eeworm.com/read/334527/12595534
obj bits.obj
www.eeworm.com/read/334325/12610654
h bits.h
/*
** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com
**
** This program is free software; you can red
www.eeworm.com/read/334325/12610763
c bits.c
/*
** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com
**
** This program is free software; you can r
www.eeworm.com/read/133648/14031664
java bits.java
//: c09:Bits.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Demonstration of BitSet.
import java.util.*;
public class B
www.eeworm.com/read/235559/14063474
c bits.c
/*
ITU-T G.729 Speech Coder with Annex B ANSI-C Source Code
Version 1.3 Last modified: August 1997
Copyright (c) 1996,
AT&T, France Telecom, NTT, Universite de Sherbrooke, Luce
www.eeworm.com/read/204654/15335666
c bits.c
/* bits.c -- output variable-length bit strings
* Copyright (C) 1992-1993 Jean-loup Gailly
* This is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Pub
www.eeworm.com/read/204473/15337850
h bits.h
//=============================================================================
//
// bits.h
//
// BIT defines
//
// Author(s): Michael Kelly, Cogent Computer Systems, Inc.
// Date
www.eeworm.com/read/201391/15408974
c bits.c
/*
ITU-T G.729 Speech Coder with Annex B ANSI-C Source Code
Version 1.3 Last modified: August 1997
Copyright (c) 1996,
AT&T, France Telecom, NTT, Universite de Sherbrooke, Luce
www.eeworm.com/read/200881/15420985
c bits.c
/* return the number of bits present in the unsigned integer n. */
int bitcount(unsigned n)
{
unsigned r;
r = 0;
while (n!=0) {
r++;
n ^= n & (-n);
}