Searched refs:tableIndex (Results 1 – 8 of 8) sorted by relevance
/external/chromium/chrome/browser/ui/cocoa/ |
D | tab_view_picker_table.mm | 13 - (NSInteger)tabIndexFromTableIndex:(NSInteger)tableIndex; 115 - (NSInteger)tabIndexFromTableIndex:(NSInteger)tableIndex { 117 return tableIndex; 118 DCHECK(tableIndex > 0); 119 return tableIndex - 1;
|
/external/webrtc/src/modules/audio_processing/ns/main/source/ |
D | nsx_core.c | 1200 WebRtc_Word16 tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac, intPart; in WebRtcNsx_SpeechNoiseProb() local 1260 tableIndex = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmp32no1, 14); in WebRtcNsx_SpeechNoiseProb() 1261 if ((tableIndex < 16) && (tableIndex >= 0)) in WebRtcNsx_SpeechNoiseProb() 1263 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb() 1264 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb() 1298 tableIndex = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 14); in WebRtcNsx_SpeechNoiseProb() 1299 if (tableIndex < 16) in WebRtcNsx_SpeechNoiseProb() 1301 tmp16no2 = kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb() 1302 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; in WebRtcNsx_SpeechNoiseProb() 1352 tableIndex = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 14); in WebRtcNsx_SpeechNoiseProb() [all …]
|
/external/webkit/Source/JavaScriptCore/bytecode/ |
D | CodeBlock.h | 447 …& immediateSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_immediateSwi… in immediateSwitchJumpTable() argument 451 …& characterSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_characterSwi… in characterSwitchJumpTable() argument 455 …able& stringSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_stringSwitc… in stringSwitchJumpTable() argument
|
D | CodeBlock.cpp | 1037 int tableIndex = (++it)->u.operand; in dump() local 1040 …printf("[%4d] switch_imm\t %d, %d(->%d), %s\n", location, tableIndex, defaultTarget, location + de… in dump() 1044 int tableIndex = (++it)->u.operand; in dump() local 1047 …printf("[%4d] switch_char\t %d, %d(->%d), %s\n", location, tableIndex, defaultTarget, location + d… in dump() 1051 int tableIndex = (++it)->u.operand; in dump() local 1054 …printf("[%4d] switch_string\t %d, %d(->%d), %s\n", location, tableIndex, defaultTarget, location +… in dump()
|
/external/webkit/Source/JavaScriptCore/jit/ |
D | JITOpcodes32_64.cpp | 1459 unsigned tableIndex = currentInstruction[1].u.operand; in emit_op_switch_imm() local 1464 SimpleJumpTable* jumpTable = &m_codeBlock->immediateSwitchJumpTable(tableIndex); in emit_op_switch_imm() 1470 stubCall.addArgument(Imm32(tableIndex)); in emit_op_switch_imm() 1477 unsigned tableIndex = currentInstruction[1].u.operand; in emit_op_switch_char() local 1482 SimpleJumpTable* jumpTable = &m_codeBlock->characterSwitchJumpTable(tableIndex); in emit_op_switch_char() 1488 stubCall.addArgument(Imm32(tableIndex)); in emit_op_switch_char() 1495 unsigned tableIndex = currentInstruction[1].u.operand; in emit_op_switch_string() local 1500 StringJumpTable* jumpTable = &m_codeBlock->stringSwitchJumpTable(tableIndex); in emit_op_switch_string() 1505 stubCall.addArgument(Imm32(tableIndex)); in emit_op_switch_string()
|
D | JITOpcodes.cpp | 1084 unsigned tableIndex = currentInstruction[1].u.operand; in emit_op_switch_imm() local 1089 SimpleJumpTable* jumpTable = &m_codeBlock->immediateSwitchJumpTable(tableIndex); in emit_op_switch_imm() 1095 stubCall.addArgument(Imm32(tableIndex)); in emit_op_switch_imm() 1102 unsigned tableIndex = currentInstruction[1].u.operand; in emit_op_switch_char() local 1107 SimpleJumpTable* jumpTable = &m_codeBlock->characterSwitchJumpTable(tableIndex); in emit_op_switch_char() 1113 stubCall.addArgument(Imm32(tableIndex)); in emit_op_switch_char() 1120 unsigned tableIndex = currentInstruction[1].u.operand; in emit_op_switch_string() local 1125 StringJumpTable* jumpTable = &m_codeBlock->stringSwitchJumpTable(tableIndex); in emit_op_switch_string() 1130 stubCall.addArgument(Imm32(tableIndex)); in emit_op_switch_string()
|
D | JITStubs.cpp | 3431 unsigned tableIndex = stackFrame.args[1].int32(); in DEFINE_STUB_FUNCTION() local 3436 …return codeBlock->immediateSwitchJumpTable(tableIndex).ctiForValue(scrutinee.asInt32()).executable… in DEFINE_STUB_FUNCTION() 3441 … return codeBlock->immediateSwitchJumpTable(tableIndex).ctiForValue(intValue).executableAddress(); in DEFINE_STUB_FUNCTION() 3443 return codeBlock->immediateSwitchJumpTable(tableIndex).ctiDefault.executableAddress(); in DEFINE_STUB_FUNCTION() 3452 unsigned tableIndex = stackFrame.args[1].int32(); in DEFINE_STUB_FUNCTION() local 3456 void* result = codeBlock->characterSwitchJumpTable(tableIndex).ctiDefault.executableAddress(); in DEFINE_STUB_FUNCTION() 3461 …result = codeBlock->characterSwitchJumpTable(tableIndex).ctiForValue(value->characters()[0]).execu… in DEFINE_STUB_FUNCTION() 3473 unsigned tableIndex = stackFrame.args[1].int32(); in DEFINE_STUB_FUNCTION() local 3477 void* result = codeBlock->stringSwitchJumpTable(tableIndex).ctiDefault.executableAddress(); in DEFINE_STUB_FUNCTION() 3481 … result = codeBlock->stringSwitchJumpTable(tableIndex).ctiForValue(value).executableAddress(); in DEFINE_STUB_FUNCTION()
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 3709 int tableIndex = vPC[1].u.operand; in privateExecute() local 3713 …vPC += codeBlock->immediateSwitchJumpTable(tableIndex).offsetForValue(scrutinee.asInt32(), default… in privateExecute() 3718 … vPC += codeBlock->immediateSwitchJumpTable(tableIndex).offsetForValue(intValue, defaultOffset); in privateExecute() 3733 int tableIndex = vPC[1].u.operand; in privateExecute() local 3743 …vPC += codeBlock->characterSwitchJumpTable(tableIndex).offsetForValue(value->characters()[0], defa… in privateExecute() 3756 int tableIndex = vPC[1].u.operand; in privateExecute() local 3762 …vPC += codeBlock->stringSwitchJumpTable(tableIndex).offsetForValue(asString(scrutinee)->value(call… in privateExecute()
|