Home
last modified time | relevance | path

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

/external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
Dnsx_core_c.c33 int16_t tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac, intPart; in WebRtcNsx_SpeechNoiseProb() local
98 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_W32(tmp32no1, 14); in WebRtcNsx_SpeechNoiseProb()
99 if ((tableIndex < 16) && (tableIndex >= 0)) { in WebRtcNsx_SpeechNoiseProb()
100 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
101 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
134 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 14); in WebRtcNsx_SpeechNoiseProb()
135 if (tableIndex < 16) { in WebRtcNsx_SpeechNoiseProb()
136 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
137 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
184 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 14); in WebRtcNsx_SpeechNoiseProb()
[all …]
Dnsx_core_mips.c32 int16_t tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac; in WebRtcNsx_SpeechNoiseProb() local
130 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_W32(tmp32no1, 14); in WebRtcNsx_SpeechNoiseProb()
131 if ((tableIndex < 16) && (tableIndex >= 0)) { in WebRtcNsx_SpeechNoiseProb()
132 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
133 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
166 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_U32(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()
216 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 14); in WebRtcNsx_SpeechNoiseProb()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDOMException.cpp87 size_t tableIndex = ec - IndexSizeError; in getErrorEntry() local
89 return tableIndex < tableSize ? &coreExceptions[tableIndex] : 0; in getErrorEntry()
/external/chromium_org/third_party/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/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/webrtc/src/modules/audio_processing/ns/
Dnsx_core.c1301 WebRtc_Word16 tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac, intPart; in WebRtcNsx_SpeechNoiseProb() local
1361 tableIndex = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmp32no1, 14); in WebRtcNsx_SpeechNoiseProb()
1362 if ((tableIndex < 16) && (tableIndex >= 0)) { in WebRtcNsx_SpeechNoiseProb()
1363 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
1364 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
1394 tableIndex = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 14); in WebRtcNsx_SpeechNoiseProb()
1395 if (tableIndex < 16) { in WebRtcNsx_SpeechNoiseProb()
1396 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
1397 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb()
1441 tableIndex = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 14); in WebRtcNsx_SpeechNoiseProb()
[all …]
/external/guava/guava/src/com/google/common/collect/
DRegularImmutableMap.java64 int tableIndex = Hashing.smear(keyHashCode) & mask; in RegularImmutableMap() local
65 @Nullable LinkedEntry<K, V> existing = table[tableIndex]; in RegularImmutableMap()
69 table[tableIndex] = linkedEntry; in RegularImmutableMap()
/external/chromium_org/third_party/skia/src/ports/
DSkFontHost_mac.cpp1688 for (int tableIndex = 0; tableIndex < numTables; ++tableIndex) { in onOpenStream() local
1689 size_t tableSize = this->getTableSize(tableTags[tableIndex]); in onOpenStream()
1722 for (int tableIndex = 0; tableIndex < numTables; ++tableIndex) { in onOpenStream() local
1723 size_t tableSize = tableSizes[tableIndex]; in onOpenStream()
1724 this->getTableData(tableTags[tableIndex], 0, tableSize, dataPtr); in onOpenStream()
1725 entry->tag = SkEndian_SwapBE32(tableTags[tableIndex]); in onOpenStream()
DSkFontHost_FreeType.cpp1658 for (FT_ULong tableIndex = 0; tableIndex < tableCount; ++tableIndex) { in onGetTableTags() local
1661 error = FT_Sfnt_Table_Info(face, tableIndex, &tableTag, &tablelength); in onGetTableTags()
1665 tags[tableIndex] = static_cast<SkFontTableTag>(tableTag); in onGetTableTags()
/external/skia/src/ports/
DSkFontHost_mac.cpp1688 for (int tableIndex = 0; tableIndex < numTables; ++tableIndex) { in onOpenStream() local
1689 size_t tableSize = this->getTableSize(tableTags[tableIndex]); in onOpenStream()
1722 for (int tableIndex = 0; tableIndex < numTables; ++tableIndex) { in onOpenStream() local
1723 size_t tableSize = tableSizes[tableIndex]; in onOpenStream()
1724 this->getTableData(tableTags[tableIndex], 0, tableSize, dataPtr); in onOpenStream()
1725 entry->tag = SkEndian_SwapBE32(tableTags[tableIndex]); in onOpenStream()
DSkFontHost_FreeType.cpp1676 for (FT_ULong tableIndex = 0; tableIndex < tableCount; ++tableIndex) { in onGetTableTags() local
1679 error = FT_Sfnt_Table_Info(face, tableIndex, &tableTag, &tablelength); in onGetTableTags()
1683 tags[tableIndex] = static_cast<SkFontTableTag>(tableTag); in onGetTableTags()