代码搜索:bits
找到约 10,000 项符合「bits」的源代码
代码结果 10,000
www.eeworm.com/read/284131/8963036
bits1
www.eeworm.com/read/283884/8982546
h bits.h
#ifndef __BITS_H__
#define __BITS_H__
typedef struct bits_struct bits_t;
struct bits_struct {
unsigned char *ptr;
int idx;
unsigned char *end;
};
static inline int bits_needbits(bits_t *b, int n
www.eeworm.com/read/185593/9026838
h bits.h
////////////////////////////////////////////////////////////////
// File - bits.h
//
// Copyright (c) 2003 Jungo Ltd. http://www.jungo.com
//
//////////////////////////////////////////////////
www.eeworm.com/read/379881/9173152
h bits.h
int bitAnd(int, int);
int test_bitAnd(int, int);
int bitOr(int, int);
int test_bitOr(int, int);
int isZero(int);
int test_isZero(int);
int minusOne();
int test_minusOne();
int
www.eeworm.com/read/379881/9173158
c bits.c
/*
* bits.c - Source file with your solutions to the Lab.
* This is the file you will hand in to your instructor.
* this bits.c is over'd by the author yangxinhai at the time of 2008/10
www.eeworm.com/read/379449/9196939
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/181668/9242531
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/378061/9252655
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
www.eeworm.com/read/377523/9272890
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