OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sectionData
(Results
1 - 13
of
13
) sorted by null
/frameworks/av/media/libstagefright/codecs/aacenc/src/
dyn_bits.c
275
noiselessCounter(SECTION_DATA *
sectionData
,
303
sectionData
->noOfSections = 0;
304
sectionData
->huffmanBits = 0;
305
sectionData
->sideInfoBits = 0;
308
if (
sectionData
->maxSfbPerGroup == 0)
314
for (grpNdx=0; grpNdx<
sectionData
->sfbCnt; grpNdx+=
sectionData
->sfbPerGroup) {
316
sectionInfo =
sectionData
->sectionInfo +
sectionData
->noOfSections;
319
sectionData
->maxSfbPerGroup
[
all
...]
bitenc.c
42
SECTION_DATA *
sectionData
,
51
for(i=0; i<
sectionData
->noOfSections; i++) {
52
psectioninfo = &(
sectionData
->sectionInfo[i]);
96
SECTION_DATA *
sectionData
,
108
WriteBits(hBitStream,
sectionData
->maxSfbPerGroup,6);
115
WriteBits(hBitStream,
sectionData
->maxSfbPerGroup,4);
133
static Word32 encodeSectionData(SECTION_DATA *
sectionData
,
143
switch(
sectionData
->blockType)
158
for(i=0;i<
sectionData
->noOfSections;i++) {
159
WriteBits(hBitStream,
sectionData
->sectionInfo[i].codeBook,4)
[
all
...]
qc_main.c
361
&qcOutChannel[ch].
sectionData
);
/external/aac/libAACenc/src/
dyn_bits.cpp
390
SECTION_DATA* const RESTRICT
sectionData
,
419
sectionData
->noOfSections = 0;
420
sectionData
->huffmanBits = 0;
421
sectionData
->sideInfoBits = 0;
424
if (
sectionData
->maxSfbPerGroup == 0)
428
for (grpNdx = 0; grpNdx <
sectionData
->sfbCnt; grpNdx +=
sectionData
->sfbPerGroup)
430
huffsection =
sectionData
->huffsection +
sectionData
->noOfSections;
434
sectionData
->maxSfbPerGroup
[
all
...]
bitenc.cpp
117
SECTION_DATA *
sectionData
,
124
for(i=0;i<
sectionData
->noOfSections;i++)
126
if(
sectionData
->huffsection[i].codeBook != CODE_BOOK_PNS_NO)
129
INT tmp =
sectionData
->huffsection[i].sfbStart+
sectionData
->huffsection[i].sfbCnt;
130
for(sfb=
sectionData
->huffsection[i].sfbStart; sfb<tmp; sfb++)
134
sectionData
->huffsection[i].codeBook,
235
static INT FDKaacEnc_encodeSectionData(SECTION_DATA *
sectionData
,
246
switch(
sectionData
->blockType)
261
for(i=0;i<
sectionData
->noOfSections;i++
[
all
...]
dyn_bits.h
160
SECTION_DATA* const RESTRICT
sectionData
,
qc_main.cpp
[
all
...]
qc_data.h
171
SECTION_DATA
sectionData
;
/hardware/ti/omap3/dspbridge/inc/
getsection.h
128
*
sectionData
Buffer to contain the section initialized data
139
void *
sectionData
);
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
dyn_bits.h
80
SECTION_DATA *
sectionData
);
qc_data.h
86
SECTION_DATA
sectionData
;
/external/llvm/tools/obj2yaml/
coff2yaml.cpp
65
ArrayRef<uint8_t>
sectionData
;
66
Obj.getSectionContents(Sect,
sectionData
);
67
Sec.
SectionData
= object::yaml::BinaryRef(
sectionData
);
/libcore/dex/src/main/java/com/android/dex/
Dex.java
191
ByteBuffer
sectionData
= data.duplicate();
192
sectionData
.order(ByteOrder.LITTLE_ENDIAN); // necessary?
193
sectionData
.position(position);
194
sectionData
.limit(data.capacity());
195
return new Section("section",
sectionData
);
203
ByteBuffer
sectionData
= data.duplicate();
204
sectionData
.order(ByteOrder.LITTLE_ENDIAN); // necessary?
205
sectionData
.position(nextSectionStart);
206
sectionData
.limit(limit);
207
Section result = new Section(name,
sectionData
);
[
all
...]
Completed in 124 milliseconds