代码搜索:bits
找到约 10,000 项符合「bits」的源代码
代码结果 10,000
www.eeworm.com/read/309344/13673871
c bits.c
/******************************************************************************
File: bits.c
Authors: John Carpinelli (johnfc@ecr.mu.oz.au)
Wayne Salamonsen (wbs@mundil.cs.mu.oz.au)
Pu
www.eeworm.com/read/308995/13684708
cpp bits.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/308548/13699806
h bits.h
www.eeworm.com/read/238672/13869678
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);
}
www.eeworm.com/read/152843/5664905
h bits.h
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of
www.eeworm.com/read/147766/5727170
h bits.h
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of
www.eeworm.com/read/147766/5727235
h bits.h
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of
www.eeworm.com/read/147766/5727303
h bits.h
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of
www.eeworm.com/read/145991/5741118
c bits.c
/*
Copyright (C) 1990-1993 Mark Adler, Richard B. Wales, Jean-loup Gailly,
Kai Uwe Rommel and Igor Mandrichenko.
Permission is granted to any individual or institution to use, copy, or
redistribu
www.eeworm.com/read/143434/5757852
c bits.c
/* Copyright (C) 2002 Jean-Marc Valin
File: speex_bits.c
Handles bit packing/unpacking
Redistribution and use in source and binary forms, with or without
modification, are permitted pro