OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:typeOffset
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/opus/src/silk/
encode_indices.c
43
opus_int i, k,
typeOffset
;
58
typeOffset
= 2 * psIndices->signalType + psIndices->quantOffsetType;
59
silk_assert(
typeOffset
>= 0 &&
typeOffset
< 6 );
60
silk_assert( encode_LBRR == 0 ||
typeOffset
>= 2 );
61
if( encode_LBRR ||
typeOffset
>= 2 ) {
62
ec_enc_icdf( psRangeEnc,
typeOffset
- 2, silk_type_offset_VAD_iCDF, 8 );
64
ec_enc_icdf( psRangeEnc,
typeOffset
, silk_type_offset_no_VAD_iCDF, 8 );
/external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp
577
int64_t
typeOffset
= 0,
584
typeOffset
= readSLEB128(&actionPos);
590
"handleActionValue(...):
typeOffset
: <%lld>, "
592
typeOffset
,
595
assert((
typeOffset
>= 0) &&
598
// Note: A
typeOffset
== 0 implies that a cleanup llvm.eh.selector
600
if (
typeOffset
> 0) {
607
const uint8_t *EntryP = ClassInfo -
typeOffset
* EncSize;
[
all
...]
/frameworks/base/libs/androidfw/
ResourceTypes.cpp
255
const uint32_t
typeOffset
= map[type];
256
if (
typeOffset
== 0) {
260
if (
typeOffset
+ 1 > size) {
262
typeOffset
, (int)size);
265
const uint32_t entryCount = map[
typeOffset
];
266
const uint32_t entryOffset = map[
typeOffset
+ 1];
271
const uint32_t index =
typeOffset
+ 2 + entry - entryOffset;
[
all
...]
Completed in 98 milliseconds