HomeSort by relevance Sort by last modified time
    Searched refs:tableIndex (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
nsx_core_c.c 35 int16_t tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac, intPart;
99 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_W32(tmp32no1, 14);
100 if ((tableIndex < 16) && (tableIndex >= 0)) {
101 tmp16no2 = kIndicatorTable[tableIndex];
102 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex];
131 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 14);
132 if (tableIndex < 16) {
133 tmp16no2 = kIndicatorTable[tableIndex];
    [all...]
nsx_core_mips.c 34 int16_t tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac;
133 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_W32(tmp32no1, 14);
134 if ((tableIndex < 16) && (tableIndex >= 0)) {
135 tmp16no2 = kIndicatorTable[tableIndex];
136 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex];
165 tableIndex = (int16_t)WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 14);
166 if (tableIndex < 16) {
167 tmp16no2 = kIndicatorTable[tableIndex];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMException.cpp 87 size_t tableIndex = ec - IndexSizeError;
89 return tableIndex < tableSize ? &coreExceptions[tableIndex] : 0;
  /frameworks/base/tools/aapt/
printapk.cpp 104 for (size_t tableIndex=0; tableIndex<tableCount; tableIndex++) {
105 const ResStringPool* strings = res.getTableStringBlock(tableIndex);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
trie_map.cpp 189 bool TrieMap::freeTable(const int tableIndex, const int entryCount) {
190 if (!writeField0(readEmptyTableLink(entryCount), tableIndex)) {
193 return writeEmptyTableLink(tableIndex, entryCount);
201 const int tableIndex = readEmptyTableLink(entryCount);
202 if (tableIndex > 0) {
203 if (!writeEmptyTableLink(readField0(tableIndex), entryCount)) {
207 return tableIndex;
359 const int tableIndex, const uint32_t bitmap, const int bitmapEntryIndex, const int label) {
369 if (!copyEntry(tableIndex + i, newTableIndex + i + (i >= newEntryIndexInTable ? 1 : 0))) {
382 return freeTable(tableIndex, entryCount)
    [all...]
trie_map.h 57 TableIterationState(const int tableSize, const int tableIndex)
58 : mTableSize(tableSize), mTableIndex(tableIndex), mCurrentIndex(0) {}
289 bool freeTable(const int tableIndex, const int entryCount);
301 const int tableIndex, const uint32_t bitmap, const int bitmapEntryIndex,
351 AK_FORCE_INLINE bool writeEmptyTableLink(const int tableIndex, const int entryCount) {
352 return mBuffer.writeUint(tableIndex, FIELD1_SIZE, (entryCount - 1) * FIELD1_SIZE);
  /cts/suite/audio_quality/lib/include/task/
ModelBuilder.h 52 virtual TaskGeneric* parseGeneric(const TiXmlElement& elem, int tableIndex);
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTUtils.cpp 45 int tableIndex;
48 for (tableIndex = 0; tableIndex < numTables; ++tableIndex) {
56 if (tableIndex == numTables) {
114 SkSFNTHeader::TableDirectoryEntry* nameTableEntry = reinterpret_cast<SkSFNTHeader::TableDirectoryEntry*>(data + sizeof(SkSFNTHeader)) + tableIndex;
  /external/skia/src/sfnt/
SkOTUtils.cpp 45 int tableIndex;
48 for (tableIndex = 0; tableIndex < numTables; ++tableIndex) {
56 if (tableIndex == numTables) {
114 SkSFNTHeader::TableDirectoryEntry* nameTableEntry = reinterpret_cast<SkSFNTHeader::TableDirectoryEntry*>(data + sizeof(SkSFNTHeader)) + tableIndex;
  /external/aac/libAACdec/src/
block.h 246 UINT tableIndex = (x & 0x0FFF) >> 4 ;
251 UINT r0=(LONG)InverseQuantTable [tableIndex+0];
252 UINT r1=(LONG)InverseQuantTable [tableIndex+1];
block.cpp 408 UINT tableIndex = x >> 24;
411 UINT r0=(UINT)(LONG)InverseQuantTabler[tableIndex+0];
412 UINT r1=(UINT)(LONG)InverseQuantTabler[tableIndex+1];
  /art/runtime/
indirect_reference_table.h 364 IndirectRef ToIndirectRef(uint32_t tableIndex) const {
365 DCHECK_LT(tableIndex, 65536U);
366 uint32_t serialChunk = table_[tableIndex].GetSerial();
367 uintptr_t uref = (serialChunk << 20) | (tableIndex << 2) | kind_;
  /cts/suite/audio_quality/lib/src/task/
ModelBuilder.cpp 102 TaskGeneric* ModelBuilder::parseGeneric(const TiXmlElement& self, int tableIndex)
104 TaskGeneric::TaskType typeSelf(mParsingTable[tableIndex].type);
105 int Nchildren = mParsingTable[tableIndex].Nchildren;
115 const ModelBuilder::ChildInfo* childTable = mParsingTable[tableIndex].allowedChildren;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmSmsTest.java 419 int[] tableIndex = sExtendedTableIndexes[language];
420 int numSeptets = tableIndex.length * 2; // two septets per extended char
425 for (int v : tableIndex) {
470 int[] tableIndex = sExtendedTableIndexes[language];
471 int numChars = 128 - tableIndex.length;
484 if (tableOffset < tableIndex.length && tableIndex[tableOffset] == c) {
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableMap.java 64 int tableIndex = Hashing.smear(keyHashCode) & mask;
65 @Nullable LinkedEntry<K, V> existing = table[tableIndex];
69 table[tableIndex] = linkedEntry;
  /frameworks/av/media/libstagefright/
AACWriter.cpp 213 static bool getSampleRateTableIndex(int sampleRate, uint8_t* tableIndex) {
221 *tableIndex = 0;
226 *tableIndex = index;
  /frameworks/av/media/libstagefright/rtsp/
AMPEG4ElementaryAssembler.cpp 89 static bool GetSampleRateIndex(int32_t sampleRate, size_t *tableIndex) {
97 *tableIndex = 0;
100 *tableIndex = index;
  /external/webrtc/src/modules/audio_processing/ns/
nsx_core.c     [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_mac.cpp     [all...]
SkFontHost_FreeType.cpp     [all...]
  /external/skia/src/ports/
SkFontHost_mac.cpp     [all...]
SkFontHost_FreeType.cpp     [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
yjp-controller-api-redist.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.osgi/3.9.1.v20130814-1242/
org.eclipse.osgi-3.9.1.v20130814-1242.jar 

Completed in 644 milliseconds

1 2 3