Home
last modified time | relevance | path

Searched refs:tableIndex (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/ns/
Dnsx_core_c.c35 int16_t tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac, intPart; in WebRtcNsx_SpeechNoiseProb() local
99 tableIndex = (int16_t)(tmp32no1 >> 14); in WebRtcNsx_SpeechNoiseProb()
100 if ((tableIndex < 16) && (tableIndex >= 0)) { in WebRtcNsx_SpeechNoiseProb()
101 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
102 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
131 tableIndex = (int16_t)(tmpU32no1 >> 14); in WebRtcNsx_SpeechNoiseProb()
132 if (tableIndex < 16) { in WebRtcNsx_SpeechNoiseProb()
133 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
134 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
178 tableIndex = (int16_t)(tmpU32no1 >> 14); in WebRtcNsx_SpeechNoiseProb()
[all …]
Dnsx_core_mips.c34 int16_t tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac; in WebRtcNsx_SpeechNoiseProb() local
134 tableIndex = (int16_t)(tmp32no1 >> 14); in WebRtcNsx_SpeechNoiseProb()
135 if ((tableIndex < 16) && (tableIndex >= 0)) { in WebRtcNsx_SpeechNoiseProb()
136 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
137 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
166 tableIndex = (int16_t)(tmpU32no1 >> 14); in WebRtcNsx_SpeechNoiseProb()
167 if (tableIndex < 16) { in WebRtcNsx_SpeechNoiseProb()
168 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
169 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
213 tableIndex = (int16_t)(tmpU32no1 >> 14); in WebRtcNsx_SpeechNoiseProb()
[all …]
/external/guava/guava/src/com/google/common/collect/
DRegularImmutableMap.java62 int tableIndex = Hashing.smear(key.hashCode()) & mask; in RegularImmutableMap() local
63 @Nullable ImmutableMapEntry<K, V> existing = table[tableIndex]; in RegularImmutableMap()
68 table[tableIndex] = newEntry; in RegularImmutableMap()
89 int tableIndex = Hashing.smear(key.hashCode()) & mask; in RegularImmutableMap() local
90 @Nullable ImmutableMapEntry<K, V> existing = table[tableIndex]; in RegularImmutableMap()
95 table[tableIndex] = newEntry; in RegularImmutableMap()
/external/skia/src/sfnt/
DSkOTUtils.cpp45 int tableIndex; in RenameFont() local
48 for (tableIndex = 0; tableIndex < numTables; ++tableIndex) { in RenameFont()
56 if (tableIndex == numTables) { in RenameFont()
114 …y = reinterpret_cast<SkSFNTHeader::TableDirectoryEntry*>(data + sizeof(SkSFNTHeader)) + tableIndex; in RenameFont()
/external/aac/libAACdec/src/
Dblock.h246 UINT tableIndex = (x & 0x0FFF) >> 4 ; in EvaluatePower43() local
251 UINT r0=(LONG)InverseQuantTable [tableIndex+0]; in EvaluatePower43()
252 UINT r1=(LONG)InverseQuantTable [tableIndex+1]; in EvaluatePower43()
Dblock.cpp408 UINT tableIndex = x >> 24; in InverseQuantizeBand() local
411 UINT r0=(UINT)(LONG)InverseQuantTabler[tableIndex+0]; in InverseQuantizeBand()
412 UINT r1=(UINT)(LONG)InverseQuantTabler[tableIndex+1]; in InverseQuantizeBand()
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/testclient/
Dfusiontables_v1_messages.py50 tableIndex = _messages.IntegerField(2, variant=_messages.Variant.INT32) variable in Column.BaseColumnValue
/external/skia/src/ports/
DSkFontHost_mac.cpp1710 for (int tableIndex = 0; tableIndex < numTables; ++tableIndex) { in onOpenStream() local
1711 size_t tableSize = this->getTableSize(tableTags[tableIndex]); in onOpenStream()
1744 for (int tableIndex = 0; tableIndex < numTables; ++tableIndex) { in onOpenStream() local
1745 size_t tableSize = tableSizes[tableIndex]; in onOpenStream()
1746 this->getTableData(tableTags[tableIndex], 0, tableSize, dataPtr); in onOpenStream()
1747 entry->tag = SkEndian_SwapBE32(tableTags[tableIndex]); in onOpenStream()
DSkFontHost_FreeType.cpp1552 for (FT_ULong tableIndex = 0; tableIndex < tableCount; ++tableIndex) { in onGetTableTags() local
1555 error = FT_Sfnt_Table_Info(face, tableIndex, &tableTag, &tablelength); in onGetTableTags()
1559 tags[tableIndex] = static_cast<SkFontTableTag>(tableTag); in onGetTableTags()