Home
last modified time | relevance | path

Searched refs:typeOffset (Results 1 – 4 of 4) sorted by relevance

/external/libopus/silk/
Dencode_indices.c43 opus_int i, k, typeOffset; in silk_encode_indices() local
58 typeOffset = 2 * psIndices->signalType + psIndices->quantOffsetType; in silk_encode_indices()
59 silk_assert( typeOffset >= 0 && typeOffset < 6 ); in silk_encode_indices()
60 silk_assert( encode_LBRR == 0 || typeOffset >= 2 ); in silk_encode_indices()
61 if( encode_LBRR || typeOffset >= 2 ) { in silk_encode_indices()
62 ec_enc_icdf( psRangeEnc, typeOffset - 2, silk_type_offset_VAD_iCDF, 8 ); in silk_encode_indices()
64 ec_enc_icdf( psRangeEnc, typeOffset, silk_type_offset_no_VAD_iCDF, 8 ); in silk_encode_indices()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedDexFile.java232 int typeOffset = getTypeIdItemOffset(typeIndex);
233 int stringIndex = readSmallUint(typeOffset);
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp579 int64_t typeOffset = 0, in handleActionValue() local
586 typeOffset = readSLEB128(&actionPos); in handleActionValue()
594 typeOffset, in handleActionValue()
597 assert((typeOffset >= 0) && in handleActionValue()
602 if (typeOffset > 0) { in handleActionValue()
609 const uint8_t *EntryP = ClassInfo - typeOffset * EncSize; in handleActionValue()
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
DExceptionDemo.cpp559 int64_t typeOffset = 0, in handleActionValue() local
566 typeOffset = readSLEB128(&actionPos); in handleActionValue()
574 typeOffset, in handleActionValue()
577 assert((typeOffset >= 0) && in handleActionValue()
582 if ((typeOffset > 0) && in handleActionValue()
583 (type == (classInfo[-typeOffset])->type)) { in handleActionValue()