OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitStream
(Results
1 - 3
of
3
) sorted by null
/external/bzip2/
bzip2recover.c
150
BitStream
;
154
static
BitStream
* bsOpenReadStream ( FILE* stream )
156
BitStream
*bs = malloc ( sizeof(
BitStream
) );
157
if (bs == NULL) mallocFail ( sizeof(
BitStream
) );
167
static
BitStream
* bsOpenWriteStream ( FILE* stream )
169
BitStream
*bs = malloc ( sizeof(
BitStream
) );
170
if (bs == NULL) mallocFail ( sizeof(
BitStream
) );
180
static void bsPutBit (
BitStream
* bs, Int32 bit
[
all
...]
/external/llvm/include/llvm/Bitcode/
BitstreamReader.h
1
//===- BitstreamReader.h - Low-level
bitstream
reader interface -*- C++ -*-===//
11
// read an arbitrary
bitstream
, regardless of its contents.
100
/// block info block for this
Bitstream
. We only process it for the first
130
/// BitstreamEntry - When advancing through a
bitstream
cursor, each advance can
163
/// may be multiple independent cursors reading within one
bitstream
, each
170
BitstreamReader *
BitStream
;
204
BitstreamCursor() :
BitStream
(0), NextChar(0) {
206
BitstreamCursor(const BitstreamCursor &RHS) :
BitStream
(0), NextChar(0) {
210
explicit BitstreamCursor(BitstreamReader &R) :
BitStream
(&R) {
220
BitStream
= &R
[
all
...]
/external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp
21
BitStream
= RHS.
BitStream
;
65
BitStream
->getBlockInfo(BlockID)) {
185
NextChar =
BitStream
->getBitcodeBytes().getExtent();
256
NextChar =
BitStream
->getBitcodeBytes().getExtent();
262
BitStream
->getBitcodeBytes().getPointer(CurBitPos/8, NumElts);
312
if (
BitStream
->hasBlockInfoRecords())
354
CurBlockInfo = &
BitStream
->getOrCreateBlockInfo((unsigned)Record[0]);
358
if (
BitStream
->isIgnoringBlockInfoNames()) break; // Ignore name.
367
if (
BitStream
->isIgnoringBlockInfoNames()) break; // Ignore name
[
all
...]
Completed in 143 milliseconds